Skip to content

Commit

Permalink
Namecoin: Fix bytes/str mismatch in UNOList
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyRand committed Feb 17, 2020
1 parent 13f5ed7 commit c80ec7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion electrum_nmc/electrum/gui/qt/uno_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def update(self):
super().update()

def insert_utxo(self, idx, utxo: PartialTxInput):
txid = utxo.prevout.txid
txid = utxo.prevout.txid.hex()
vout = utxo.prevout.out_idx
name_op = utxo.name_op
if name_op is None:
Expand Down

0 comments on commit c80ec7e

Please sign in to comment.