Fix block processing during chain reorg (#498)

* Fix block processing during chain reorg

* Add new method in test dummy indexer

* Add missing semicolon
This commit is contained in:
2023-12-28 15:06:47 +05:30
committed by GitHub
parent 78e43bc088
commit a6deed9c27
6 changed files with 40 additions and 16 deletions
@@ -869,4 +869,8 @@ export class Indexer implements IndexerInterface {
await dbTx.release();
}
}
async getFullTransactions (txHashList: string[]): Promise<EthFullTransaction[]> {
return this._baseIndexer.getFullTransactions(txHashList);
}
}