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 08a303f commit 1c65e18Copy full SHA for 1c65e18
lightning/src/ln/channel.rs
@@ -2842,7 +2842,10 @@ where
2842
funding_tx_locktime: self.funding_negotiation_context.funding_tx_locktime,
2843
inputs_to_contribute: funding_inputs,
2844
shared_funding_input: None,
2845
- shared_funding_output: SharedOwnedOutput::new(shared_funding_output, self.funding_negotiation_context.our_funding_satoshis),
+ shared_funding_output: SharedOwnedOutput::new(
2846
+ shared_funding_output,
2847
+ self.funding_negotiation_context.our_funding_satoshis,
2848
+ ),
2849
outputs_to_contribute: funding_outputs,
2850
};
2851
let mut tx_constructor = InteractiveTxConstructor::new(constructor_args)?;
0 commit comments