From a0bbcb30c6c07165fba4b81d624aedf0e21e2b0b Mon Sep 17 00:00:00 2001 From: Mitch Date: Thu, 5 Dec 2024 09:16:45 -0500 Subject: [PATCH] fix: get node info from a PXE --- spartan/aztec-network/files/config/config-validator-env.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spartan/aztec-network/files/config/config-validator-env.sh b/spartan/aztec-network/files/config/config-validator-env.sh index 6483168f16d..03718cfc36d 100644 --- a/spartan/aztec-network/files/config/config-validator-env.sh +++ b/spartan/aztec-network/files/config/config-validator-env.sh @@ -1,9 +1,9 @@ #!/bin/bash set -eu -# Pass the bootnode url as an argument -# Ask the bootnode for l1 contract addresses -output=$(node --no-warnings /usr/src/yarn-project/aztec/dest/bin/index.js get-node-info --node-url $1) +# Pass a PXE url as an argument +# Ask the PXE's node for l1 contract addresses +output=$(node --no-warnings /usr/src/yarn-project/aztec/dest/bin/index.js get-node-info -u $1 --node-url '') echo "$output"