ThomasV 7 years ago
parent
commit
f39f43d58c
  1. 1
      gui/kivy/uix/screens.py
  2. 1
      gui/qt/history_list.py
  3. 11
      lib/wallet.py

1
gui/kivy/uix/screens.py

@ -89,7 +89,6 @@ class CScreen(Factory.Screen):
# note: this list needs to be kept in sync with another in qt # note: this list needs to be kept in sync with another in qt
TX_ICONS = [ TX_ICONS = [
"close",
"close", "close",
"close", "close",
"unconfirmed", "unconfirmed",

1
gui/qt/history_list.py

@ -34,7 +34,6 @@ from electrum.util import timestamp_to_datetime, profiler
# note: this list needs to be kept in sync with another in kivy # note: this list needs to be kept in sync with another in kivy
TX_ICONS = [ TX_ICONS = [
"warning.png",
"warning.png", "warning.png",
"warning.png", "warning.png",
"unconfirmed.png", "unconfirmed.png",

11
lib/wallet.py

@ -66,7 +66,6 @@ from .contacts import Contacts
TX_STATUS = [ TX_STATUS = [
_('Replaceable'), _('Replaceable'),
_('Unconfirmed parent'), _('Unconfirmed parent'),
_('Low fee'),
_('Unconfirmed'), _('Unconfirmed'),
_('Not Verified'), _('Not Verified'),
_('Local only'), _('Local only'),
@ -877,16 +876,14 @@ class Abstract_Wallet(PrintError):
status = 1 status = 1
elif height == TX_HEIGHT_UNCONFIRMED and not is_final: elif height == TX_HEIGHT_UNCONFIRMED and not is_final:
status = 0 status = 0
elif height == TX_HEIGHT_UNCONFIRMED and is_lowfee:
status = 2
elif height == TX_HEIGHT_UNCONFIRMED: elif height == TX_HEIGHT_UNCONFIRMED:
status = 3 status = 2
else: else:
status = 4 status = 3
else: else:
status = 5 + min(conf, 6) status = 4 + min(conf, 6)
time_str = format_time(timestamp) if timestamp else _("unknown") time_str = format_time(timestamp) if timestamp else _("unknown")
status_str = TX_STATUS[status] if status < 6 else time_str status_str = TX_STATUS[status] if status < 5 else time_str
if exp_n: if exp_n:
status_str += ' [%d sat/b, %.2f MB]'%(fee_per_kb//1000, exp_n/1000000) status_str += ' [%d sat/b, %.2f MB]'%(fee_per_kb//1000, exp_n/1000000)
return status, status_str return status, status_str

Loading…
Cancel
Save