Skip to content

Commit 9767dfd

Browse files
committed
watcher: change Solana maximumBatchSize
1 parent 8c04c41 commit 9767dfd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

watcher/src/watchers/SolanaWatcher.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export class SolanaWatcher extends Watcher {
3333
// transactions returned. Since we don't know the number of transactions in advance, we use
3434
// a block range of 100K slots. Technically, batch size can be arbitrarily large since pagination
3535
// of the WH transactions within that range is handled internally below.
36-
maximumBatchSize = 100_000;
36+
maximumBatchSize = 1_000;
3737

3838
connection: Connection | undefined;
3939

0 commit comments

Comments
 (0)