Skip to content

Commit

Permalink
fix: Keys creation path
Browse files Browse the repository at this point in the history
  • Loading branch information
gonzalezzfelipe committed Nov 7, 2024
1 parent 6d956c7 commit 90eb6e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/custom_resource.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ impl HydraDoomNode {
"--ledger-protocol-parameters".to_string(),
format!("{}/protocol-parameters.json", constants.config_dir),
"--persistence-dir".to_string(),
format!("{}/hydra-state", constants.persistence_dir),
constants.persistence_dir.clone(),
];

let main_container_args = if self.spec.offline.unwrap_or(false) {
Expand Down Expand Up @@ -331,7 +331,7 @@ impl HydraDoomNode {
args: Some(vec![
"gen-hydra-key".to_string(),
"--output-file".to_string(),
format!("{}/hydra", constants.data_dir),
format!("{}/keys/hydra", constants.data_dir),
]),
volume_mounts: Some(vec![VolumeMount {
name: "data".to_string(),
Expand Down

0 comments on commit 90eb6e4

Please sign in to comment.