You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to simulate multiple txs in the same block.
I send txs to "mempool" consequently and finally run network-helpers.mine() to mine the block.
On the event of sending, I see logs like:
Hardhat Tracer wanted to print trace, but lastTrace is undefined.
This only works on hardhat network, if you are running your script over RPC provider then VM data is not available.
I'd like to trace txs on the mining event. How can I do it?
One way is to run debug_traceTransaction for every mined txs and then convert them to readable format. Can I use this module to do it?
The text was updated successfully, but these errors were encountered:
I'm trying to simulate multiple txs in the same block.
I send txs to "mempool" consequently and finally run network-helpers.mine() to mine the block.
On the event of sending, I see logs like:
I'd like to trace txs on the mining event. How can I do it?
One way is to run debug_traceTransaction for every mined txs and then convert them to readable format. Can I use this module to do it?
The text was updated successfully, but these errors were encountered: