From 6e51babff98175048ebf82b99e7385858c7f7228 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Wed, 3 Jul 2019 14:18:08 -0700 Subject: [PATCH] Reduce default commission from 100% to 50% (#4929) --- multinode-demo/fullnode.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/multinode-demo/fullnode.sh b/multinode-demo/fullnode.sh index 863969b772..3bc8bd0fc3 100755 --- a/multinode-demo/fullnode.sh +++ b/multinode-demo/fullnode.sh @@ -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 255 || return $? + create-vote-account "$vote_pubkey" "$identity_pubkey" 1 --commission 127 || 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" \