diff options
author | Alex Browne <stephenalexbrowne@gmail.com> | 2018-11-15 07:58:36 +0800 |
---|---|---|
committer | Fred Carlsen <fred@sjelfull.no> | 2018-12-06 19:04:25 +0800 |
commit | 8cb6c2b51ba7c63951f4b87fac423a19861bf47f (patch) | |
tree | e7151a082fe7c5262a53e4408832c61cfeeb82a8 /packages/pipeline/src/scripts | |
parent | 1f87bd8cf68d756931f80d39dcdb4d66f76d8e8c (diff) | |
download | dexon-sol-tools-8cb6c2b51ba7c63951f4b87fac423a19861bf47f.tar dexon-sol-tools-8cb6c2b51ba7c63951f4b87fac423a19861bf47f.tar.gz dexon-sol-tools-8cb6c2b51ba7c63951f4b87fac423a19861bf47f.tar.bz2 dexon-sol-tools-8cb6c2b51ba7c63951f4b87fac423a19861bf47f.tar.lz dexon-sol-tools-8cb6c2b51ba7c63951f4b87fac423a19861bf47f.tar.xz dexon-sol-tools-8cb6c2b51ba7c63951f4b87fac423a19861bf47f.tar.zst dexon-sol-tools-8cb6c2b51ba7c63951f4b87fac423a19861bf47f.zip |
Change some column types from varchar to numeric
Diffstat (limited to 'packages/pipeline/src/scripts')
-rw-r--r-- | packages/pipeline/src/scripts/pull_missing_events.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/pipeline/src/scripts/pull_missing_events.ts b/packages/pipeline/src/scripts/pull_missing_events.ts index 0af999a77..1693bb59a 100644 --- a/packages/pipeline/src/scripts/pull_missing_events.ts +++ b/packages/pipeline/src/scripts/pull_missing_events.ts @@ -13,7 +13,7 @@ import { handleError } from '../utils'; const EXCHANGE_START_BLOCK = 6271590; // Block number when the Exchange contract was deployed to mainnet. const START_BLOCK_OFFSET = 1000; // Number of blocks before the last known block to consider when updating fill events. -const BATCH_SAVE_SIZE = 1000; // Number of events to save at once. +const BATCH_SAVE_SIZE = 10000; // Number of events to save at once. let connection: Connection; |