From 5b8e096d5709e051024c91a1b637ff2bc9b2cb74 Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Tue, 5 Jan 2016 21:55:47 +0900 Subject: [PATCH] Fix typo in prior except block --- plugins/trustedcoin/trustedcoin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/trustedcoin/trustedcoin.py b/plugins/trustedcoin/trustedcoin.py index 7456b49fd..6f68c00ca 100644 --- 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