Skip to content

Commit

Permalink
path fix (#3175)
Browse files Browse the repository at this point in the history
  • Loading branch information
kziemianek authored Nov 13, 2024
1 parent af72747 commit 9673280
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tee-worker/omni-executor/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
depends_on:
- ethereum-node
- litentry-node
command: ["executor-worker", "ws://litentry-node:9944", "http://ethereum-node:8545"]
command: ["executor-worker", "ws://litentry-node:9944", "http://ethereum-node:8545", "0"]
restart: always
ethereum-node:
image: ghcr.io/foundry-rs/foundry
Expand Down
2 changes: 1 addition & 1 deletion tee-worker/omni-executor/parentchain/listener/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ pub async fn create_listener<EthereumIntentExecutorT: IntentExecutor + Send + Sy

let metadata_provider =
Arc::new(SubxtMetadataProvider::new(SubxtClientFactory::new(ws_rpc_endpoint)));
let key_store = Arc::new(SubstrateKeyStore::new("/data/parentchain_key.bin".to_string()));
let key_store = Arc::new(SubstrateKeyStore::new("data/parentchain_key.bin".to_string()));
let secret_key_bytes = key_store
.read()
.map_err(|e| {
Expand Down

0 comments on commit 9673280

Please sign in to comment.