mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-29 08:21:27 +00:00
follow-up 7b828359c6
This commit is contained in:
parent
79de0489e3
commit
3d04399581
1 changed files with 2 additions and 2 deletions
|
@ -409,7 +409,7 @@ class Abstract_Wallet(AddressSynchronizer):
|
|||
elif tx_mined_status.height in (TX_HEIGHT_UNCONF_PARENT, TX_HEIGHT_UNCONFIRMED):
|
||||
status = _('Unconfirmed')
|
||||
if fee is None:
|
||||
fee = self.get_tx_fee(tx_hash, trust_server=True)
|
||||
fee = self.get_tx_fee(tx_hash)
|
||||
if fee and self.network and self.config.has_fee_mempool():
|
||||
size = tx.estimated_size()
|
||||
fee_per_byte = fee / size
|
||||
|
@ -722,7 +722,7 @@ class Abstract_Wallet(AddressSynchronizer):
|
|||
is_final = tx and tx.is_final()
|
||||
if not is_final:
|
||||
extra.append('rbf')
|
||||
fee = self.get_tx_fee(tx_hash, trust_server=True)
|
||||
fee = self.get_tx_fee(tx_hash)
|
||||
if fee is not None:
|
||||
size = tx.estimated_size()
|
||||
fee_per_byte = fee / size
|
||||
|
|
Loading…
Add table
Reference in a new issue