1
0

transaction: don't convert p2pk to p2pkh address when displaying

also closes #4742
This commit is contained in:
SomberNight
2018-10-01 04:58:26 +02:00
parent ab1ec57429
commit 4d43d12abf
7 changed files with 26 additions and 27 deletions

View File

@@ -130,7 +130,7 @@ class TxDialog(Factory.Popup):
self.amount_str = format_amount(-amount)
self.fee_str = format_amount(fee) if fee is not None else _('unknown')
self.can_sign = self.wallet.can_sign(self.tx)
self.ids.output_list.update(self.tx.outputs())
self.ids.output_list.update(self.tx.get_outputs_for_UI())
def do_rbf(self):
from .bump_fee_dialog import BumpFeeDialog