Skip to content

Commit

Permalink
fix(app): reduce batch size of migration (#995)
Browse files Browse the repository at this point in the history
  • Loading branch information
LeifuChen authored Sep 21, 2023
1 parent 330feac commit f35bfcc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/app/src/sections/dashboard/Stake/MigrationSteps.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ import media from 'styles/media'

import { StakingHeading } from './StakingHeading'

const REGISTER_BATCH_SIZE = 500
const VEST_BATCH_SIZE = 2000
const MIGRATE_BATCH_SIZE = 175
const REGISTER_BATCH_SIZE = 250
const VEST_BATCH_SIZE = 1000
const MIGRATE_BATCH_SIZE = 90

const MigrationSteps = memo(() => {
const { t } = useTranslation()
Expand Down

0 comments on commit f35bfcc

Please sign in to comment.