mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-29 16:31:29 +00:00
channel verifier: fix request_chunk args
This commit is contained in:
parent
dd35a5d0a0
commit
fa3fea0ec2
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ class LNChanAnnVerifier(ThreadJob):
|
||||||
if header is None:
|
if header is None:
|
||||||
index = block_height // 2016
|
index = block_height // 2016
|
||||||
if index < len(blockchain.checkpoints):
|
if index < len(blockchain.checkpoints):
|
||||||
await tg.spawn(self.network.request_chunk(interface, index))
|
await tg.spawn(self.network.request_chunk(block_height, None, can_return_early=True))
|
||||||
continue
|
continue
|
||||||
await tg.spawn(self.verify_channel(block_height, tx_pos, short_channel_id))
|
await tg.spawn(self.verify_channel(block_height, tx_pos, short_channel_id))
|
||||||
#self.print_error('requested short_channel_id', bh2u(short_channel_id))
|
#self.print_error('requested short_channel_id', bh2u(short_channel_id))
|
||||||
|
|
Loading…
Add table
Reference in a new issue