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
@@ -334,4 +334,8 @@ export class Indexer implements IndexerInterface {
async processStateCheckpoint (contractAddress: string, blockHash: string): Promise<boolean> {
return false;
}
async getFullTransactions (txHashList: string[]): Promise<EthFullTransaction[]> {
return [];
}
}