CLI cosmetic: make config get and verbose prints consistent (#8119)

* CLI cosmetic: make config get and verbose prints consistent

* Make print format consistent across cli
This commit is contained in:
Tyera Eulberg
2020-02-05 11:14:44 -07:00
committed by GitHub
parent e21f5c784e
commit 3db159f616
10 changed files with 70 additions and 51 deletions

View File

@@ -251,7 +251,7 @@ pub fn process_show_storage_account(
CliError::RpcRequestError(format!("Unable to deserialize storage account: {:?}", err))
})?;
println!("{:#?}", storage_contract);
println!("account lamports: {}", account.lamports);
println!("Account Lamports: {}", account.lamports);
Ok("".to_string())
}