Skip to content

Commit

Permalink
Remove dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
Neil Booth committed Jul 30, 2018
1 parent c65f121 commit 6c3cce5
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions electrumx/server/mempool.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,8 +305,6 @@ async def unordered_UTXOs(self, hashX):
# hashXs is a defaultdict, so use get() to query
for tx_hash in self.hashXs.get(hashX, ()):
tx = self.txs.get(tx_hash)
if not tx:
continue
for pos, (hX, value) in enumerate(tx.out_pairs):
if hX == hashX:
utxos.append(UTXO(-1, pos, tx_hash, 0, value))
Expand Down

0 comments on commit 6c3cce5

Please sign in to comment.