mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-02-25 15:20:24 +01:00
Merge pull request #496 from TheBlueMatt/2020-02-461-extra-mut
Remove unnecessary mut introduced in 0c595a7ff6
This commit is contained in:
commit
2514530a53
1 changed files with 1 additions and 1 deletions
|
@ -1832,7 +1832,7 @@ impl<ChanSigner: ChannelKeys> ChannelMonitor<ChanSigner> {
|
|||
}
|
||||
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,
|
||||
|
|
Loading…
Add table
Reference in a new issue