electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 1f1ce26211d5fc7e4ee1c52244c6dc79e68941a0
parent a6841cbd5fb826eb12cf562eaeaf4929248a6dc8
Author: SomberNight <somber.night@protonmail.com>
Date:   Tue, 13 Mar 2018 06:22:38 +0100

fix transaction dialog for p2pk input

Diffstat:
Mgui/qt/transaction_dialog.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui/qt/transaction_dialog.py b/gui/qt/transaction_dialog.py @@ -289,7 +289,7 @@ class TxDialog(QDialog, MessageBoxMixin): cursor.insertText(prevout_hash[-8:] + ":%-4d " % prevout_n, ext) addr = x.get('address') if addr == "(pubkey)": - _addr = self.wallet.find_pay_to_pubkey_address(prevout_hash, prevout_n) + _addr = self.wallet.get_txin_address(x) if _addr: addr = _addr if addr is None: