mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-03 02:35:20 +00:00
fix: this is called during the status bar update, do not run socket calls here
This commit is contained in:
parent
39a9979f5b
commit
901d8db9c2
1 changed files with 1 additions and 1 deletions
|
@ -571,7 +571,7 @@ class Wallet:
|
||||||
return False, "The last %d addresses in your list have never been used. You should use them first, or increase the allowed gap size in your preferences. "%self.gap_limit
|
return False, "The last %d addresses in your list have never been used. You should use them first, or increase the allowed gap size in your preferences. "%self.gap_limit
|
||||||
|
|
||||||
def get_addr_balance(self, addr):
|
def get_addr_balance(self, addr):
|
||||||
if addr in self.addresses:
|
if self.is_mine(addr):
|
||||||
h = self.history.get(addr)
|
h = self.history.get(addr)
|
||||||
else:
|
else:
|
||||||
h = self.interface.retrieve_history(addr)
|
h = self.interface.retrieve_history(addr)
|
||||||
|
|
Loading…
Add table
Reference in a new issue