Skip to content

Commit

Permalink
f Default to true
Browse files Browse the repository at this point in the history
  • Loading branch information
tnull committed Nov 2, 2022
1 parent 40a170e commit 2ce2b15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lightning/src/ln/channel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6688,7 +6688,7 @@ impl<'a, Signer: Sign, K: Deref> ReadableArgs<(&'a K, u32)> for Channel<Signer>
// Later in the ChannelManager deserialization phase we scan for channels and assign scid aliases if its missing
outbound_scid_alias: outbound_scid_alias.unwrap_or(0),

channel_ready_event_emitted: channel_ready_event_emitted.unwrap_or(false),
channel_ready_event_emitted: channel_ready_event_emitted.unwrap_or(true),

#[cfg(any(test, fuzzing))]
historical_inbound_htlc_fulfills,
Expand Down

0 comments on commit 2ce2b15

Please sign in to comment.