Skip to content

Commit 9f17a94

Browse files
JuArcetaturosati
andauthored
fix: apply suggestions from code review
Co-authored-by: Tatu <[email protected]>
1 parent e918943 commit 9f17a94

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
@@ -805,7 +805,7 @@ make upgrade_aligned_contracts
805805
Then, if the new implementation is correctly deployed, the script will show the following message:
806806

807807
```bash
808-
To send the transaction using multisig use this calldata
808+
You can propose the upgrade transaction with the multisig using this calldata
809809
<calldata>
810810
```
811811

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)