Skip to content

Commit

Permalink
fix: adjust insert batch size
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelcr committed May 15, 2024
1 parent f1f8d44 commit f45471e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pg/pg-store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import { BlockCache } from './block-cache';

export const MIGRATIONS_DIR = path.join(__dirname, '../../migrations');
const ORDINALS_GENESIS_BLOCK = 767430;
export const INSERT_BATCH_SIZE = 4000;
export const INSERT_BATCH_SIZE = 3500;

type InscriptionIdentifier = { genesis_id: string } | { number: number };

Expand Down

0 comments on commit f45471e

Please sign in to comment.