Skip to content

Commit

Permalink
fix expected gas
Browse files Browse the repository at this point in the history
  • Loading branch information
enitrat committed Aug 27, 2024
1 parent d6cc314 commit a12c129
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/evm/src/precompiles/sha256.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ mod tests {
let expected_result = 0x3b745a1c00d035c334f358d007a430e4cf0ae63aa0556fb05529706de546464d;

assert_eq!(result, expected_result);
assert_eq!(gas, 72);
assert_eq!(gas, 84); // BASE + 2 WORDS
}


Expand Down

0 comments on commit a12c129

Please sign in to comment.