Skip to content

Commit e1d9621

Browse files
committed
fix upgrade test
1 parent c03101f commit e1d9621

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.env-sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
L1_RPC_URL="http://localhost:8545"
1+
L1_RPC_URL="http://127.0.0.1:8545"
22
L1_PRIV_KEY="0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80"
33
CONFIG_NETWORK_NAME="arb1"
44
DEPLOYED_CONTRACTS_DIR="./scripts/files/"

scripts/testUpgrade.bash

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
set -e
2+
33
anvil --fork-url $L1_RPC > /dev/null &
44

55
anvil_pid=$!
@@ -8,4 +8,8 @@ yarn script:bold-prepare && \
88
yarn script:bold-populate-lookup && \
99
yarn script:bold-local-execute
1010

11+
ecode=$?
12+
1113
kill $anvil_pid
14+
15+
exit $ecode

0 commit comments

Comments
 (0)