2025-12-12 14:57:48 -08:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
2026-04-13 21:45:16 -07:00
|
|
|
set -euo pipefail
|
2025-12-12 14:57:48 -08:00
|
|
|
|
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
|
source "$SCRIPT_DIR/../lib/init.sh"
|
|
|
|
|
|
2026-04-13 21:45:16 -07:00
|
|
|
TARGET_SCRIPT="$SCRIPT_DIR/generate-genesis-proper.sh"
|
2025-12-12 14:57:48 -08:00
|
|
|
|
2026-04-13 21:45:16 -07:00
|
|
|
log_warn "scripts/generate-genesis.sh is now a compatibility wrapper."
|
|
|
|
|
log_warn "Forwarding to the canonical QBFT generator: ./scripts/generate-genesis-proper.sh ${1:-4}"
|
2025-12-12 14:57:48 -08:00
|
|
|
|
2026-04-13 21:45:16 -07:00
|
|
|
exec "$TARGET_SCRIPT" "$@"
|