Post
Topic
Board Electrum
Re: [SOLVED] Command 'history' gives error.
by
Cryptowatch.com
on 12/05/2015, 09:26:57 UTC
Anyway, as I wanted to use 2.1.1, the simple fix for this issue is as follows:

edit Electrum-2.1.1/lib/commands.py

Find line in def history saying:

Code:
tx_hash, conf, is_mine, value, fee, balance, timestamp = item

switch it with

Code:
tx_hash, conf, value, timestamp, balance = item


Edit: Diffed against released version, so this should be the correct fix.