Fix sync status update in historical processing job (#488)

* Fill watcher start block only in active mode

* Fix sync status update in historical processing

* Upgrade package versions

* Upgrade package versions in codegen template

* Fix graph-node test indexer
This commit is contained in:
2023-11-23 20:25:39 +05:30
committed by GitHub
parent ffd1d267d8
commit 937aed139f
21 changed files with 104 additions and 56 deletions
@@ -190,6 +190,12 @@ export class Indexer implements IndexerInterface {
return undefined;
}
async updateSyncStatus (syncStatus: SyncStatusInterface): Promise<SyncStatusInterface> {
assert(syncStatus);
return {} as SyncStatusInterface;
}
async markBlocksAsPruned (blocks: BlockProgressInterface[]): Promise<void> {
assert(blocks);