Bump sync-tolerance-epoch and make it a cli param

This commit is contained in:
Pawan Dhananjay
2025-02-25 09:45:51 -08:00
parent 279afb0696
commit 0c5580f23f
3 changed files with 14 additions and 8 deletions

View File

@@ -95,6 +95,7 @@ pub struct ChainConfig {
/// This doesn't apply if the node is the block proposer.
pub blob_publication_batch_interval: Duration,
pub disable_attesting: bool,
pub sync_tolerance_epochs: u64,
}
impl Default for ChainConfig {
@@ -131,6 +132,7 @@ impl Default for ChainConfig {
blob_publication_batches: 4,
blob_publication_batch_interval: Duration::from_millis(300),
disable_attesting: false,
sync_tolerance_epochs: 16,
}
}
}