Fix typo in prior except block

This commit is contained in:
Neil Booth 2016-01-05 21:55:47 +09:00
parent d98f123f92
commit 5b8e096d57
1 changed files with 1 additions and 1 deletions

View File

@ -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