Closed
Description
Subject of the issue
There are currently two issues with waitForIndexer
waitForIndexer
does not track which transactions have already been found, meaning it will waste time waiting for a transaction that is already known to be in indexerwaitForIndexer
will wait (unscessfully) for failed transactions to show up indexer
There are two potential solutions
- Use round instead of transaction ids in
waitForIndexer
(part of fix: waitForIndexer waiting for transactions that failed #358) - Pop transactions that have been found or failed (likely a separate array)