We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b58bfe6 commit 503c401Copy full SHA for 503c401
crates/transaction-pool/src/maintain.rs
@@ -37,13 +37,13 @@ pub struct MaintainPoolConfig {
37
pub max_update_depth: u64,
38
/// Maximum number of accounts to reload from state at once when updating the transaction pool.
39
///
40
- /// Default: 250
+ /// Default: 100
41
pub max_reload_accounts: usize,
42
}
43
44
impl Default for MaintainPoolConfig {
45
fn default() -> Self {
46
- Self { max_update_depth: 64, max_reload_accounts: 250 }
+ Self { max_update_depth: 64, max_reload_accounts: 100 }
47
48
49
0 commit comments