There was an error while loading. Please reload this page.
1 parent b646ad0 commit 7533b4fCopy full SHA for 7533b4f
1 file changed
packages/indexer-common/src/indexing-fees/dips.ts
@@ -1010,7 +1010,10 @@ export class DipsManager {
1010
)
1011
}
1012
const networkAlias = chain.network
1013
- const recentBlock = Math.max(Number(chain.latestBlock.number) - RECENT_BLOCK_OFFSET, 0)
+ const recentBlock = Math.max(
1014
+ Number(chain.latestBlock.number) - RECENT_BLOCK_OFFSET,
1015
+ 0,
1016
+ )
1017
const blockHash = await this.graphNode.blockHashFromNumber(networkAlias, recentBlock)
1018
const poi = await this.graphNode.proofOfIndexing(
1019
deploymentId,
0 commit comments