Browse Source

fixed bug: failed command ``history`` if ``wallet.get_tx_history()`` is empty

master
Andrej A Antonov 13 years ago
parent
commit
a498ed979b
  1. 1
      electrum

1
electrum

@ -563,6 +563,7 @@ if __name__ == '__main__':
if cmd == 'history':
import datetime
balance = 0
for item in wallet.get_tx_history():
tx_hash, conf, is_mine, value, fee, balance, timestamp = item
try:

Loading…
Cancel
Save