laconicd/scripts/start-docker.sh

12 lines
345 B
Bash
Raw Normal View History

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