diff --git a/packages/graph-node/test/utils/indexer.ts b/packages/graph-node/test/utils/indexer.ts index 2249d4e8..359bb4d7 100644 --- a/packages/graph-node/test/utils/indexer.ts +++ b/packages/graph-node/test/utils/indexer.ts @@ -25,8 +25,8 @@ export class Indexer implements IndexerInterface { return undefined; } - async getBlock (blockHash: string): Promise { - assert(blockHash); + async getBlocks (blockFilter: { blockHash?: string, blockNumber?: number }): Promise { + assert(blockFilter); return undefined; }