Skip to content

Commit

Permalink
Fix awaitTxConfirmation()
Browse files Browse the repository at this point in the history
  • Loading branch information
bitphage committed Nov 14, 2019
1 parent 3841867 commit a83cdef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion graphenecommon/aio/blockchain.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ async def awaitTxConfirmation(self, transaction, limit=10):
transaction contented and thus identifies a transaction
uniquely.
"""
counter = 10
counter = 0
async for block in self.blocks():
counter += 1
for tx in block["transactions"]:
Expand Down

0 comments on commit a83cdef

Please sign in to comment.