From f137139672dadb3924a37a9efeffc46c4bf157ed Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Wed, 12 Feb 2020 13:00:43 -0500 Subject: [PATCH] Remove unnecessary mut introduced in 0c595a7ff69bd177b2e7fa8c1b361 --- lightning/src/ln/channelmonitor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightning/src/ln/channelmonitor.rs b/lightning/src/ln/channelmonitor.rs index 7d843506e..a1577712f 100644 --- a/lightning/src/ln/channelmonitor.rs +++ b/lightning/src/ln/channelmonitor.rs @@ -1832,7 +1832,7 @@ impl ChannelMonitor { } if let Some(payment_preimage) = self.payment_preimages.get(&htlc.payment_hash) { if htlc.offered { - let mut input = TxIn { + let input = TxIn { previous_output: BitcoinOutPoint { txid: commitment_txid, vout: transaction_output_index, -- 2.39.5