Skip to content

Commit 5f5be43

Browse files
committed
test: removed aggregator endpoint from method
1 parent 8a2b942 commit 5f5be43

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

crates/tap-agent/src/test.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,6 @@ pub async fn create_sender_account(
176176
#[bon::builder]
177177
pub async fn create_sender_accounts_manager(
178178
pgpool: PgPool,
179-
aggregator_endpoint: Option<Url>,
180179
network_subgraph: Option<&str>,
181180
escrow_subgraph: Option<&str>,
182181
) -> (
@@ -223,10 +222,7 @@ pub async fn create_sender_accounts_manager(
223222
escrow_subgraph,
224223
network_subgraph,
225224
sender_aggregator_endpoints: HashMap::from([
226-
(
227-
SENDER.1,
228-
aggregator_endpoint.unwrap_or(Url::parse(&get_grpc_url().await).unwrap()),
229-
),
225+
(SENDER.1, Url::parse(&get_grpc_url().await).unwrap()),
230226
(SENDER_2.1, Url::parse("http://localhost:8000").unwrap()),
231227
]),
232228
prefix: Some(prefix.clone()),

0 commit comments

Comments
 (0)