Reduce number of blocks per query in pull_missing_events

This commit is contained in:
Alex Browne
2018-11-27 12:38:44 -08:00
parent 1aa3f9d69f
commit 96fdb9b766

View File

@@ -12,7 +12,7 @@ import { Web3Wrapper } from '@0x/web3-wrapper';
import { LogWithDecodedArgs } from 'ethereum-types';
const BLOCK_FINALITY_THRESHOLD = 10; // When to consider blocks as final. Used to compute default toBlock.
const NUM_BLOCKS_PER_QUERY = 100000; // Number of blocks to query for events at a time.
const NUM_BLOCKS_PER_QUERY = 20000; // Number of blocks to query for events at a time.
const EXCHANGE_START_BLOCK = 6271590; // Block number when the Exchange contract was deployed to mainnet.
export class ExchangeEventsSource {