Skip to content

Commit

Permalink
Ensure that there are no quotes or anything around substitution
Browse files Browse the repository at this point in the history
  • Loading branch information
ryardley committed Dec 10, 2024
1 parent ae146a2 commit 20064f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ciphernode/config/src/app_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ chains:
let home = format!("{}", jail.directory().to_string_lossy());
jail.set_env("HOME", &home);
jail.set_env("XDG_CONFIG_HOME", &format!("{}/.config", home));
jail.set_env("TEST_RPC_URL", "ws://test-endpoint:8545");
jail.set_env("TEST_RPC_URL_PORT", "8545");
jail.set_env("TEST_USERNAME", "envUser");
jail.set_env("TEST_PASSWORD", "envPassword");
jail.set_env(
Expand All @@ -458,7 +458,7 @@ chains:
r#"
chains:
- name: "hardhat"
rpc_url: "${TEST_RPC_URL}"
rpc_url: "ws://test-endpoint:${TEST_RPC_URL_PORT}"
rpc_auth:
type: "Basic"
credentials:
Expand Down

0 comments on commit 20064f7

Please sign in to comment.