Skip to content
Merged
Show file tree
Hide file tree
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
193 changes: 43 additions & 150 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ path = "bin/submit_transaction.rs"
integration = []

[dependencies]
init4-bin-base = { version = "0.7.1", features = ["perms"] }
init4-bin-base = { version = "0.9.0", features = ["perms"] }

signet-constants = { version = "0.7.0" }
signet-sim = { version = "0.7.0" }
signet-tx-cache = { version = "0.7.0" }
signet-types = { version = "0.7.0" }
signet-zenith = { version = "0.7.0" }
signet-constants = { version = "0.8.0" }
signet-sim = { version = "0.8.0" }
signet-tx-cache = { version = "0.8.0" }
signet-types = { version = "0.8.0" }
signet-zenith = { version = "0.8.0" }

trevm = { version = "0.27.0", features = ["concurrent-db", "test-utils"] }

Expand Down
2 changes: 1 addition & 1 deletion bin/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ async fn main() -> eyre::Result<()> {
zenith,
quincey,
config: config.clone(),
constants,
constants: constants.clone(),
outbound_tx_channel: tx_channel,
};

Expand Down
2 changes: 1 addition & 1 deletion src/tasks/block/sim.rs
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ impl Simulator {
let finish_by = self.calculate_deadline();
let sim_cache = cache.clone();
match self
.handle_build(constants, sim_cache, finish_by, sim_env.block_env.clone())
.handle_build(constants.clone(), sim_cache, finish_by, sim_env.block_env.clone())
.await
{
Ok(block) => {
Expand Down
2 changes: 1 addition & 1 deletion src/tasks/submit/task.rs
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ impl SubmitTask {
self.provider().clone(),
self.quincey.clone(),
self.config.clone(),
self.constants,
self.constants.clone(),
);
let bumpable = match prep
.prep_transaction(&prev_host.header)
Expand Down