Change default epochs-per-state-diff to 16

This should make replaying diffs during non-finality a bit quicker.
This commit is contained in:
Michael Sproul
2023-09-13 13:56:53 +10:00
parent 838e104b25
commit 68f80cc862
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ use ssz_derive::{Decode, Encode};
use std::io::Write;
use zstd::Encoder;
pub const DEFAULT_EPOCHS_PER_STATE_DIFF: u64 = 4;
pub const DEFAULT_EPOCHS_PER_STATE_DIFF: u64 = 16;
pub const DEFAULT_BLOCK_CACHE_SIZE: usize = 64;
pub const DEFAULT_STATE_CACHE_SIZE: usize = 128;
pub const DEFAULT_COMPRESSION_LEVEL: i32 = 1;