From f9febb0351414222dc61e1bef647b140bf7a1e39 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Wed, 25 Aug 2021 19:36:43 +0000 Subject: [PATCH] Fix indentation in ChannelMonitor --- lightning/src/chain/channelmonitor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightning/src/chain/channelmonitor.rs b/lightning/src/chain/channelmonitor.rs index 1b5a56d5..b2ed3d99 100644 --- a/lightning/src/chain/channelmonitor.rs +++ b/lightning/src/chain/channelmonitor.rs @@ -2460,7 +2460,7 @@ impl ChannelMonitorImpl { // resolve the source HTLC with the original sender. payment_data = Some(((*source).clone(), htlc_output.payment_hash, htlc_output.amount_msat)); } else if !$holder_tx { - check_htlc_valid_counterparty!(self.current_counterparty_commitment_txid, htlc_output); + check_htlc_valid_counterparty!(self.current_counterparty_commitment_txid, htlc_output); if payment_data.is_none() { check_htlc_valid_counterparty!(self.prev_counterparty_commitment_txid, htlc_output); } -- 2.30.2