Skip to content

Commit

Permalink
chore(ext_py): bump test constants
Browse files Browse the repository at this point in the history
  • Loading branch information
Joonas Koivunen committed Jul 20, 2022
1 parent 07f3b6f commit 13b900e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/pathfinder/src/cairo/ext_py.rs
Original file line number Diff line number Diff line change
Expand Up @@ -423,9 +423,9 @@ mod tests {
assert_eq!(
at_block_fee,
crate::rpc::types::reply::FeeEstimate {
consumed: H256::from_low_u64_be(3),
consumed: H256::from_low_u64_be(0x53f),
gas_price: H256::from_low_u64_be(1),
fee: H256::from_low_u64_be(4)
fee: H256::from_low_u64_be(0x540)
}
);

Expand All @@ -443,9 +443,9 @@ mod tests {
assert_eq!(
current_fee,
crate::rpc::types::reply::FeeEstimate {
consumed: H256::from_low_u64_be(3),
consumed: H256::from_low_u64_be(0x53f),
gas_price: H256::from_low_u64_be(10),
fee: H256::from_low_u64_be(35)
fee: H256::from_low_u64_be(0x3478)
}
);

Expand Down

0 comments on commit 13b900e

Please sign in to comment.