Skip to content

Commit 1ef008a

Browse files
fix: FILTER_REQUEST_BATCH_SIZE should be 1000, not 100.
1 parent 1439955 commit 1ef008a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dash-spv/src/sync/filters/types.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ pub const SYNC_TIMEOUT_SECONDS: u64 = 5;
2020
pub const DEFAULT_FILTER_SYNC_RANGE: u32 = 100;
2121

2222
/// Batch size for compact filter requests (CFilters).
23-
pub const FILTER_REQUEST_BATCH_SIZE: u32 = 100;
23+
pub const FILTER_REQUEST_BATCH_SIZE: u32 = 1000;
2424

2525
/// Maximum filters per CFilter request (Dash Core limit).
2626
pub const MAX_FILTER_REQUEST_SIZE: u32 = 1000;

0 commit comments

Comments
 (0)