2019-11-15 22:56:29 -08:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
|
|
|
|
cd "$(dirname "$0")/.."
|
2020-05-24 08:27:36 -07:00
|
|
|
# shellcheck source=multinode-demo/common.sh
|
|
|
|
source multinode-demo/common.sh
|
2019-11-15 22:56:29 -08:00
|
|
|
|
2020-05-24 08:27:36 -07:00
|
|
|
rm -rf config/run/init-completed config/ledger config/snapshot-ledger
|
2019-11-15 22:56:29 -08:00
|
|
|
|
2020-07-24 11:03:04 -07:00
|
|
|
timeout 120 ./run.sh &
|
2019-11-15 22:56:29 -08:00
|
|
|
pid=$!
|
|
|
|
|
2019-11-25 15:11:55 -08:00
|
|
|
attempts=20
|
2019-11-15 22:56:29 -08:00
|
|
|
while [[ ! -f config/run/init-completed ]]; do
|
|
|
|
sleep 1
|
|
|
|
if ((--attempts == 0)); then
|
|
|
|
echo "Error: validator failed to boot"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2020-06-24 20:48:28 -07:00
|
|
|
snapshot_slot=1
|
|
|
|
|
|
|
|
# wait a bit longer than snapshot_slot
|
|
|
|
while [[ $($solana_cli --url http://localhost:8899 slot --commitment recent) -le $((snapshot_slot + 1)) ]]; do
|
2020-05-26 16:20:28 -07:00
|
|
|
sleep 1
|
|
|
|
done
|
2019-11-15 22:56:29 -08:00
|
|
|
curl -X POST -H 'Content-Type: application/json' -d '{"jsonrpc":"2.0","id":1, "method":"validatorExit"}' http://localhost:8899
|
|
|
|
|
|
|
|
wait $pid
|
2020-05-24 08:27:36 -07:00
|
|
|
|
2020-06-24 20:48:28 -07:00
|
|
|
$solana_ledger_tool create-snapshot --ledger config/ledger "$snapshot_slot" config/snapshot-ledger
|
2020-05-24 08:27:36 -07:00
|
|
|
cp config/ledger/genesis.tar.bz2 config/snapshot-ledger
|
|
|
|
$solana_ledger_tool verify --ledger config/snapshot-ledger
|