This commit is contained in:
Greg Fitzgerald 2018-06-29 17:08:55 -06:00 committed by Greg Fitzgerald
parent a9881aee05
commit 816246ebee
1 changed files with 2 additions and 1 deletions

View File

@ -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");