Add dummy methods in graph-node test Indexer

This commit is contained in:
Nabarun 2024-06-20 17:12:42 +05:30
parent 157975da40
commit 4401bd06af

View File

@ -340,7 +340,11 @@ export class Indexer implements IndexerInterface {
return []; return [];
} }
switchClients ({ ethClient, ethProvider }: { ethClient: EthClient, ethProvider: providers.BaseProvider }): void { async switchClients (): Promise<void> {
return undefined; return undefined;
} }
async isGetLogsRequestsSlow (): Promise<boolean> {
return false;
}
} }