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 9426759 commit 3a155abCopy full SHA for 3a155ab
lightning/src/ln/interactivetxs.rs
@@ -295,7 +295,7 @@ impl NegotiationContext {
295
self.outputs.remove(&msg.serial_id);
296
}
297
298
- fn build_transaction(mut self) -> Result<Transaction, AbortReason> {
+ fn build_transaction(self) -> Result<Transaction, AbortReason> {
299
// The receiving node:
300
// MUST fail the negotiation if:
301
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