-
Notifications
You must be signed in to change notification settings - Fork 418
Introduce FundingTransactionReadyForSignatures
event
#3889
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1692,6 +1692,52 @@ pub enum Event { | |
/// [`ChannelManager::send_static_invoice`]: crate::ln::channelmanager::ChannelManager::send_static_invoice | ||
reply_path: Responder, | ||
}, | ||
/// Indicates that a channel funding transaction constructed interactively is ready to be | ||
/// signed. This event will only be triggered if at least one input was contributed. | ||
/// | ||
/// The transaction contains all inputs provided by both parties along with the channel's funding | ||
/// output and a change output if applicable. | ||
/// | ||
/// No part of the transaction should be changed before signing as the content of the transaction | ||
/// has already been negotiated with the counterparty. | ||
/// | ||
/// Each signature MUST use the `SIGHASH_ALL` flag to avoid invalidation of the initial commitment and | ||
/// hence possible loss of funds. | ||
/// | ||
/// After signing, call [`ChannelManager::funding_transaction_signed`] with the (partially) signed | ||
/// funding transaction. | ||
/// | ||
/// Generated in [`ChannelManager`] message handling. | ||
dunxen marked this conversation as resolved.
Show resolved
Hide resolved
|
||
/// | ||
/// # Failure Behavior and Persistence | ||
/// This event will eventually be replayed after failures-to-handle (i.e., the event handler | ||
/// returning `Err(ReplayEvent ())`), but will only be regenerated as needed after restarts. | ||
/// | ||
/// [`ChannelManager`]: crate::ln::channelmanager::ChannelManager | ||
/// [`ChannelManager::funding_transaction_signed`]: crate::ln::channelmanager::ChannelManager::funding_transaction_signed | ||
FundingTransactionReadyForSigning { | ||
/// The channel_id of the channel which you'll need to pass back into | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add ticks to |
||
/// [`ChannelManager::funding_transaction_signed`]. | ||
/// | ||
/// [`ChannelManager::funding_transaction_signed`]: crate::ln::channelmanager::ChannelManager::funding_transaction_signed | ||
channel_id: ChannelId, | ||
/// The counterparty's node_id, which you'll need to pass back into | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Likewise for |
||
/// [`ChannelManager::funding_transaction_signed`]. | ||
/// | ||
/// [`ChannelManager::funding_transaction_signed`]: crate::ln::channelmanager::ChannelManager::funding_transaction_signed | ||
counterparty_node_id: PublicKey, | ||
/// The `user_channel_id` value passed in for outbound channels, or for inbound channels if | ||
/// [`UserConfig::manually_accept_inbound_channels`] config flag is set to true. Otherwise | ||
/// `user_channel_id` will be randomized for inbound channels. | ||
/// | ||
/// [`UserConfig::manually_accept_inbound_channels`]: crate::util::config::UserConfig::manually_accept_inbound_channels | ||
user_channel_id: u128, | ||
/// The unsigned transaction to be signed and passed back to | ||
/// [`ChannelManager::funding_transaction_signed`]. | ||
/// | ||
/// [`ChannelManager::funding_transaction_signed`]: crate::ln::channelmanager::ChannelManager::funding_transaction_signed | ||
unsigned_transaction: Transaction, | ||
}, | ||
} | ||
|
||
impl Writeable for Event { | ||
|
@@ -2133,6 +2179,11 @@ impl Writeable for Event { | |
47u8.write(writer)?; | ||
// Never write StaticInvoiceRequested events as buffered onion messages aren't serialized. | ||
}, | ||
&Event::FundingTransactionReadyForSigning { .. } => { | ||
49u8.write(writer)?; | ||
// We never write out FundingTransactionReadyForSigning events as they will be regenerated when | ||
// necessary. | ||
wpaulino marked this conversation as resolved.
Show resolved
Hide resolved
|
||
}, | ||
// Note that, going forward, all new events must only write data inside of | ||
// `write_tlv_fields`. Versions 0.0.101+ will ignore odd-numbered events that write | ||
// data via `write_tlv_fields`. | ||
|
@@ -2715,6 +2766,8 @@ impl MaybeReadable for Event { | |
// Note that we do not write a length-prefixed TLV for StaticInvoiceRequested events. | ||
#[cfg(async_payments)] | ||
47u8 => Ok(None), | ||
// Note that we do not write a length-prefixed TLV for FundingTransactionReadyForSigning events. | ||
49u8 => Ok(None), | ||
// Versions prior to 0.0.100 did not ignore odd types, instead returning InvalidValue. | ||
// Version 0.0.100 failed to properly ignore odd types, possibly resulting in corrupt | ||
// reads. | ||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -14,7 +14,7 @@ use bitcoin::constants::ChainHash; | |||||
use bitcoin::script::{Builder, Script, ScriptBuf, WScriptHash}; | ||||||
use bitcoin::sighash::EcdsaSighashType; | ||||||
use bitcoin::transaction::{Transaction, TxIn, TxOut}; | ||||||
use bitcoin::Weight; | ||||||
use bitcoin::{Weight, Witness}; | ||||||
|
||||||
use bitcoin::hash_types::{BlockHash, Txid}; | ||||||
use bitcoin::hashes::sha256::Hash as Sha256; | ||||||
|
@@ -36,7 +36,7 @@ use crate::chain::channelmonitor::{ | |||||
use crate::chain::transaction::{OutPoint, TransactionData}; | ||||||
use crate::chain::BestBlock; | ||||||
use crate::events::bump_transaction::BASE_INPUT_WEIGHT; | ||||||
use crate::events::{ClosureReason, Event}; | ||||||
use crate::events::ClosureReason; | ||||||
use crate::ln::chan_utils; | ||||||
#[cfg(splicing)] | ||||||
use crate::ln::chan_utils::FUNDING_TRANSACTION_WITNESS_WEIGHT; | ||||||
|
@@ -1761,7 +1761,7 @@ where | |||||
|
||||||
pub fn funding_tx_constructed<L: Deref>( | ||||||
&mut self, signing_session: InteractiveTxSigningSession, logger: &L, | ||||||
) -> Result<(msgs::CommitmentSigned, Option<Event>), ChannelError> | ||||||
) -> Result<msgs::CommitmentSigned, ChannelError> | ||||||
where | ||||||
L::Target: Logger, | ||||||
{ | ||||||
|
@@ -2310,7 +2310,6 @@ where | |||||
monitor_pending_failures: Vec<(HTLCSource, PaymentHash, HTLCFailReason)>, | ||||||
monitor_pending_finalized_fulfills: Vec<(HTLCSource, Option<AttributionData>)>, | ||||||
monitor_pending_update_adds: Vec<msgs::UpdateAddHTLC>, | ||||||
monitor_pending_tx_signatures: Option<msgs::TxSignatures>, | ||||||
|
||||||
/// If we went to send a revoke_and_ack but our signer was unable to give us a signature, | ||||||
/// we should retry at some point in the future when the signer indicates it may have a | ||||||
|
@@ -2910,12 +2909,11 @@ where | |||||
|
||||||
#[rustfmt::skip] | ||||||
pub fn funding_tx_constructed<L: Deref>( | ||||||
&mut self, mut signing_session: InteractiveTxSigningSession, logger: &L | ||||||
) -> Result<(msgs::CommitmentSigned, Option<Event>), ChannelError> | ||||||
&mut self, signing_session: InteractiveTxSigningSession, logger: &L | ||||||
) -> Result<msgs::CommitmentSigned, ChannelError> | ||||||
where | ||||||
L::Target: Logger | ||||||
{ | ||||||
let our_funding_satoshis = self.dual_funding_context.our_funding_satoshis; | ||||||
let transaction_number = self.unfunded_context.transaction_number(); | ||||||
|
||||||
let mut output_index = None; | ||||||
|
@@ -2949,42 +2947,6 @@ where | |||||
}, | ||||||
}; | ||||||
|
||||||
let funding_ready_for_sig_event = if signing_session.local_inputs_count() == 0 { | ||||||
debug_assert_eq!(our_funding_satoshis, 0); | ||||||
if signing_session.provide_holder_witnesses(self.context.channel_id, Vec::new()).is_err() { | ||||||
debug_assert!( | ||||||
false, | ||||||
"Zero inputs were provided & zero witnesses were provided, but a count mismatch was somehow found", | ||||||
); | ||||||
let msg = "V2 channel rejected due to sender error"; | ||||||
let reason = ClosureReason::ProcessingError { err: msg.to_owned() }; | ||||||
return Err(ChannelError::Close((msg.to_owned(), reason))); | ||||||
} | ||||||
None | ||||||
} else { | ||||||
// TODO(dual_funding): Send event for signing if we've contributed funds. | ||||||
// Inform the user that SIGHASH_ALL must be used for all signatures when contributing | ||||||
// inputs/signatures. | ||||||
// Also warn the user that we don't do anything to prevent the counterparty from | ||||||
// providing non-standard witnesses which will prevent the funding transaction from | ||||||
// confirming. This warning must appear in doc comments wherever the user is contributing | ||||||
// funds, whether they are initiator or acceptor. | ||||||
// | ||||||
// The following warning can be used when the APIs allowing contributing inputs become available: | ||||||
// <div class="warning"> | ||||||
// WARNING: LDK makes no attempt to prevent the counterparty from using non-standard inputs which | ||||||
// will prevent the funding transaction from being relayed on the bitcoin network and hence being | ||||||
// confirmed. | ||||||
// </div> | ||||||
debug_assert!( | ||||||
false, | ||||||
"We don't support users providing inputs but somehow we had more than zero inputs", | ||||||
); | ||||||
let msg = "V2 channel rejected due to sender error"; | ||||||
let reason = ClosureReason::ProcessingError { err: msg.to_owned() }; | ||||||
return Err(ChannelError::Close((msg.to_owned(), reason))); | ||||||
}; | ||||||
|
||||||
let mut channel_state = ChannelState::FundingNegotiated(FundingNegotiatedFlags::new()); | ||||||
channel_state.set_interactive_signing(); | ||||||
self.context.channel_state = channel_state; | ||||||
|
@@ -2993,7 +2955,7 @@ where | |||||
self.interactive_tx_constructor.take(); | ||||||
self.interactive_tx_signing_session = Some(signing_session); | ||||||
|
||||||
Ok((commitment_signed, funding_ready_for_sig_event)) | ||||||
Ok(commitment_signed) | ||||||
} | ||||||
} | ||||||
|
||||||
|
@@ -3275,7 +3237,6 @@ where | |||||
monitor_pending_failures: Vec::new(), | ||||||
monitor_pending_finalized_fulfills: Vec::new(), | ||||||
monitor_pending_update_adds: Vec::new(), | ||||||
monitor_pending_tx_signatures: None, | ||||||
|
||||||
signer_pending_revoke_and_ack: false, | ||||||
signer_pending_commitment_update: false, | ||||||
|
@@ -3514,7 +3475,6 @@ where | |||||
monitor_pending_failures: Vec::new(), | ||||||
monitor_pending_finalized_fulfills: Vec::new(), | ||||||
monitor_pending_update_adds: Vec::new(), | ||||||
monitor_pending_tx_signatures: None, | ||||||
|
||||||
signer_pending_revoke_and_ack: false, | ||||||
signer_pending_commitment_update: false, | ||||||
|
@@ -6767,13 +6727,7 @@ where | |||||
|
||||||
self.monitor_updating_paused(false, false, false, Vec::new(), Vec::new(), Vec::new()); | ||||||
|
||||||
if let Some(tx_signatures) = self.interactive_tx_signing_session.as_mut().and_then( | ||||||
|session| session.received_commitment_signed() | ||||||
) { | ||||||
// We're up first for submitting our tx_signatures, but our monitor has not persisted yet | ||||||
// so they'll be sent as soon as that's done. | ||||||
self.context.monitor_pending_tx_signatures = Some(tx_signatures); | ||||||
} | ||||||
self.interactive_tx_signing_session.as_mut().map(|session| session.received_commitment_signed()); | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could we use There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sure! Sorry, terrible habit of mine mixing mutability in functional methods. |
||||||
|
||||||
Ok(channel_monitor) | ||||||
} | ||||||
|
@@ -6856,13 +6810,12 @@ where | |||||
channel_id: Some(self.context.channel_id()), | ||||||
}; | ||||||
|
||||||
let tx_signatures = self | ||||||
let _ = self | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Since this now returns void, it's best to ignore the return value completely. Otherwise, if the return parameter changes, rustc won't complain about it. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good catch. Thanks! |
||||||
.interactive_tx_signing_session | ||||||
.as_mut() | ||||||
.expect("Signing session must exist for negotiated pending splice") | ||||||
.received_commitment_signed(); | ||||||
self.monitor_updating_paused(false, false, false, Vec::new(), Vec::new(), Vec::new()); | ||||||
self.context.monitor_pending_tx_signatures = tx_signatures; | ||||||
|
||||||
Ok(self.push_ret_blockable_mon_update(monitor_update)) | ||||||
} | ||||||
|
@@ -7772,10 +7725,28 @@ where | |||||
} | ||||||
} | ||||||
|
||||||
pub fn funding_transaction_signed( | ||||||
wpaulino marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
&mut self, witnesses: Vec<Witness>, | ||||||
) -> Result<Option<msgs::TxSignatures>, APIError> { | ||||||
self.interactive_tx_signing_session | ||||||
.as_mut() | ||||||
.ok_or_else(|| APIError::APIMisuseError { | ||||||
err: format!( | ||||||
"Channel with id {} not expecting funding signatures", | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let's just say |
||||||
self.context.channel_id | ||||||
), | ||||||
}) | ||||||
.and_then(|signing_session| { | ||||||
signing_session | ||||||
.verify_interactive_tx_signatures(&self.context.secp_ctx, &witnesses)?; | ||||||
signing_session | ||||||
.provide_holder_witnesses(self.context.channel_id, witnesses) | ||||||
.map_err(|err| APIError::APIMisuseError { err }) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If we're not first to provide signatures, and we receive our counterparty's before we have ours ready, we don't seem to advance our state. We need to set our flag, check if we can transition to the next state, and set the funding transaction for broadcast if ready. |
||||||
}) | ||||||
} | ||||||
|
||||||
#[rustfmt::skip] | ||||||
pub fn tx_signatures<L: Deref>(&mut self, msg: &msgs::TxSignatures, logger: &L) -> Result<(Option<Transaction>, Option<msgs::TxSignatures>), ChannelError> | ||||||
where L::Target: Logger | ||||||
{ | ||||||
pub fn tx_signatures(&mut self, msg: &msgs::TxSignatures) -> Result<(Option<Transaction>, Option<msgs::TxSignatures>), ChannelError> { | ||||||
if !self.context.channel_state.is_interactive_signing() | ||||||
|| self.context.channel_state.is_their_tx_signatures_sent() | ||||||
{ | ||||||
|
@@ -7828,15 +7799,8 @@ where | |||||
self.funding.funding_transaction = funding_tx_opt.clone(); | ||||||
} | ||||||
|
||||||
// Note that `holder_tx_signatures_opt` will be `None` if we sent `tx_signatures` first, so this | ||||||
// case checks if there is a monitor persist in progress when we need to respond with our `tx_signatures` | ||||||
// and sets it as pending. | ||||||
if holder_tx_signatures_opt.is_some() && self.is_awaiting_initial_mon_persist() { | ||||||
log_debug!(logger, "Not sending tx_signatures: a monitor update is in progress. Setting monitor_pending_tx_signatures."); | ||||||
self.context.monitor_pending_tx_signatures = holder_tx_signatures_opt; | ||||||
return Ok((None, None)); | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We used to return early if There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should we add a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Seems I lost a check here when I was working on testing. Will add a |
||||||
} | ||||||
|
||||||
// Note that `holder_tx_signatures_opt` will be `None` if we sent `tx_signatures` first or if the | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We should remove the TODOs about verifying witnesses above, also the input count check seems redundant as it's already checked in |
||||||
// user still needs to provide tx_signatures and we are sending second. | ||||||
if holder_tx_signatures_opt.is_some() { | ||||||
self.context.channel_state.set_our_tx_signatures_ready(); | ||||||
} | ||||||
|
@@ -8093,25 +8057,14 @@ where | |||||
mem::swap(&mut finalized_claimed_htlcs, &mut self.context.monitor_pending_finalized_fulfills); | ||||||
let mut pending_update_adds = Vec::new(); | ||||||
mem::swap(&mut pending_update_adds, &mut self.context.monitor_pending_update_adds); | ||||||
// For channels established with V2 establishment we won't send a `tx_signatures` when we're in | ||||||
// MonitorUpdateInProgress (and we assume the user will never directly broadcast the funding | ||||||
// transaction and waits for us to do it). | ||||||
let tx_signatures = self.context.monitor_pending_tx_signatures.take(); | ||||||
if tx_signatures.is_some() { | ||||||
if self.context.channel_state.is_their_tx_signatures_sent() { | ||||||
self.context.channel_state = ChannelState::AwaitingChannelReady(AwaitingChannelReadyFlags::new()); | ||||||
} else { | ||||||
self.context.channel_state.set_our_tx_signatures_ready(); | ||||||
} | ||||||
} | ||||||
|
||||||
if self.context.channel_state.is_peer_disconnected() { | ||||||
self.context.monitor_pending_revoke_and_ack = false; | ||||||
self.context.monitor_pending_commitment_signed = false; | ||||||
return MonitorRestoreUpdates { | ||||||
raa: None, commitment_update: None, order: RAACommitmentOrder::RevokeAndACKFirst, | ||||||
accepted_htlcs, failed_htlcs, finalized_claimed_htlcs, pending_update_adds, | ||||||
funding_broadcastable, channel_ready, announcement_sigs, tx_signatures | ||||||
funding_broadcastable, channel_ready, announcement_sigs, tx_signatures: None | ||||||
}; | ||||||
} | ||||||
|
||||||
|
@@ -8141,7 +8094,7 @@ where | |||||
match order { RAACommitmentOrder::CommitmentFirst => "commitment", RAACommitmentOrder::RevokeAndACKFirst => "RAA"}); | ||||||
MonitorRestoreUpdates { | ||||||
raa, commitment_update, order, accepted_htlcs, failed_htlcs, finalized_claimed_htlcs, | ||||||
pending_update_adds, funding_broadcastable, channel_ready, announcement_sigs, tx_signatures | ||||||
pending_update_adds, funding_broadcastable, channel_ready, announcement_sigs, tx_signatures: None | ||||||
} | ||||||
} | ||||||
|
||||||
|
@@ -8416,23 +8369,25 @@ where | |||||
log_trace!(logger, "Regenerating latest commitment update in channel {} with{} {} update_adds, {} update_fulfills, {} update_fails, and {} update_fail_malformeds", | ||||||
&self.context.channel_id(), if update_fee.is_some() { " update_fee," } else { "" }, | ||||||
update_add_htlcs.len(), update_fulfill_htlcs.len(), update_fail_htlcs.len(), update_fail_malformed_htlcs.len()); | ||||||
let commitment_signed = | ||||||
if let Ok(update) = self.send_commitment_no_state_update(logger) { | ||||||
if self.context.signer_pending_commitment_update { | ||||||
log_trace!( | ||||||
logger, | ||||||
"Commitment update generated: clearing signer_pending_commitment_update" | ||||||
); | ||||||
self.context.signer_pending_commitment_update = false; | ||||||
} | ||||||
update | ||||||
} else { | ||||||
if !self.context.signer_pending_commitment_update { | ||||||
log_trace!(logger, "Commitment update awaiting signer: setting signer_pending_commitment_update"); | ||||||
self.context.signer_pending_commitment_update = true; | ||||||
} | ||||||
return Err(()); | ||||||
}; | ||||||
let commitment_signed = if let Ok(update) = self.send_commitment_no_state_update(logger) { | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Unrelated rustfmt change snuck in? |
||||||
if self.context.signer_pending_commitment_update { | ||||||
log_trace!( | ||||||
logger, | ||||||
"Commitment update generated: clearing signer_pending_commitment_update" | ||||||
); | ||||||
self.context.signer_pending_commitment_update = false; | ||||||
} | ||||||
update | ||||||
} else { | ||||||
if !self.context.signer_pending_commitment_update { | ||||||
log_trace!( | ||||||
logger, | ||||||
"Commitment update awaiting signer: setting signer_pending_commitment_update" | ||||||
); | ||||||
self.context.signer_pending_commitment_update = true; | ||||||
} | ||||||
return Err(()); | ||||||
}; | ||||||
Ok(msgs::CommitmentUpdate { | ||||||
update_add_htlcs, | ||||||
update_fulfill_htlcs, | ||||||
|
@@ -8618,7 +8573,6 @@ where | |||||
update_fee: None, | ||||||
}) | ||||||
} else { None }; | ||||||
// TODO(dual_funding): For async signing support we need to hold back `tx_signatures` until the `commitment_signed` is ready. | ||||||
wpaulino marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
let tx_signatures = if ( | ||||||
// if it has not received tx_signatures for that funding transaction AND | ||||||
// if it has already received commitment_signed AND it should sign first, as specified in the tx_signatures requirements: | ||||||
|
@@ -8627,14 +8581,9 @@ where | |||||
// else if it has already received tx_signatures for that funding transaction: | ||||||
// MUST send its tx_signatures for that funding transaction. | ||||||
) || self.context.channel_state.is_their_tx_signatures_sent() { | ||||||
if self.context.channel_state.is_monitor_update_in_progress() { | ||||||
// The `monitor_pending_tx_signatures` field should have already been set in `commitment_signed_initial_v2` | ||||||
// if we were up first for signing and had a monitor update in progress, but check again just in case. | ||||||
debug_assert!(self.context.monitor_pending_tx_signatures.is_some(), "monitor_pending_tx_signatures should already be set"); | ||||||
log_debug!(logger, "Not sending tx_signatures: a monitor update is in progress. Setting monitor_pending_tx_signatures."); | ||||||
if self.context.monitor_pending_tx_signatures.is_none() { | ||||||
self.context.monitor_pending_tx_signatures = session.holder_tx_signatures().clone(); | ||||||
} | ||||||
if session.holder_tx_signatures().is_none() { | ||||||
debug_assert!(self.context.channel_state.is_monitor_update_in_progress()); | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorry this was my mistake, we actually can't guarantee this, similar to the other There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No worries. Thanks, I think I just forgot to remove this one too. |
||||||
log_debug!(logger, "Not sending tx_signatures: a monitor update is in progress."); | ||||||
None | ||||||
} else { | ||||||
// If `holder_tx_signatures` is `None` here, the `tx_signatures` message will be sent | ||||||
|
@@ -13559,7 +13508,6 @@ where | |||||
monitor_pending_failures, | ||||||
monitor_pending_finalized_fulfills: monitor_pending_finalized_fulfills.unwrap(), | ||||||
monitor_pending_update_adds: monitor_pending_update_adds.unwrap_or_default(), | ||||||
monitor_pending_tx_signatures: None, | ||||||
|
||||||
signer_pending_revoke_and_ack: false, | ||||||
signer_pending_commitment_update: false, | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This may contain outputs added during interactive construction, too.