commit 5b8e096d5709e051024c91a1b637ff2bc9b2cb74
parent d98f123f92f0c5485693a51453f2f53189c2c10a
Author: Neil Booth <kyuupichan@gmail.com>
Date: Tue, 5 Jan 2016 21:55:47 +0900
Fix typo in prior except block
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/plugins/trustedcoin/trustedcoin.py b/plugins/trustedcoin/trustedcoin.py
@@ -241,7 +241,7 @@ class Wallet_2fa(Multisig_Wallet):
except NotEnoughFunds:
# trustedcoin won't charge if the total inputs is
# lower than their fee
- if tx.input_value() >= tcoin_fee:
+ if tx.input_value() >= fee:
raise
return tx