Skip to content

Commit 503c401

Browse files
authored
chore: lower max reload accounts (paradigmxyz#5589)
1 parent b58bfe6 commit 503c401

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/transaction-pool/src/maintain.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ pub struct MaintainPoolConfig {
3737
pub max_update_depth: u64,
3838
/// Maximum number of accounts to reload from state at once when updating the transaction pool.
3939
///
40-
/// Default: 250
40+
/// Default: 100
4141
pub max_reload_accounts: usize,
4242
}
4343

4444
impl Default for MaintainPoolConfig {
4545
fn default() -> Self {
46-
Self { max_update_depth: 64, max_reload_accounts: 250 }
46+
Self { max_update_depth: 64, max_reload_accounts: 100 }
4747
}
4848
}
4949

0 commit comments

Comments
 (0)