schemas: allow *CLOSED* state in channel_state_changed notification.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
Rusty Russell
2025-11-17 19:47:00 +10:30
parent 73147dafe2
commit 64563c51f4
2 changed files with 8 additions and 4 deletions

View File

@@ -37731,10 +37731,12 @@
"DUALOPEND_AWAITING_LOCKIN",
"CHANNELD_AWAITING_SPLICE",
"DUALOPEND_OPEN_COMMITTED",
"DUALOPEND_OPEN_COMMIT_READY"
"DUALOPEND_OPEN_COMMIT_READY",
"CLOSED"
],
"description": [
"The channel state, in particular \"CHANNELD_NORMAL\" and \"CHANNELD_AWAITING_SPLICE\" mean the channel can be used normally"
"The channel state, in particular \"CHANNELD_NORMAL\" and \"CHANNELD_AWAITING_SPLICE\" mean the channel can be used normally",
"Note: *CLOSED* state was only added in v25.12."
],
"added": "pre-v0.10.1"
},

View File

@@ -87,10 +87,12 @@
"DUALOPEND_AWAITING_LOCKIN",
"CHANNELD_AWAITING_SPLICE",
"DUALOPEND_OPEN_COMMITTED",
"DUALOPEND_OPEN_COMMIT_READY"
"DUALOPEND_OPEN_COMMIT_READY",
"CLOSED"
],
"description": [
"The channel state, in particular \"CHANNELD_NORMAL\" and \"CHANNELD_AWAITING_SPLICE\" mean the channel can be used normally"
"The channel state, in particular \"CHANNELD_NORMAL\" and \"CHANNELD_AWAITING_SPLICE\" mean the channel can be used normally",
"Note: *CLOSED* state was only added in v25.12."
],
"added": "pre-v0.10.1"
},