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

automerge
This commit is contained in:
Rob Walker
2019-07-02 14:18:11 -07:00
committed by Grimes
parent 8620d0a3b2
commit 12ef0c25b5
7 changed files with 21 additions and 21 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" \