Skip to content

Commit

Permalink
watcher: reduce Klaytn batch size
Browse files Browse the repository at this point in the history
  • Loading branch information
panoel committed Aug 26, 2024
1 parent b1432ad commit 320e21d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion watcher/src/watchers/EVMWatcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export class EVMWatcher extends Watcher {
this.finalizedBlockTag = finalizedBlockTag;
if (chain === 'Acala' || chain === 'Karura' || chain === 'Berachain') {
this.maximumBatchSize = 50;
} else if (chain === 'Snaxchain') {
} else if (chain === 'Snaxchain' || chain === 'Klaytn') {
this.maximumBatchSize = 10;
}
}
Expand Down

0 comments on commit 320e21d

Please sign in to comment.