Remove println in solana balance command (#7380)

automerge
This commit is contained in:
Justin Starry 2019-12-09 11:03:30 -08:00 committed by Grimes
parent bee3829960
commit 7a37363817
1 changed files with 0 additions and 2 deletions

View File

@ -637,8 +637,6 @@ fn process_balance(
use_lamports_unit: bool,
) -> ProcessResult {
let pubkey = pubkey.unwrap_or(config.keypair.pubkey());
let string = solana_stake_program::id().to_string();
println!("{:}", string);
let balance = rpc_client.retry_get_balance(&pubkey, 5)?;
match balance {
Some(lamports) => Ok(build_balance_message(lamports, use_lamports_unit, true)),