call force_close_channel on LNWorker, not Peer

This commit is contained in:
Janus 2018-11-05 18:47:39 +01:00 committed by ThomasV
parent c570bc5fb1
commit 9cf7aa054d

View file

@ -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