@@ -1996,7 +1996,7 @@ impl<SP: Deref> PendingV2Channel<SP> where SP::Target: SignerProvider {
1996
1996
)));
1997
1997
};
1998
1998
self.context.channel_transaction_parameters.funding_outpoint = Some(outpoint);
1999
- self.context.holder_signer.as_mut().provide_channel_parameters (&self.context.channel_transaction_parameters);
1999
+ self.context.holder_signer.as_mut().provide_funding_outpoint (&self.context.channel_transaction_parameters);
2000
2000
2001
2001
self.context.assert_no_commitment_advancement(transaction_number, "initial commitment_signed");
2002
2002
let commitment_signed = self.context.get_initial_commitment_signed(logger);
@@ -2903,6 +2903,7 @@ impl<SP: Deref> ChannelContext<SP> where SP::Target: SignerProvider {
2903
2903
selected_contest_delay: common_fields.to_self_delay,
2904
2904
pubkeys: counterparty_pubkeys,
2905
2905
});
2906
+ self.holder_signer.as_mut().provide_counterparty_parameters(&self.channel_transaction_parameters);
2906
2907
2907
2908
self.counterparty_cur_commitment_point = Some(common_fields.first_per_commitment_point);
2908
2909
self.counterparty_shutdown_scriptpubkey = counterparty_shutdown_scriptpubkey;
@@ -8457,7 +8458,7 @@ impl<SP: Deref> OutboundV1Channel<SP> where SP::Target: SignerProvider {
8457
8458
self.context.assert_no_commitment_advancement(self.unfunded_context.transaction_number(), "funding_created");
8458
8459
8459
8460
self.context.channel_transaction_parameters.funding_outpoint = Some(funding_txo);
8460
- self.context.holder_signer.as_mut().provide_channel_parameters (&self.context.channel_transaction_parameters);
8461
+ self.context.holder_signer.as_mut().provide_funding_outpoint (&self.context.channel_transaction_parameters);
8461
8462
8462
8463
// Now that we're past error-generating stuff, update our local state:
8463
8464
0 commit comments