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 bf8302f commit 5ebc76dCopy full SHA for 5ebc76d
lightning/src/ln/interactivetxs.rs
@@ -304,7 +304,7 @@ impl NegotiationContext {
304
self.outputs.remove(&msg.serial_id);
305
}
306
307
- fn build_transaction(mut self) -> Result<Transaction, AbortReason> {
+ fn build_transaction(self) -> Result<Transaction, AbortReason> {
308
// The receiving node:
309
// MUST fail the negotiation if:
310
lightning/src/ln/mod.rs
@@ -82,7 +82,7 @@ mod async_signer_tests;
82
#[cfg(test)]
83
#[allow(unused_mut)]
84
mod offers_tests;
85
-#[allow(unused_mut)] // TODO
+#[allow(dead_code)] // TODO(dual_funding): Exchange for dual_funding cfg
86
pub(crate) mod interactivetxs;
87
88
pub use self::peer_channel_encryptor::LN_MAX_MSG_LEN;
0 commit comments