Skip to content

Commit ed972f3

Browse files
authored
fix: get node info from a PXE (#10420)
The CLI changed or something. We now need to use a PXE url, and specify an empty string for node-url. I filed #10419
1 parent 7ed89aa commit ed972f3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spartan/aztec-network/files/config/config-validator-env.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/bin/bash
22
set -eu
33

4-
# Pass the bootnode url as an argument
5-
# Ask the bootnode for l1 contract addresses
6-
output=$(node --no-warnings /usr/src/yarn-project/aztec/dest/bin/index.js get-node-info --node-url $1)
4+
# Pass a PXE url as an argument
5+
# Ask the PXE's node for l1 contract addresses
6+
output=$(node --no-warnings /usr/src/yarn-project/aztec/dest/bin/index.js get-node-info -u $1 --node-url '')
77

88
echo "$output"
99

0 commit comments

Comments
 (0)