laconicd/scripts/start-docker.sh

13 lines
364 B
Bash
Raw Normal View History

#!/bin/sh
2021-05-26 10:58:04 +00:00
echo "prepare genesis: Run validate-genesis to ensure everything worked and that the genesis file is setup correctly"
chibaclonkd validate-genesis --home /chibaclonk
2021-05-26 10:58:04 +00:00
echo "starting chibaclonk node $ID in background ..."
chibaclonkd start \
--home /chibaclonk \
2022-04-26 14:37:50 +00:00
--keyring-backend test \
--mode validator
2021-05-26 10:58:04 +00:00
echo "started ethermint node"
tail -f /dev/null