We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d47d674 commit 4f58150Copy full SHA for 4f58150
lightning/src/ln/channel.rs
@@ -7460,6 +7460,10 @@ impl<SP: Deref> OutboundV1Channel<SP> where SP::Target: SignerProvider {
7460
if !self.context.is_outbound() {
7461
panic!("Tried to create outbound funding_created message on an inbound channel!");
7462
}
7463
+ // REMOVE ME - TRIGGER MUTANTS
7464
+ if is_batch_funding {
7465
+ println!("trigger mutants");
7466
+ };
7467
if !matches!(
7468
self.context.channel_state, ChannelState::NegotiatingFunding(flags)
7469
if flags == (NegotiatingFundingFlags::OUR_INIT_SENT | NegotiatingFundingFlags::THEIR_INIT_SENT)
0 commit comments