2022-04-05 15:30:20 +00:00
|
|
|
#!/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"
|
2022-09-07 07:26:51 +00:00
|
|
|
laconicd validate-genesis --home /laconic
|
2021-05-26 10:58:04 +00:00
|
|
|
|
2022-09-07 07:26:51 +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
|