aboutsummaryrefslogtreecommitdiffstats
path: root/packages/pipeline/src/scripts
diff options
context:
space:
mode:
authorAlex Browne <stephenalexbrowne@gmail.com>2018-11-15 07:58:36 +0800
committerFred Carlsen <fred@sjelfull.no>2018-12-06 19:04:25 +0800
commit8cb6c2b51ba7c63951f4b87fac423a19861bf47f (patch)
treee7151a082fe7c5262a53e4408832c61cfeeb82a8 /packages/pipeline/src/scripts
parent1f87bd8cf68d756931f80d39dcdb4d66f76d8e8c (diff)
downloaddexon-0x-contracts-8cb6c2b51ba7c63951f4b87fac423a19861bf47f.tar.gz
dexon-0x-contracts-8cb6c2b51ba7c63951f4b87fac423a19861bf47f.tar.zst
dexon-0x-contracts-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.ts2
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;