Skip to content

Commit cb9b3e9

Browse files
authored
fix: Add profile_name to install-subnet-chain sample command (#422)
* fix: Add profile_name to install-subnet-chain sample command Signed-off-by: Dan Sover <[email protected]> * fix: Update chain alias flags Signed-off-by: Dan Sover <[email protected]> --------- Signed-off-by: Dan Sover <[email protected]>
1 parent 361a6a6 commit cb9b3e9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

avalancheup-aws/src/apply/mod.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -2575,6 +2575,7 @@ cat /tmp/{node_id}.crt
25752575
Print(format!(
25762576
"{exec_path} install-subnet-chain \\
25772577
--log-level info \\
2578+
--profile-name <REPLACE_ME> \\
25782579
--s3-region {s3_region} \\
25792580
--s3-bucket {s3_bucket} \\
25802581
--s3-key-prefix {id}/install-subnet-chain \\
@@ -2584,7 +2585,7 @@ cat /tmp/{node_id}.crt
25842585
--subnet-validate-period-in-days 14 \\
25852586
--subnet-config-local-path /tmp/subnet-config.json \\
25862587
--subnet-config-remote-dir {subnet_config_remote_dir} \\
2587-
--vm-binary-local-path REPLACE_ME \\
2588+
--vm-binary-local-path <REPLACE_ME> \\
25882589
--vm-binary-remote-dir {vm_plugin_remote_dir} \\
25892590
--chain-name subnetevm \\
25902591
--chain-genesis-path /tmp/subnet-evm-genesis.json \\

avalancheup-aws/src/install_subnet_chain/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -959,7 +959,7 @@ pub async fn execute(opts: Flags) -> io::Result<()> {
959959
);
960960

961961
let avalanched_alias_args = format!(
962-
"alias-chain --log-level info --chain_id {chain_id} --chain_alias {alias}",
962+
"alias-chain --log-level info --chain-id {chain_id} --chain-name {alias}",
963963
chain_id = blockchain_id,
964964
alias = opts.chain_name.clone(),
965965
);

0 commit comments

Comments
 (0)