From 304e321457473b006af9f1ea76e5999d0f6b6f30 Mon Sep 17 00:00:00 2001 From: Haseeb Date: Fri, 1 Feb 2019 10:14:21 +0100 Subject: [PATCH] Added a counter to see how many transactions has been pushed. --- hammer/send.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hammer/send.py b/hammer/send.py index 7d89cc2..699345b 100755 --- a/hammer/send.py +++ b/hammer/send.py @@ -204,7 +204,7 @@ def many_transactions_consecutive(contract, numTx): txs = [] for i in range(numTx): tx = contract_set(contract, i) - print ("set() transaction submitted: ", tx) # Web3.toHex(tx)) # new web3 + print (i, " set() transaction submitted: ", tx) # Web3.toHex(tx)) # new web3 txs.append(tx) return txs