39 lines
997 B
Bash
Executable File
39 lines
997 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
# shellcheck source=multinode-demo/common.sh
|
|
source multinode-demo/common.sh
|
|
|
|
rm -rf config/run/init-completed config/ledger config/snapshot-ledger
|
|
|
|
SOLANA_RUN_SH_VALIDATOR_ARGS="--snapshot-interval-slots 200" timeout 120 ./scripts/run.sh &
|
|
pid=$!
|
|
|
|
attempts=20
|
|
while [[ ! -f config/run/init-completed ]]; do
|
|
sleep 1
|
|
if ((--attempts == 0)); then
|
|
echo "Error: validator failed to boot"
|
|
exit 1
|
|
else
|
|
echo "Checking init"
|
|
fi
|
|
done
|
|
|
|
snapshot_slot=1
|
|
|
|
# wait a bit longer than snapshot_slot
|
|
while [[ $($solana_cli --url http://localhost:8899 slot --commitment processed) -le $((snapshot_slot + 1)) ]]; do
|
|
sleep 1
|
|
echo "Checking slot"
|
|
done
|
|
|
|
$solana_validator --ledger config/ledger exit --force || true
|
|
|
|
wait $pid
|
|
|
|
$solana_ledger_tool create-snapshot --ledger config/ledger "$snapshot_slot" config/snapshot-ledger
|
|
cp config/ledger/genesis.tar.bz2 config/snapshot-ledger
|
|
$solana_ledger_tool verify --ledger config/snapshot-ledger
|