From 531cfe6843b381c6fb3a00f2235bbc55e31e9ecc Mon Sep 17 00:00:00 2001 From: Sander van Grieken Date: Wed, 1 Sep 2021 11:03:35 +0200 Subject: [PATCH] comment --- charge_lnd/lnd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charge_lnd/lnd.py b/charge_lnd/lnd.py index 6f22dce..c3300d1 100644 --- a/charge_lnd/lnd.py +++ b/charge_lnd/lnd.py @@ -141,7 +141,7 @@ def update_chan_status(self, chanid, disable): output_index=int(chan_info.chan_point.split(':')[1]) ) my_policy = chan_info.node1_policy if chan_info.node1_pub == self.get_own_pubkey() else chan_info.node2_policy - # ugly code, retry with 'AUTO' if channel turns out not to be active. + # ugly code, retries with 'AUTO' if channel turns out not to be active. # Alternative is to iterate or index the channel list, just to get active status try: action = 'DISABLE' if disable else 'ENABLE'