This commit is contained in:
ThomasV 2015-08-23 14:45:12 +02:00
parent 49a48d52ac
commit 6a0fde329a
1 changed files with 2 additions and 2 deletions

View File

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