mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-28 16:01:30 +00:00
redundant: you subscribed only to 'updated'
This commit is contained in:
parent
8ee71b623f
commit
ea41d6f0f3
1 changed files with 11 additions and 14 deletions
|
@ -797,7 +797,6 @@ class Peer(PrintError):
|
|||
assert success
|
||||
# wait until we see confirmations
|
||||
def on_network_update(event, *args):
|
||||
if event == 'updated':
|
||||
conf = wallet.get_tx_height(funding_txid)[1]
|
||||
if conf >= funding_txn_minimum_depth:
|
||||
async def set_local_funding_locked_result():
|
||||
|
@ -809,8 +808,6 @@ class Peer(PrintError):
|
|||
self.print_error('local_funding_locked.set_result error for channel {}: {}'.format(channel_id, e))
|
||||
asyncio.run_coroutine_threadsafe(set_local_funding_locked_result(), asyncio.get_event_loop())
|
||||
self.network.unregister_callback(on_network_update)
|
||||
else:
|
||||
self.print_error("unexpected network message:", event, args)
|
||||
self.network.register_callback(on_network_update, ['updated']) # thread safe
|
||||
|
||||
try:
|
||||
|
|
Loading…
Add table
Reference in a new issue