Set bootstrap leader and net/ validator vote account commission to 100% (#7810)

automerge
This commit is contained in:
mergify[bot]
2020-01-15 00:25:10 -08:00
committed by Grimes
parent fa551e5fc1
commit 214aba6d2f
2 changed files with 2 additions and 2 deletions

View File

@ -385,7 +385,7 @@ fn main() -> Result<(), Box<dyn error::Error>> {
let bootstrap_leader_vote_account = vote_state::create_account(
&bootstrap_vote_pubkey,
&bootstrap_leader_pubkey,
0,
100,
VoteState::get_rent_exempt_reserve(&rent).max(1),
);

View File

@ -257,7 +257,7 @@ setup_validator_accounts() {
fi
echo "Creating validator vote account"
wallet create-vote-account "$voting_keypair_path" "$identity_keypair_path" --commission 50 || return $?
wallet create-vote-account "$voting_keypair_path" "$identity_keypair_path" || return $?
fi
echo "Validator vote account configured"