mirror of https://github.com/certusone/wasmd.git
Allow subsecond block times
This commit is contained in:
parent
10a1fef083
commit
310aa8b3dd
|
@ -10,16 +10,21 @@ MONIKER=${MONIKER:-node001}
|
|||
wasmd init --chain-id "$CHAIN_ID" "$MONIKER"
|
||||
# staking/governance token is hardcoded in config, change this
|
||||
sed -i "s/\"stake\"/\"$STAKE\"/" "$HOME"/.wasmd/config/genesis.json
|
||||
# this is essential for sub-1s block times (or header times go crazy)
|
||||
sed -i 's/"time_iota_ms": "1000"/"time_iota_ms": "10"/' "$HOME"/.wasmd/config/genesis.json
|
||||
|
||||
if ! wasmd keys show validator; then
|
||||
(echo "$PASSWORD"; echo "$PASSWORD") | wasmd keys add validator
|
||||
fi
|
||||
# hardcode the validator account for this instance
|
||||
echo "$PASSWORD" | wasmd add-genesis-account validator "1000000000$STAKE,1000000000$FEE"
|
||||
|
||||
# (optionally) add a few more genesis accounts
|
||||
for addr in "$@"; do
|
||||
echo $addr
|
||||
wasmd add-genesis-account "$addr" "1000000000$STAKE,1000000000$FEE"
|
||||
done
|
||||
|
||||
# submit a genesis validator tx
|
||||
## Workraround for https://github.com/cosmos/cosmos-sdk/issues/8251
|
||||
(echo "$PASSWORD"; echo "$PASSWORD"; echo "$PASSWORD") | wasmd gentx validator "250000000$STAKE" --chain-id="$CHAIN_ID" --amount="250000000$STAKE"
|
||||
|
|
Loading…
Reference in New Issue