1
0

lnbase: do not assert only one htlc in commitment

This commit is contained in:
Janus
2018-10-24 23:58:11 +02:00
committed by ThomasV
parent a5a7c1406e
commit 578faeb91a

View File

@@ -1029,7 +1029,7 @@ class Peer(PrintError):
# add htlc
htlc = {'amount_msat': amount_msat_htlc, 'payment_hash':payment_hash, 'cltv_expiry':cltv_expiry}
chan.receive_htlc(htlc)
assert (await self.receive_commitment(chan)) <= 1
await self.receive_commitment(chan)
self.revoke(chan)
self.send_commitment(chan)
await self.receive_revoke(chan)