Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
edg-l committed Nov 12, 2024
1 parent dce65fe commit ecf6bc7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ serde_repr = "0.1.19"
serde_yaml = "0.9.16"
sha2 = "0.10.8"
sha3 = "0.10.8"
sierra-emu = { git = "https://github.com/lambdaclass/sierra-emu.git" }
sierra-emu = { git = "https://github.com/lambdaclass/sierra-emu.git", rev = "889d5f40cdc5ae90c6ac614facb3071de88220cd"}
simple_logger = "4.0.0"
starknet-core = "0.6.0"
starknet-crypto = "0.5.1"
Expand Down
2 changes: 1 addition & 1 deletion crates/blockifier/src/execution/native/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ pub fn calculate_resource_bounds(
ResourceBounds {
resource,
max_amount: resource_bound.max_amount,
max_price_per_unit: resource_bound.max_price_per_unit,
max_price_per_unit: resource_bound.max_price_per_unit.try_into().unwrap(),
}
})
.collect())
Expand Down

0 comments on commit ecf6bc7

Please sign in to comment.