forked from LBRYCommunity/lbry-sdk
organize logic for when its downloading
This commit is contained in:
parent
c85127d76b
commit
91846939f6
1 changed files with 5 additions and 6 deletions
|
@ -128,14 +128,13 @@ class WalletComponent(Component):
|
||||||
if self.wallet_manager.ledger.network.remote_height:
|
if self.wallet_manager.ledger.network.remote_height:
|
||||||
local_height = self.wallet_manager.ledger.local_height_including_downloaded_height
|
local_height = self.wallet_manager.ledger.local_height_including_downloaded_height
|
||||||
disk_height = len(self.wallet_manager.ledger.headers)
|
disk_height = len(self.wallet_manager.ledger.headers)
|
||||||
download_height = local_height - disk_height if disk_height != local_height else local_height
|
|
||||||
remote_height = self.wallet_manager.ledger.network.remote_height
|
remote_height = self.wallet_manager.ledger.network.remote_height
|
||||||
target_height = remote_height - disk_height if disk_height != local_height else remote_height
|
if disk_height != local_height != remote_height:
|
||||||
best_hash = self.wallet_manager.get_best_blockhash()
|
download_height, target_height = local_height - disk_height, remote_height - disk_height
|
||||||
if not target_height:
|
|
||||||
progress = 100
|
|
||||||
else:
|
else:
|
||||||
progress = min(max(math.ceil(float(download_height) / float(target_height) * 100), 0), 100)
|
download_height, target_height = local_height, remote_height
|
||||||
|
progress = min(max(math.ceil(float(download_height) / float(target_height) * 100), 0), 100)
|
||||||
|
best_hash = self.wallet_manager.get_best_blockhash()
|
||||||
result.update({
|
result.update({
|
||||||
'headers_synchronization_progress': progress,
|
'headers_synchronization_progress': progress,
|
||||||
'blocks': max(local_height, 0),
|
'blocks': max(local_height, 0),
|
||||||
|
|
Loading…
Reference in a new issue