mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-02 10:15:20 +00:00
fix #2107
This commit is contained in:
parent
a62dab9962
commit
9302cea725
1 changed files with 1 additions and 1 deletions
|
@ -452,7 +452,7 @@ class Abstract_Wallet(PrintError):
|
|||
if fee:
|
||||
size = tx.estimated_size()
|
||||
fee_per_kb = fee * 1000 / size
|
||||
exp_n = self.network.reverse_dynfee(fee_per_kb)
|
||||
exp_n = self.network.config.reverse_dynfee(fee_per_kb)
|
||||
can_bump = is_mine and not tx.is_final()
|
||||
else:
|
||||
status = _("Signed")
|
||||
|
|
Loading…
Add table
Reference in a new issue