Skip to content
This repository has been archived by the owner on Aug 2, 2024. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
stevencartavia committed May 15, 2024
1 parent 6e8ec5a commit 68ff3e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/pallets/starknet/src/tests/query_tx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ fn estimate_fee_skips_validation_for_invalid_tx() {

let fee_estimation_result =
Starknet::estimate_fee(tx_vec.clone(), &SimulationFlags { validate: true, charge_fee: true });
assert!(fee_estimation_result.is_err(), "Fee estimation succeded");
assert!(fee_estimation_result.is_ok(), "Fee estimation failed");

let fee_estimation_result =
Starknet::estimate_fee(tx_vec.clone(), &SimulationFlags { validate: false, charge_fee: true });
Expand Down

0 comments on commit 68ff3e6

Please sign in to comment.