mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-01 09:45:18 +00:00
fix issue in f307b18546
This commit is contained in:
parent
f307b18546
commit
fdd43bd5ad
1 changed files with 3 additions and 1 deletions
|
@ -548,7 +548,9 @@ class Network(util.DaemonThread):
|
||||||
# If not finished, get the next header
|
# If not finished, get the next header
|
||||||
if next_height in [True, False]:
|
if next_height in [True, False]:
|
||||||
self.bc_requests.popleft()
|
self.bc_requests.popleft()
|
||||||
if not next_height:
|
if next_height:
|
||||||
|
self.notify('updated')
|
||||||
|
else:
|
||||||
interface.print_error("header didn't connect, dismissing interface")
|
interface.print_error("header didn't connect, dismissing interface")
|
||||||
interface.stop()
|
interface.stop()
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Add table
Reference in a new issue