Browse Source

call force_close_channel on LNWorker, not Peer

dependabot/pip/contrib/deterministic-build/ecdsa-0.13.3
Janus 6 years ago
committed by ThomasV
parent
commit
9cf7aa054d
  1. 3
      electrum/tests/test_lnbase.py

3
electrum/tests/test_lnbase.py

@ -88,6 +88,7 @@ class MockLNWorker:
_create_route_from_invoice = LNWorker._create_route_from_invoice
_check_invoice = staticmethod(LNWorker._check_invoice)
_pay_to_route = LNWorker._pay_to_route
force_close_channel = LNWorker.force_close_channel
class MockTransport:
def __init__(self):
@ -203,7 +204,7 @@ class TestPeer(unittest.TestCase):
addr = w1._check_invoice(pay_req)
route = w1._create_route_from_invoice(decoded_invoice=addr)
run(p1.force_close_channel(self.alice_channel.channel_id))
run(w1.force_close_channel(self.alice_channel.channel_id))
# check if a tx (commitment transaction) was broadcasted:
assert q1.qsize() == 1

Loading…
Cancel
Save