From 4978eff7f63de3f2aad97360a3d14460c97a15eb Mon Sep 17 00:00:00 2001 From: thomasv Date: Wed, 2 Jan 2013 10:35:35 +0100 Subject: [PATCH] fix for command line history (EagleTM) --- lib/wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wallet.py b/lib/wallet.py index 31b50269..a7b89c29 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -700,7 +700,7 @@ class Wallet: balance = c + u - balance for tx in history: tx_hash = tx['tx_hash'] - conf, timestamp = self.verifier.get_confirmations(tx_hash) if self.verifier else None + conf, timestamp = self.verifier.get_confirmations(tx_hash) if self.verifier else None, None is_mine, value, fee = self.get_tx_value(tx_hash) if value is not None: balance += value