2022-10-10 10:38:33 +00:00
|
|
|
#!/bin/bash
|
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-10-12 11:54:07 +00:00
|
|
|
laconicd validate-genesis --home /laconic
|
2021-05-26 10:58:04 +00:00
|
|
|
|
2022-10-10 10:38:33 +00:00
|
|
|
echo "starting ethermint node $ID in background ..."
|
2022-10-12 11:54:07 +00:00
|
|
|
laconicd start \
|
|
|
|
--home /laconic \
|
2022-10-10 10:38:33 +00:00
|
|
|
--keyring-backend test
|
2021-05-26 10:58:04 +00:00
|
|
|
|
|
|
|
echo "started ethermint node"
|
|
|
|
tail -f /dev/null
|