tFix typo in prior except block - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 5b8e096d5709e051024c91a1b637ff2bc9b2cb74 DIR parent d98f123f92f0c5485693a51453f2f53189c2c10a HTML Author: Neil Booth <kyuupichan@gmail.com> Date: Tue, 5 Jan 2016 21:55:47 +0900 Fix typo in prior except block Diffstat: M plugins/trustedcoin/trustedcoin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/plugins/trustedcoin/trustedcoin.py b/plugins/trustedcoin/trustedcoin.py t@@ -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