Browse Source

fix: this is called during the status bar update, do not run socket calls here

283
ThomasV 13 years ago
parent
commit
901d8db9c2
  1. 2
      client/electrum.py

2
client/electrum.py

@ -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
def get_addr_balance(self, addr):
if addr in self.addresses:
if self.is_mine(addr):
h = self.history.get(addr)
else:
h = self.interface.retrieve_history(addr)

Loading…
Cancel
Save