tfix history command - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit 7316f613d62b8a0f618f1a56b136bad5fac1fa25
DIR parent 77648c284f069b743edd5df38f7bbee85be00a2d
HTML Author: ThomasV <thomasv@gitorious>
Date: Tue, 28 Apr 2015 08:58:33 +0200
fix history command
Diffstat:
M lib/commands.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/lib/commands.py b/lib/commands.py
t@@ -343,7 +343,7 @@ class Commands:
balance = 0
out = []
for item in self.wallet.get_history():
- tx_hash, conf, is_mine, value, fee, balance, timestamp = item
+ tx_hash, conf, value, timestamp, balance = item
try:
time_str = datetime.datetime.fromtimestamp( timestamp).isoformat(' ')[:-3]
except Exception: