From 6a0fde329a51222682a1a344f14e190583f83a7f Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sun, 23 Aug 2015 14:45:12 +0200 Subject: [PATCH] fix #1416 --- plugins/trustedcoin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/trustedcoin.py b/plugins/trustedcoin.py index ec0d7c9f8..35fa7c117 100644 --- 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