From 49396a69bf66a6b881745b74aebc6e5349b91c09 Mon Sep 17 00:00:00 2001 From: Rob Walker Date: Thu, 12 Dec 2019 17:24:30 -0800 Subject: [PATCH] remove dbg (#7459) automerge --- cli/src/vote.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/src/vote.rs b/cli/src/vote.rs index 1ea0cd1d63..d719609602 100644 --- a/cli/src/vote.rs +++ b/cli/src/vote.rs @@ -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,