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 e20e8c6 commit c79c376Copy full SHA for c79c376
lightning/src/ln/interactivetxs.rs
@@ -299,7 +299,7 @@ impl NegotiationContext {
299
self.outputs.remove(&msg.serial_id);
300
}
301
302
- fn build_transaction(mut self) -> Result<Transaction, AbortReason> {
+ fn build_transaction(self) -> Result<Transaction, AbortReason> {
303
// The receiving node:
304
// MUST fail the negotiation if:
305
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