Skip to content

Commit a4ab946

Browse files
committed
fixup! channeld: Code to implement splicing
CI fixes
1 parent b520e49 commit a4ab946

File tree

3 files changed

+31
-1
lines changed

3 files changed

+31
-1
lines changed

doc/lightning-listconfigs.7.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,9 @@ On success, an object is returned, containing:
120120
- **experimental-dual-fund** (object, optional):
121121
- **set** (boolean): `true` if set in config or cmdline
122122
- **source** (string): source of configuration setting
123+
- **experimental-splicing** (object, optional) *(added v23.08)*:
124+
- **set** (boolean): `true` if set in config or cmdline
125+
- **source** (string): source of configuration setting
123126
- **experimental-onion-messages** (object, optional):
124127
- **set** (boolean): `true` if set in config or cmdline
125128
- **source** (string): source of configuration setting
@@ -467,4 +470,4 @@ RESOURCES
467470

468471
Main web site: <https://github.com/ElementsProject/lightning>
469472

470-
[comment]: # ( SHA256STAMP:a40882cad0d889aa736a2932250102be43ae7e62b3d2429b26e0961e4c315f7b)
473+
[comment]: # ( SHA256STAMP:ea88648dcac46e38b2f7eba7965b86c88fb9dcf01ffa740fe64ee142e88c2dcd)

doc/schemas/listconfigs.schema.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -402,6 +402,25 @@
402402
}
403403
}
404404
},
405+
"experimental-splicing": {
406+
"added": "v23.08",
407+
"type": "object",
408+
"additionalProperties": false,
409+
"required": [
410+
"set",
411+
"source"
412+
],
413+
"properties": {
414+
"set": {
415+
"type": "boolean",
416+
"description": "`true` if set in config or cmdline"
417+
},
418+
"source": {
419+
"type": "string",
420+
"description": "source of configuration setting"
421+
}
422+
}
423+
},
405424
"experimental-onion-messages": {
406425
"type": "object",
407426
"additionalProperties": false,
@@ -1449,6 +1468,11 @@
14491468
"type": "boolean",
14501469
"description": "`experimental-dual-fund` field from config or cmdline, or default"
14511470
},
1471+
"experimental-splicing": {
1472+
"deprecated": "v23.08",
1473+
"type": "boolean",
1474+
"description": "`experimental-splicing` field from config or cmdline, or default"
1475+
},
14521476
"experimental-onion-messages": {
14531477
"deprecated": "v23.08",
14541478
"type": "boolean",

tests/test_plugin.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3942,6 +3942,8 @@ def test_sql(node_factory, bitcoind):
39423942
'type': 'string'},
39433943
{'name': 'total_funding_msat',
39443944
'type': 'msat'},
3945+
{'name': 'splice_amount',
3946+
'type': 's64'},
39453947
{'name': 'our_funding_msat',
39463948
'type': 'msat'},
39473949
{'name': 'scratch_txid',
@@ -4079,6 +4081,7 @@ def test_sql(node_factory, bitcoind):
40794081
'u16': 'INTEGER',
40804082
'u32': 'INTEGER',
40814083
'u64': 'INTEGER',
4084+
's64': 'INTEGER',
40824085
'msat': 'INTEGER',
40834086
'hex': 'BLOB',
40844087
'hash': 'BLOB',

0 commit comments

Comments
 (0)