Skip to content

Commit

Permalink
Remove println in solana balance command (#7380)
Browse files Browse the repository at this point in the history
automerge
  • Loading branch information
jstarry authored and solana-grimes committed Dec 9, 2019
1 parent bee3829 commit 7a37363
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions cli/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)),
Expand Down

0 comments on commit 7a37363

Please sign in to comment.