Skip to content

Commit d18e3c6

Browse files
committed
chore: update env example
1 parent 3ef4b04 commit d18e3c6

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

contracts/scripts/.env.example.holesky

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ EXISTING_DEPLOYMENT_INFO_PATH=./script/output/holesky/Holesky_current_deployment
44
DEPLOY_CONFIG_PATH=./script/deploy/config/holesky/aligned.holesky.config.json
55
OUTPUT_PATH=./script/output/holesky/alignedlayer_deployment_output.json
66
ETHERSCAN_API_KEY=<etherscan_api_key>
7+
MULTISIG=<false|true>

contracts/scripts/upgrade_aligned_contracts.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ rm -f "script/output/holesky/alignedlayer_deployment_output.temp.json"
3535

3636
data=$(cast calldata "upgrade(address, address)" $aligned_layer_service_manager $new_aligned_layer_service_manager_implementation)
3737

38-
if [ -z $MULTISIG ]; then
38+
if [ "$MULTISIG" = false ]; then
3939
proxy_admin=$(jq -r '.addresses.alignedLayerProxyAdmin' $OUTPUT_PATH)
4040
cast send $proxy_admin $data \
4141
--rpc-url $RPC_URL \

0 commit comments

Comments
 (0)