Skip to content

Commit

Permalink
Merge pull request #46 from lambdaclass/migrate-to-sequencer
Browse files Browse the repository at this point in the history
Update blockifier to sequencer
  • Loading branch information
edg-l authored Sep 9, 2024
2 parents 6afefea + 2b95aa1 commit b3dba34
Show file tree
Hide file tree
Showing 6 changed files with 166 additions and 65 deletions.
119 changes: 107 additions & 12 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ resolver = "2"

[workspace.dependencies]
thiserror = "1.0.32"
starknet_api = "0.13.0-rc.0"
blockifier = { git = "https://github.com/lambdaclass/blockifier", branch = "native2.8.x-adapt" }
starknet_api = { git = "https://github.com/lambdaclass/sequencer", branch = "native2.8.x-arc"}
blockifier = { git = "https://github.com/lambdaclass/sequencer", branch = "native2.8.x-arc"}
cairo-native = { git = "https://github.com/lambdaclass/cairo_native" }
tracing = "0.1"

Expand Down
2 changes: 1 addition & 1 deletion replay/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ fn show_execution_data(
);
}

let execution_gas = execution_info.transaction_receipt.fee;
let execution_gas = execution_info.receipt.fee;
let rpc_gas = rpc_receipt.actual_fee;
debug!(?execution_gas, ?rpc_gas, "execution actual fee");
}
Expand Down
Loading

0 comments on commit b3dba34

Please sign in to comment.