This commit is contained in:
SomberNight 2018-04-11 18:31:35 +02:00
parent 75f0221617
commit b68f5645cb
No known key found for this signature in database
GPG key ID: B33B5F232C6271E9

View file

@ -604,7 +604,7 @@ class Abstract_Wallet(PrintError):
status = _('Unconfirmed')
if fee is None:
fee = self.tx_fees.get(tx_hash)
if fee and self.network.config.has_fee_mempool():
if fee and self.network and self.network.config.has_fee_mempool():
size = tx.estimated_size()
fee_per_byte = fee / size
exp_n = self.network.config.fee_to_depth(fee_per_byte)