Add removeWatcher method in graph-node dummy indexer for test

This commit is contained in:
Nabarun 2024-08-05 17:55:09 +05:30 committed by Prathamesh Musale
parent 74a85039e6
commit 87ba6940ff

View File

@ -276,6 +276,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;
}