lnhtlc: fix received_in_ctn (LOCAL->REMOTE)

This commit is contained in:
ThomasV 2019-02-26 13:53:33 +01:00
parent 9206b6225b
commit 11c0c0d5a1

View file

@ -159,7 +159,7 @@ class HTLCManager:
return sent + received
def received_in_ctn(self, ctn):
return [self.log[REMOTE]['adds'][htlc_id] for htlc_id, ctnheights in self.log[REMOTE]['settles'].items() if ctnheights[LOCAL] == ctn]
return [self.log[REMOTE]['adds'][htlc_id] for htlc_id, ctnheights in self.log[REMOTE]['settles'].items() if ctnheights[REMOTE] == ctn]
def sent_in_ctn(self, ctn):
return [self.log[LOCAL]['adds'][htlc_id] for htlc_id, ctnheights in self.log[LOCAL]['settles'].items() if ctnheights[LOCAL] == ctn]