Skip to content

Commit

Permalink
feat: add next step msg on init finish (#251)
Browse files Browse the repository at this point in the history
  • Loading branch information
scarmuega authored May 27, 2024
1 parent 5661583 commit 17450cb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/bin/dolos/init/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,11 @@ pub fn run(config: miette::Result<super::Config>, args: &Args) -> miette::Result
.confirm_values()?
.include_genesis_files()?
.save(&PathBuf::from("dolos.toml"))?;
println!("config saved to dolos.toml");

println!("\nDolos is ready!");
println!("- run `dolos daemon` to start the node");
println!("- run `dolos bootstrap` to load a Mithril snapshot");

Ok(())
}

0 comments on commit 17450cb

Please sign in to comment.