placeholder contact form url (#334)

* placeholder contact form url

* Gateway URL update

* Mixnode url update
This commit is contained in:
Jędrzej Stuczyński
2020-09-10 14:08:48 +01:00
committed by GitHub
parent b487126f5f
commit 6aada422ec
2 changed files with 22 additions and 2 deletions
+11 -1
View File
@@ -74,6 +74,14 @@ pub fn command_args<'a, 'b>() -> clap::App<'a, 'b> {
)
}
fn show_incentives_url() {
println!("\n##### NOTE #####");
println!(
"\nIf you would like to join our testnet incentives program, please visit https://nymtech.net/incentives"
);
println!("\n\n");
}
pub fn execute(matches: &ArgMatches) {
let id = matches.value_of("id").unwrap();
println!("Initialising mixnode {}...", id);
@@ -102,5 +110,7 @@ pub fn execute(matches: &ArgMatches) {
.expect("Failed to save the config file");
println!("Saved configuration file to {:?}", config_save_location);
println!("Mixnode configuration completed.\n\n\n")
println!("Mixnode configuration completed.\n\n\n");
show_incentives_url();
}