Skip to content

Commit

Permalink
increased snapshots max and freq
Browse files Browse the repository at this point in the history
  • Loading branch information
ogabrielides committed Jan 15, 2025
1 parent cacdc8c commit c686f27
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/rs-drive-abci/src/abci/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,26 +92,26 @@ impl StateSyncAbciConfig {
Self {
snapshots_enabled: true,
checkpoints_path: PathBuf::from("/var/lib/dash-platform/data/checkpoints"),
snapshots_frequency: 3,
max_num_snapshots: 10,
snapshots_frequency: 10,
max_num_snapshots: 100,
}
}

pub fn default_testnet() -> Self {
Self {
snapshots_enabled: true,
checkpoints_path: PathBuf::from("/var/lib/dash-platform/data/checkpoints"),
snapshots_frequency: 3,
max_num_snapshots: 10,
snapshots_frequency: 10,
max_num_snapshots: 100,
}
}

pub fn default_mainnet() -> Self {
Self {
snapshots_enabled: true,
checkpoints_path: PathBuf::from("/var/lib/dash-platform/data/checkpoints"),
snapshots_frequency: 3,
max_num_snapshots: 10,
snapshots_frequency: 10,
max_num_snapshots: 100,
}
}

Expand Down

0 comments on commit c686f27

Please sign in to comment.