remove dbg (#7459)

automerge
This commit is contained in:
Rob Walker 2019-12-12 17:24:30 -08:00 committed by Grimes
parent d94041e98d
commit 49396a69bf
1 changed files with 2 additions and 2 deletions

View File

@ -248,9 +248,9 @@ pub fn process_create_vote_account(
(&vote_account_pubkey, "vote_account_pubkey".to_string()),
)?;
let required_balance = dbg!(rpc_client
let required_balance = rpc_client
.get_minimum_balance_for_rent_exemption(VoteState::size_of())?
.max(1));
.max(1);
let vote_init = VoteInit {
node_pubkey: *identity_pubkey,