Browse Source

test_closing.py: isAlive -> is_alive

isAlive() is deprecated, use is_alive() instead
htlc_accepted_hook
Jan Sarenik 6 years ago
committed by Christian Decker
parent
commit
180ea5bb38
  1. 2
      tests/test_closing.py

2
tests/test_closing.py

@ -779,7 +779,7 @@ def test_onchain_middleman(node_factory, bitcoind):
print("Got err from sendpay thread") print("Got err from sendpay thread")
raise err raise err
t.join(timeout=1) t.join(timeout=1)
assert not t.isAlive() assert not t.is_alive()
# Three more, l2 can spend to-us. # Three more, l2 can spend to-us.
bitcoind.generate_block(3) bitcoind.generate_block(3)

Loading…
Cancel
Save