Skip to content

Commit 2ce2b15

Browse files
committed
f Default to true
1 parent 40a170e commit 2ce2b15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lightning/src/ln/channel.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6688,7 +6688,7 @@ impl<'a, Signer: Sign, K: Deref> ReadableArgs<(&'a K, u32)> for Channel<Signer>
66886688
// Later in the ChannelManager deserialization phase we scan for channels and assign scid aliases if its missing
66896689
outbound_scid_alias: outbound_scid_alias.unwrap_or(0),
66906690

6691-
channel_ready_event_emitted: channel_ready_event_emitted.unwrap_or(false),
6691+
channel_ready_event_emitted: channel_ready_event_emitted.unwrap_or(true),
66926692

66936693
#[cfg(any(test, fuzzing))]
66946694
historical_inbound_htlc_fulfills,

0 commit comments

Comments
 (0)