@@ -67,7 +67,7 @@ async fn test_end_to_end_reconfiguration(config: LocalNetConfig) -> Result<()> {
6767 . await ?;
6868
6969 let mut faucet_service = faucet_client
70- . run_faucet ( None , faucet_chain, Amount :: from_tokens ( 2 ) )
70+ . run_faucet ( None , Some ( faucet_chain) , Amount :: from_tokens ( 2 ) )
7171 . await ?;
7272
7373 faucet_service. ensure_is_running ( ) ?;
@@ -284,7 +284,7 @@ async fn test_end_to_end_receipt_of_old_create_committee_messages(
284284
285285 if matches ! ( network, Network :: Grpc ) {
286286 let mut faucet_service = faucet_client
287- . run_faucet ( None , faucet_chain, Amount :: from_tokens ( 2 ) )
287+ . run_faucet ( None , Some ( faucet_chain) , Amount :: from_tokens ( 2 ) )
288288 . await ?;
289289
290290 faucet_service. ensure_is_running ( ) ?;
@@ -327,7 +327,7 @@ async fn test_end_to_end_receipt_of_old_create_committee_messages(
327327 faucet_client. process_inbox ( faucet_chain) . await ?;
328328
329329 let mut faucet_service = faucet_client
330- . run_faucet ( None , faucet_chain, Amount :: from_tokens ( 2 ) )
330+ . run_faucet ( None , Some ( faucet_chain) , Amount :: from_tokens ( 2 ) )
331331 . await ?;
332332
333333 faucet_service. ensure_is_running ( ) ?;
@@ -381,7 +381,7 @@ async fn test_end_to_end_receipt_of_old_remove_committee_messages(
381381
382382 if matches ! ( network, Network :: Grpc ) {
383383 let mut faucet_service = faucet_client
384- . run_faucet ( None , faucet_chain, Amount :: from_tokens ( 2 ) )
384+ . run_faucet ( None , Some ( faucet_chain) , Amount :: from_tokens ( 2 ) )
385385 . await ?;
386386
387387 faucet_service. ensure_is_running ( ) ?;
@@ -427,7 +427,7 @@ async fn test_end_to_end_receipt_of_old_remove_committee_messages(
427427
428428 if matches ! ( network, Network :: Grpc ) {
429429 let mut faucet_service = faucet_client
430- . run_faucet ( None , faucet_chain, Amount :: from_tokens ( 2 ) )
430+ . run_faucet ( None , Some ( faucet_chain) , Amount :: from_tokens ( 2 ) )
431431 . await ?;
432432
433433 faucet_service. ensure_is_running ( ) ?;
@@ -472,7 +472,7 @@ async fn test_end_to_end_receipt_of_old_remove_committee_messages(
472472 faucet_client. process_inbox ( faucet_chain) . await ?;
473473
474474 let mut faucet_service = faucet_client
475- . run_faucet ( None , faucet_chain, Amount :: from_tokens ( 2 ) )
475+ . run_faucet ( None , Some ( faucet_chain) , Amount :: from_tokens ( 2 ) )
476476 . await ?;
477477
478478 faucet_service. ensure_is_running ( ) ?;
0 commit comments