commit 5bc74772a24a2f911276f4a19fc0749241d4bff1
parent 0e3270a1d6db91427c6a2810e97f4a5197e4fc2f
Author: ThomasV <thomasv@electrum.org>
Date: Thu, 22 Nov 2018 12:37:40 +0100
follow up 'replace properties with functions'
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/electrum/lnchan.py b/electrum/lnchan.py
@@ -392,7 +392,7 @@ class Channel(PrintError):
self.process_new_offchain_ctx(pending_local_commitment, ours=True)
def verify_htlc(self, htlc: UpdateAddHtlc, htlc_sigs: Sequence[bytes], we_receive: bool) -> int:
- _, this_point, _ = self.points
+ _, this_point, _ = self.points()
_script, htlc_tx = make_htlc_tx_with_open_channel(chan=self,
pcp=this_point,
for_us=True,