@@ -2476,17 +2476,17 @@ pub struct MinerConfig {
2476
2476
/// ```toml
2477
2477
/// [miner]
2478
2478
/// # Keys are rejection counts, values are timeouts in seconds.
2479
- /// block_rejection_timeout_steps = { 0 = 600 , 10 = 300 , 20 = 150 , 30 = 0 }
2479
+ /// block_rejection_timeout_steps = { 0 = 180 , 10 = 90 , 20 = 45 , 30 = 0 }
2480
2480
/// ```
2481
2481
/// This example means:
2482
- /// - If rejection weight is 0 <= weight < 10, wait up to 600 seconds.
2483
- /// - If rejection weight is 10 <= weight < 20, wait up to 300 seconds.
2484
- /// - If rejection weight is 20 <= weight < 30, wait up to 150 seconds.
2482
+ /// - If rejection weight is 0 <= weight < 10, wait up to 180 seconds.
2483
+ /// - If rejection weight is 10 <= weight < 20, wait up to 90 seconds.
2484
+ /// - If rejection weight is 20 <= weight < 30, wait up to 45 seconds.
2485
2485
/// - If rejection weight is >= 30, timeout immediately (0 seconds).
2486
2486
///
2487
2487
/// (Note: The actual rejection weight values depend on the specific signer set and their weights.)
2488
2488
///
2489
- /// Default: `{ 0: 600s , 10: 300s , 20: 150s , 30: 0s }`
2489
+ /// Default: `{ 0: 180s , 10: 90s , 20: 45s , 30: 0s }`
2490
2490
pub block_rejection_timeout_steps : HashMap < u32 , Duration > ,
2491
2491
/// Defines the maximum execution time (in seconds) allowed for a single contract call transaction.
2492
2492
///
0 commit comments