diff --git a/src/bin/wallet.rs b/src/bin/wallet.rs index 2053e12886..19ce3493a3 100644 --- a/src/bin/wallet.rs +++ b/src/bin/wallet.rs @@ -25,9 +25,9 @@ use std::thread::sleep; use std::time::Duration; enum WalletCommand { + Address, Balance, AirDrop, - Address, Pay(i64, PublicKey), Confirm(Signature), } @@ -233,6 +233,7 @@ fn process_command( fn display_actions() { println!(""); println!("Commands:"); + println!(" address Get your public key"); println!(" balance Get your account balance"); println!(" airdrop Request a batch of tokens"); println!(" pay Spend your tokens as fast as possible");