Fix local testnet to generate keys in the correct folders (#4752)

Fix local testnet to generate keys in the correct folders when `BN_COUNT` and `VC_COUNT` don't match.

The current script place the generated validator keys in validator folders based on the `BN_COUNT` config, e.g. `node_1/validators`, `node_2/validators`..etc. We should be using `VC_COUNT` here instead, otherwise the number of validator clients may not match the number of directories generated, and would result in either:
1. a VC not having any keys  (when `BN_COUNT` < `VC_COUNT`)
2. a validator key directory not being used (when `BN_COUNT` > `VC_COUNT`).
This commit is contained in:
Jimmy Chen 2023-09-21 00:26:56 +00:00
parent f9a3c00518
commit fe3bd03234

View File

@ -46,6 +46,6 @@ lcli \
insecure-validators \ insecure-validators \
--count $VALIDATOR_COUNT \ --count $VALIDATOR_COUNT \
--base-dir $DATADIR \ --base-dir $DATADIR \
--node-count $BN_COUNT --node-count $VC_COUNT
echo Validators generated with keystore passwords at $DATADIR. echo Validators generated with keystore passwords at $DATADIR.