Process template events at last when following subgraph events order (#439)

* Process template events at last when following subgraph events order

* Update mock test indexer
This commit is contained in:
prathamesh0
2023-10-26 12:05:29 +05:30
committed by GitHub
parent b63a93d8a0
commit 445d5a9293
7 changed files with 156 additions and 18 deletions
+1 -1
View File
@@ -95,7 +95,7 @@ export class IndexBlockCmd {
assert(indexer);
assert(database);
await indexBlock(indexer, config.jobQueue.eventsInBatch, this._argv);
await indexBlock(indexer, config.jobQueue.eventsInBatch, config.jobQueue.subgraphEventsOrder, this._argv);
await database.close();
}