Skip to content

Commit

Permalink
Namecoin: Remove redundant enumerate
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyRand committed Feb 17, 2020
1 parent 360983c commit 13f5ed7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion electrum_nmc/electrum/names.py
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ def get_wallet_name_count(wallet, network):
pending_count = 0

utxos = wallet.get_utxos()
for _, x in enumerate(utxos):
for x in utxos:
txid = x.prevout.txid
vout = x.prevout.out_idx
name_op = x.name_op
Expand Down

0 comments on commit 13f5ed7

Please sign in to comment.