Skip to content

Commit 8bda3dd

Browse files
authored
Merge branch 'main' into parallelize-post-processing-further
2 parents 5395885 + 810c975 commit 8bda3dd

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

crates/e2e/src/setup/services.rs

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
use {
22
super::TestAccount,
3-
crate::setup::{
4-
Contracts,
5-
OnchainComponents,
6-
TIMEOUT,
7-
colocation::{self, SolverEngine},
8-
wait_for_condition,
3+
crate::{
4+
nodes::NODE_WS_HOST,
5+
setup::{
6+
Contracts,
7+
OnchainComponents,
8+
TIMEOUT,
9+
colocation::{self, SolverEngine},
10+
wait_for_condition,
11+
},
912
},
1013
alloy::primitives::Address,
1114
app_data::{AppDataDocument, AppDataHash},
@@ -128,6 +131,7 @@ impl<'a> Services<'a> {
128131
"--native-price-estimators=test_quoter|http://localhost:11088/test_solver".to_string(),
129132
"--amount-to-estimate-prices-with=1000000000000000000".to_string(),
130133
"--block-stream-poll-interval=1s".to_string(),
134+
format!("--node-ws-url={NODE_WS_HOST}"),
131135
"--simulation-node-url=http://localhost:8545".to_string(),
132136
"--native-price-cache-max-age=2s".to_string(),
133137
"--native-price-prefetch-time=500ms".to_string(),

0 commit comments

Comments
 (0)