Skip to content

Commit 1b72751

Browse files
fix: increase L2 log fetch batch size from 2k to 50k blocks
Co-Authored-By: Frankenstein <[email protected]>
1 parent 7436bd0 commit 1b72751

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/uni-v4-upkeeper/src/l2/update_provider.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ where
308308
let mut filters = vec![];
309309

310310
loop {
311-
let this_end_block = std::cmp::min(deploy_block + 2_000, end_block);
311+
let this_end_block = std::cmp::min(deploy_block + 50_000, end_block);
312312

313313
if this_end_block == deploy_block {
314314
break;

0 commit comments

Comments
 (0)