Browse Source

do not return history if offline

283
ThomasV 11 years ago
parent
commit
c84cc5bb8b
  1. 3
      lib/wallet.py

3
lib/wallet.py

@ -1256,6 +1256,9 @@ class Wallet:
def get_tx_history(self, account=None):
if not self.verifier:
return []
with self.transaction_lock:
history = self.transactions.items()
history.sort(key = lambda x: self.verifier.get_txpos(x[0]))

Loading…
Cancel
Save