Skip to content

Commit

Permalink
Merge #365: Fix crash when pushing TX via "not-self"
Browse files Browse the repository at this point in the history
1caf0da Fix crash when pushing TX via "not-self" (AlexCato)

Tree-SHA512: 7f9033993602071c81b6526a2b35a5ed1ee7eb9bbd9bc937fe7838d11b3091acaec46ee0ecebc4136470fe5dd70540acbbda8458e8250b5e76c248499fba63c5
  • Loading branch information
chris-belcher committed Jul 9, 2019
2 parents ca72045 + 1caf0da commit 564cfcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jmclient/jmclient/taker.py
Original file line number Diff line number Diff line change
Expand Up @@ -801,7 +801,7 @@ def push(self):
if i == n:
pushed = jm_single().bc_interface.pushtx(tx)
else:
nick_to_use = self.maker_utxo_data.keys()[i]
nick_to_use = list(self.maker_utxo_data.keys())[i]
pushed = True
else:
jlog.info("Only self, random-peer and not-self broadcast "
Expand Down

0 comments on commit 564cfcb

Please sign in to comment.