show fee rate in history too

This commit is contained in:
ThomasV 2017-12-19 15:05:32 +01:00
parent 14855cc538
commit 30ea82fcf2
1 changed files with 1 additions and 1 deletions

View File

@ -854,7 +854,7 @@ class Abstract_Wallet(PrintError):
time_str = format_time(timestamp) if timestamp else _("unknown")
status_str = TX_STATUS[status] if status < 5 else time_str
if exp_n:
status_str += ' [< %.2f MB]'%(exp_n/1000000)
status_str += ' [%d sat/b, %.2f MB]'%(fee_per_kb//1000, exp_n/1000000)
return status, status_str
def relayfee(self):