Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add some process_inbox calls for the matching_engine end to end test #2129

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions linera-service/tests/end_to_end_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1436,6 +1436,9 @@ async fn test_wasm_end_to_end_matching_engine(config: impl LineraNetConfig) -> R
node_service_admin
.request_application(&chain_admin, &token1)
.await?;
node_service_admin.process_inbox(&chain_admin).await?;
node_service_a.process_inbox(&chain_a).await?;
node_service_b.process_inbox(&chain_b).await?;
Comment on lines +1439 to +1441
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes these ones look necessary.


let app_fungible0_a = FungibleApp(node_service_a.make_application(&chain_a, &token0).await?);
let app_fungible1_a = FungibleApp(node_service_a.make_application(&chain_a, &token1).await?);
Expand Down Expand Up @@ -1508,6 +1511,7 @@ async fn test_wasm_end_to_end_matching_engine(config: impl LineraNetConfig) -> R
node_service_a
.request_application(&chain_a, &application_id_matching)
.await?;
node_service_a.process_inbox(&chain_a).await?;
let app_matching_a = MatchingEngineApp(
node_service_a
.make_application(&chain_a, &application_id_matching)
Expand All @@ -1516,6 +1520,7 @@ async fn test_wasm_end_to_end_matching_engine(config: impl LineraNetConfig) -> R
node_service_b
.request_application(&chain_b, &application_id_matching)
.await?;
node_service_b.process_inbox(&chain_b).await?;
let app_matching_b = MatchingEngineApp(
node_service_b
.make_application(&chain_b, &application_id_matching)
Expand Down
Loading