How to Change Number of Validators from 180 to 360? #17203
-
I am learning tendermint and Cosmos SDK. If I want to change the number of validators from 180 (which is the default value) to 360 or any number I want, how can I do it? |
Beta Was this translation helpful? Give feedback.
Answered by
atheeshp
Jul 31, 2023
Replies: 1 comment
-
case 1: (Before starting the chain) You can edit the case 2: (on an already running chain) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
facundomedica
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
case 1: (Before starting the chain)
You can edit the
genesis.json
, after running theinit
command agenesis.json
file will be created under$Home/.simapp/config
directory. Just change themax_validators
param under staking module to the number that you want.case 2: (on an already running chain)
You have to execute the param change proposal (check the docs for ref).