Skip to content

Commit c25f112

Browse files
committed
Merge remote-tracking branch 'origin/515-chore-add-multisig-support-to-upgrade-servicemanager' into 515-chore-add-multisig-support-to-upgrade-servicemanager
2 parents 666767b + 9f17a94 commit c25f112

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README_INFRASTRUCTURE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -808,7 +808,7 @@ make upgrade_aligned_contracts
808808
Then, if the new implementation is correctly deployed, the script will show the following message:
809809

810810
```bash
811-
To send the transaction using multisig use this calldata
811+
You can propose the upgrade transaction with the multisig using this calldata
812812
<calldata>
813813
```
814814

contracts/scripts/upgrade_aligned_contracts.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,12 @@ rm -f "script/output/holesky/alignedlayer_deployment_output.temp.json"
3636
data=$(cast calldata "upgrade(address, address)" $aligned_layer_service_manager $new_aligned_layer_service_manager_implementation)
3737

3838
if [ "$MULTISIG" = false ]; then
39+
echo "Executing upgrade transaction"
3940
proxy_admin=$(jq -r '.addresses.alignedLayerProxyAdmin' $OUTPUT_PATH)
4041
cast send $proxy_admin $data \
4142
--rpc-url $RPC_URL \
4243
--private-key $PRIVATE_KEY
4344
else
44-
echo "To send the transaction using multisig use this calldata"
45+
echo "You can propose the upgrade transaction with the multisig using this calldata"
4546
echo $data
4647
fi

0 commit comments

Comments
 (0)