Skip to content

Commit 630ad79

Browse files
authored
Fix typo for env vars (#3538)
* fix typo * remove deprecated env_config
1 parent 89366f2 commit 630ad79

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tee-worker/omni-executor/config-loader/src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ impl ConfigLoader {
146146
(
147147
"ethereum_url",
148148
EnvVar {
149-
env_key: "OE_ETHERUM_URL",
149+
env_key: "OE_ETHEREUM_URL",
150150
default: DEFAULT_ETHEREUM_URL,
151151
sensitive: false,
152152
optional: false,

tee-worker/omni-executor/docker/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ services:
1414
- RUST_LOG=${RUST_LOG:-debug}
1515
# RPC URLs moved from CLI args to environment variables (see commit 8803b7dd)
1616
- OE_PARENTCHAIN_URL=ws://heima-node:9944
17-
- OE_ETHERUM_URL=http://ethereum-node:8545
17+
- OE_ETHEREUM_URL=http://ethereum-node:8545
1818
- OE_SOLANA_URL=https://api.devnet.solana.com
1919
- OE_PUMPX_WORKER_URL=ws://omni-executor:2100
2020
# These should be set in the .env file or overridden as needed:

0 commit comments

Comments
 (0)