Skip to content

Commit

Permalink
bump sequencer to v0.8.0-rc3.2 with the new validation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kariy committed Oct 13, 2024
1 parent 4d99a79 commit 35dfdb2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions 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 crates/katana/cairo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ cairo-lang-starknet = "2.7.0"
cairo-lang-starknet-classes = "2.7.0"
cairo-lang-utils = "2.7.0"
cairo-vm = "1.0.1"
starknet_api = { git = "https://github.com/dojoengine/sequencer", tag = "v0.8.0-rc3.1" }
starknet_api = { git = "https://github.com/dojoengine/sequencer", tag = "v0.8.0-rc3.2" }
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/sequencer", tag = "v0.8.0-rc3.1", features = [ "testing" ], optional = true }
blockifier = { git = "https://github.com/dojoengine/sequencer", tag = "v0.8.0-rc3.2", features = [ "testing" ], optional = true }
katana-cairo = { workspace = true, optional = true }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions crates/katana/rpc/rpc/tests/starknet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -410,8 +410,8 @@ async fn send_txs_with_insufficient_fee(
let res = contract.transfer(&recipient, &amount).max_fee(Felt::TWO).send().await;

if disable_fee {
// In no fee mode, the transaction resources (ie max fee) is totally ignored. So doesn't matter
// what value is set, the transaction will always be executed successfully.
// In no fee mode, the transaction resources (ie max fee) is totally ignored. So doesn't
// matter what value is set, the transaction will always be executed successfully.
assert_matches!(res, Ok(tx) => {
let tx_hash = tx.transaction_hash;
assert_matches!(dojo_utils::TransactionWaiter::new(tx_hash, &sequencer.provider()).await, Ok(_));
Expand Down

0 comments on commit 35dfdb2

Please sign in to comment.