Browse Source

Fix typo in prior except block

283
Neil Booth 9 years ago
parent
commit
5b8e096d57
  1. 2
      plugins/trustedcoin/trustedcoin.py

2
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

Loading…
Cancel
Save