From b18a17ef79ef0272eae0c66d3e4af039037e8d91 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Wed, 3 Oct 2018 20:15:22 +0200 Subject: [PATCH] lnchannelverifier: (minor) use named fields of namedtuple --- electrum/lnchannelverifier.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/electrum/lnchannelverifier.py b/electrum/lnchannelverifier.py index 0d5793b1b..11f996b36 100644 --- a/electrum/lnchannelverifier.py +++ b/electrum/lnchannelverifier.py @@ -127,10 +127,10 @@ class LNChannelVerifier(ThreadJob): actual_output = tx.outputs()[output_idx] except IndexError: return - if expected_address != actual_output[1]: + if expected_address != actual_output.address: return # put channel into channel DB - channel_info.set_capacity(actual_output[2]) + channel_info.set_capacity(actual_output.value) self.channel_db.add_verified_channel_info(short_channel_id, channel_info) # remove channel from unverified with self.lock: