mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-28 07:51:27 +00:00
fix transaction dialog for p2pk input
This commit is contained in:
parent
a6841cbd5f
commit
1f1ce26211
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue