mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
notify wallet wheit height changes
This commit is contained in:
parent
8242e58ddd
commit
022b3eed9b
1 changed files with 2 additions and 2 deletions
|
@ -403,10 +403,9 @@ class BlockchainVerifier(threading.Thread):
|
||||||
|
|
||||||
if height > self.local_height + 50:
|
if height > self.local_height + 50:
|
||||||
self.get_chunks(i, header, height)
|
self.get_chunks(i, header, height)
|
||||||
|
self.interface.trigger_callback('updated')
|
||||||
|
|
||||||
if height > self.local_height:
|
if height > self.local_height:
|
||||||
|
|
||||||
# get missing parts from interface (until it connects to my chain)
|
# get missing parts from interface (until it connects to my chain)
|
||||||
chain = self.get_chain( i, header )
|
chain = self.get_chain( i, header )
|
||||||
|
|
||||||
|
@ -423,6 +422,7 @@ class BlockchainVerifier(threading.Thread):
|
||||||
print_error("error", i.server)
|
print_error("error", i.server)
|
||||||
# todo: dismiss that server
|
# todo: dismiss that server
|
||||||
|
|
||||||
|
self.interface.trigger_callback('updated')
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue