Skip to content

Commit 13e6865

Browse files
authored
chore(deps): update SDK (#129)
* chore(deps): update SDK DO NOT MERGE YET. native usd pr changes wip * chore: update to sdk with constants readded * chore: fixes
1 parent dea907e commit 13e6865

File tree

5 files changed

+52
-159
lines changed

5 files changed

+52
-159
lines changed

Cargo.lock

Lines changed: 43 additions & 150 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ path = "bin/submit_transaction.rs"
2525
integration = []
2626

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

30-
signet-constants = { version = "0.7.0" }
31-
signet-sim = { version = "0.7.0" }
32-
signet-tx-cache = { version = "0.7.0" }
33-
signet-types = { version = "0.7.0" }
34-
signet-zenith = { version = "0.7.0" }
30+
signet-constants = { version = "0.8.0" }
31+
signet-sim = { version = "0.8.0" }
32+
signet-tx-cache = { version = "0.8.0" }
33+
signet-types = { version = "0.8.0" }
34+
signet-zenith = { version = "0.8.0" }
3535

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

bin/builder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ async fn main() -> eyre::Result<()> {
4444
zenith,
4545
quincey,
4646
config: config.clone(),
47-
constants,
47+
constants: constants.clone(),
4848
outbound_tx_channel: tx_channel,
4949
};
5050

src/tasks/block/sim.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ impl Simulator {
191191
let finish_by = self.calculate_deadline();
192192
let sim_cache = cache.clone();
193193
match self
194-
.handle_build(constants, sim_cache, finish_by, sim_env.block_env.clone())
194+
.handle_build(constants.clone(), sim_cache, finish_by, sim_env.block_env.clone())
195195
.await
196196
{
197197
Ok(block) => {

src/tasks/submit/task.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ impl SubmitTask {
293293
self.provider().clone(),
294294
self.quincey.clone(),
295295
self.config.clone(),
296-
self.constants,
296+
self.constants.clone(),
297297
);
298298
let bumpable = match prep
299299
.prep_transaction(&prev_host.header)

0 commit comments

Comments
 (0)