From 0569cc283a0f3920ba74668f9f3b3667502f608d Mon Sep 17 00:00:00 2001 From: ecdsa Date: Tue, 12 Mar 2013 20:59:37 +0100 Subject: [PATCH] fix exception --- lib/wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wallet.py b/lib/wallet.py index 2fbae8440..fbd3408f5 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -640,7 +640,7 @@ class Wallet: def receive_tx_callback(self, tx_hash, tx, tx_height): if not self.check_new_tx(tx_hash, tx): - raise BaseException("error: received transaction is not consistent with history"%tx_hash) + raise BaseException("error: received transaction is not consistent with history", tx_hash) with self.lock: self.transactions[tx_hash] = tx