8000 feat: passes sim result to the submit tasks by dylanlott · Pull Request #100 · init4tech/builder · GitHub
[go: up one dir, main page]

Skip to content

feat: passes sim result to the submit tasks #100

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

Merged
merged 14 commits into from
Jun 16, 2025
Prev Previous commit
Next Next commit
fmt
  • Loading branch information
dylanlott committed Jun 13, 2025
commit 57792d9e18000beeb3b590d955f80f40f31f7cb9
2 changes: 1 addition & 1 deletion src/tasks/block/sim.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ impl Simulator {
debug!(
block_number = block_env.number,
?finish_by,
tx_count= sim_items.len(),
tx_count = sim_items.len(),
"starting block build",
);

Expand Down
2 changes: 1 addition & 1 deletion src/tasks/submit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ impl SubmitTask {

if let Err(e) = self.retrying_handle_inbound(&result.block, &result.env, 3).await {
error!(error = %e, "error handling inbound block");
continue;
continue;
}
}
}
Expand Down
0