commit 6a0fde329a51222682a1a344f14e190583f83a7f
parent 49a48d52ac3c6f364bbf57f0b88f969acad4cf3b
Author: ThomasV <thomasv@gitorious>
Date: Sun, 23 Aug 2015 14:45:12 +0200
fix #1416
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/plugins/trustedcoin.py b/plugins/trustedcoin.py
@@ -194,8 +194,8 @@ class Wallet_2fa(Multisig_Wallet):
def make_seed(self):
return Mnemonic('english').make_seed(num_bits=256, prefix=SEED_PREFIX)
- def estimated_fee(self, tx):
- fee = Multisig_Wallet.estimated_fee(self, tx)
+ def estimated_fee(self, tx, fee_per_kb):
+ fee = Multisig_Wallet.estimated_fee(self, tx, fee_per_kb)
x = run_hook('extra_fee', tx)
if x: fee += x
return fee