mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-19 15:14:23 +01:00
splicing: Add channel state AWAITING_SPLICE
Update gossip routiens and various other hecks on the channel state to consider AWAITING_SPLICE to be routable and treated similar to CHANNELD_NORMAL. Small updates to psbt interface Changelog-None
This commit is contained in:
committed by
Rusty Russell
parent
108658a539
commit
50fe819f47
@@ -3291,7 +3291,8 @@ static struct command_result *direct_pay_listpeerchannels(struct command *cmd,
|
||||
if (!chan->connected)
|
||||
continue;
|
||||
|
||||
if (!streq(chan->state, "CHANNELD_NORMAL"))
|
||||
if (!streq(chan->state, "CHANNELD_NORMAL")
|
||||
&& !streq(chan->state, "CHANNELD_AWAITING_SPLICE"))
|
||||
continue;
|
||||
|
||||
/* Must have either a local alias for zeroconf
|
||||
|
||||
Reference in New Issue
Block a user