Skip to content

Commit

Permalink
file_name (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
hansieodendaal authored Aug 13, 2024
1 parent 82697b0 commit 8dfade1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,11 @@ pub async fn tui_main(cli: &Cli) -> Result<(), Box<dyn std::error::Error>> {
println!("Pre-mine schedule saved to: '{}'", csv_file_name);
println!(
"Please send '{}' to leader for step 2",
get_file_name(STEP_1_LEADER, Some(args.alias.clone()))
if args.fail_safe_wallet {
get_file_name(STEP_1_FAIL_SAFE_LEADER, Some(args.alias.clone()))
} else {
get_file_name(STEP_1_LEADER, Some(args.alias.clone()))
}
);
println!();
},
Expand Down

0 comments on commit 8dfade1

Please sign in to comment.