-
Notifications
You must be signed in to change notification settings - Fork 0
fix: submit channel refactors #94
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
Changes from all commits
587f620
44b50ff
1b376b0
6c2ed53
d850791
ba696d4
1990579
934788c
601c2d5
0e8eda5
e40f408
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -94,10 +94,10 @@ impl Simulator { | |
self.config.rollup_block_gas_limit, | ||
); | ||
|
||
let block = block_build.build().await; | ||
debug!(block = ?block, "finished block simulation"); | ||
let built_block = block_build.build().await; | ||
debug!(block_number = ?built_block.block_number(), "finished building block"); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the |
||
|
||
Ok(block) | ||
Ok(built_block) | ||
} | ||
|
||
/// Spawns the simulator task, which handles the setup and sets the deadline | ||
|
@@ -155,8 +155,7 @@ impl Simulator { | |
|
||
// If no env, skip this run | ||
let Some(block_env) = self.block_env.borrow_and_update().clone() else { return }; | ||
|
||
debug!(block_env = ?block_env, "building on block"); | ||
debug!(block_env = ?block_env, "building on block env"); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
||
match self.handle_build(constants, sim_cache, finish_by, block_env).await { | ||
Ok(block) => { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let's upgrade this to the 0.2.0 tag (we can now just use
tag
instead)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unless we need test-utils or rpc, we can actually skip the
tag =
and just use published?