Skip to content

Commit

Permalink
fix: Update hydra keys location
Browse files Browse the repository at this point in the history
  • Loading branch information
gonzalezzfelipe committed Nov 7, 2024
1 parent b52d054 commit 0466797
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 @@ -137,7 +137,7 @@ impl HydraDoomNode {
"--api-port".to_string(),
constants.port.to_string(),
"--hydra-signing-key".to_string(),
format!("{}/hydra.sk", constants.data_dir),
format!("{}/keys/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!("{}/hydra.vk", constants.data_dir),
format!("{}/keys/hydra.vk", constants.data_dir),
"--cardano-key-file".to_string(),
format!("{}/admin.sk", constants.secret_dir),
"--blockfrost-key".to_string(),
Expand Down

0 comments on commit 0466797

Please sign in to comment.