We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c03101f commit e1d9621Copy full SHA for e1d9621
.env-sample
@@ -1,4 +1,4 @@
1
-L1_RPC_URL="http://localhost:8545"
+L1_RPC_URL="http://127.0.0.1:8545"
2
L1_PRIV_KEY="0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80"
3
CONFIG_NETWORK_NAME="arb1"
4
DEPLOYED_CONTRACTS_DIR="./scripts/files/"
scripts/testUpgrade.bash
@@ -1,5 +1,5 @@
#!/bin/bash
-set -e
+
anvil --fork-url $L1_RPC > /dev/null &
5
anvil_pid=$!
@@ -8,4 +8,8 @@ yarn script:bold-prepare && \
8
yarn script:bold-populate-lookup && \
9
yarn script:bold-local-execute
10
11
+ecode=$?
12
13
kill $anvil_pid
14
15
+exit $ecode
0 commit comments