This commit is contained in:
goldsquid
2026-01-31 11:09:28 +07:00
parent 3c20aac136
commit a6e7348b40
3 changed files with 6 additions and 10 deletions

View File

@@ -51,7 +51,7 @@ for path in $pathlist; do
ref="$2"
else
if $is_aztec; then
# Aztec: resolve ref by path (mainnet/testnet)
# Aztec: resolve ref by path (mainnet/testnet/devnet)
case "$path" in
*aztec-mainnet*)
ref=$($BASEPATH/reference-rpc-endpoint.sh 418)
@@ -59,6 +59,9 @@ for path in $pathlist; do
*aztec-testnet*)
ref=$($BASEPATH/reference-rpc-endpoint.sh 11124)
;;
*aztec-devnet*)
ref=$($BASEPATH/reference-rpc-endpoint.sh 11125)
;;
*)
echo "error: unknown aztec path $path"
exit 1