Add removeWatcher method in graph-node dummy indexer for test

This commit is contained in:
Nabarun 2024-08-05 17:55:09 +05:30
parent 80e53845b3
commit bf1473d203

View File

@ -264,6 +264,10 @@ export class Indexer implements IndexerInterface {
return undefined;
}
async removeContract (address: string, kind: string): Promise<void> {
return undefined;
}
async processBlock (blockProgress: BlockProgressInterface): Promise<void> {
return undefined;
}