Skip to content

Commit

Permalink
Bump blockifier to v0.8.0-rc3 (#2414)
Browse files Browse the repository at this point in the history
bump blockifier to the new sequencer repo
  • Loading branch information
kariy authored Sep 11, 2024
1 parent 80d1827 commit bf4ea9b
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 14 deletions.
18 changes: 9 additions & 9 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions crates/katana/cairo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ cairo-lang-sierra-to-casm = "2.7.0"
cairo-lang-starknet = "2.7.0"
cairo-lang-starknet-classes = "2.7.0"
cairo-lang-utils = "2.7.0"
cairo-vm = "1.0.0"
starknet_api = "0.13.0-dev.9"
cairo-vm = "1.0.1"
starknet_api = { git = "https://github.com/dojoengine/sequencer", tag = "v0.8.0-rc3" }
2 changes: 1 addition & 1 deletion crates/katana/executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ starknet = { workspace = true, optional = true }
thiserror.workspace = true
tracing.workspace = true

blockifier = { git = "https://github.com/dojoengine/blockifier", branch = "cairo-2.7", features = [ "testing" ], optional = true }
blockifier = { git = "https://github.com/dojoengine/sequencer", tag = "v0.8.0-rc3", features = [ "testing" ], optional = true }
katana-cairo = { workspace = true, optional = true }

[dev-dependencies]
Expand Down
3 changes: 1 addition & 2 deletions crates/katana/pool/src/validation/stateful.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,7 @@ impl Inner {
let state = Box::new(self.state.clone());
let cached_state = CachedState::new(StateProviderDb::new(state));
let context = block_context_from_envs(&self.block_env, &self.cfg_env);

StatefulValidator::create(cached_state, context, Default::default())
StatefulValidator::create(cached_state, context)
}
}

Expand Down

0 comments on commit bf4ea9b

Please sign in to comment.