change vote commission to u8 (from u32) (#4887) (#4918)

automerge
This commit is contained in:
mergify[bot]
2019-07-02 14:52:53 -07:00
committed by Grimes
parent 3c0b03ba84
commit 4779625f23
7 changed files with 271 additions and 20 deletions

View File

@@ -94,7 +94,7 @@ setup_validator_accounts() {
# Fund the vote account from the node, with the node as the identity_pubkey
$solana_wallet --keypair "$identity_keypair_path" --url "http://$entrypoint_ip:8899" \
create-vote-account "$vote_pubkey" "$identity_pubkey" 1 --commission 65535 || return $?
create-vote-account "$vote_pubkey" "$identity_pubkey" 1 --commission 255 || return $?
# Fund the stake account from the node, with the node as the identity_pubkey
$solana_wallet --keypair "$identity_keypair_path" --url "http://$entrypoint_ip:8899" \