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 SomberNight
parent 1dc9e062df
commit 838b79f7b8
No known key found for this signature in database
GPG key ID: B33B5F232C6271E9

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)