Skip to content

Commit

Permalink
fix: Key gen path
Browse files Browse the repository at this point in the history
  • Loading branch information
gonzalezzfelipe committed Nov 7, 2024
1 parent e41ccca commit a01a05f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/custom_resource.rs
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ impl HydraDoomNode {
"--api-port".to_string(),
constants.port.to_string(),
"--hydra-signing-key".to_string(),
format!("{}/keys/hydra.sk", constants.data_dir),
format!("{}/hydra.sk", constants.data_dir),
"--ledger-protocol-parameters".to_string(),
format!("{}/protocol-parameters.json", constants.config_dir),
"--persistence-dir".to_string(),
Expand Down Expand Up @@ -245,7 +245,7 @@ impl HydraDoomNode {
"--participant".to_string(),
config.admin_addr.clone(),
"--party-verification-file".to_string(),
format!("{}/keys/hydra.vk", constants.data_dir),
format!("{}/hydra.vk", constants.data_dir),
"--cardano-key-file".to_string(),
format!("{}/admin.sk", constants.secret_dir),
"--blockfrost-key".to_string(),
Expand Down Expand Up @@ -331,7 +331,7 @@ impl HydraDoomNode {
args: Some(vec![
"gen-hydra-key".to_string(),
"--output-file".to_string(),
format!("{}/keys/hydra", constants.data_dir),
format!("{}/hydra", constants.data_dir),
]),
volume_mounts: Some(vec![VolumeMount {
name: "data".to_string(),
Expand Down

0 comments on commit a01a05f

Please sign in to comment.