laconicd/scripts/start-docker.sh

13 lines
349 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"
laconicd validate-genesis --home /laconic
2021-05-26 10:58:04 +00:00
echo "starting laconic node $ID in background ..."
laconicd start \
--home /laconic \
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