Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-savu committed Oct 17, 2023
1 parent ad5b7f3 commit 195b41e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rust/utils/run-locally/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ fn main() -> ExitCode {

// let solana_checkpoint_path = Path::new(SOLANA_CHECKPOINT_LOCATION);
// fs::remove_dir_all(solana_checkpoint_path).unwrap_or_default();
let checkpoints_dirs: Vec<DynPath> = (0..VALIDATOR_COUNT - 1)
let checkpoints_dirs: Vec<DynPath> = (0..VALIDATOR_COUNT)
.map(|_| Box::new(tempdir().unwrap()) as DynPath)
// .chain([Box::new(solana_checkpoint_path) as DynPath])
.collect();
Expand Down Expand Up @@ -264,7 +264,7 @@ fn main() -> ExitCode {
.join(", ")
);
log!("Relayer DB in {}", relayer_db.display());
(0..3).for_each(|i| {
(0..VALIDATOR_COUNT).for_each(|i| {
log!("Validator {} DB in {}", i + 1, validator_dbs[i].display());
});

Expand Down

0 comments on commit 195b41e

Please sign in to comment.