Skip to content

Commit

Permalink
Fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
0xVolosnikov committed Feb 11, 2025
1 parent 7057d33 commit 14d9363
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion core/lib/multivm/src/versions/testonly/precompiles.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,9 @@ pub(crate) fn test_sha256<VM: TestedVm>() {
assert!(!exec_result.result.is_failed(), "{exec_result:#?}");

let sha_count = exec_result.statistics.circuit_statistic.sha256
* ProtocolGeometry::latest().config().cycles_per_sha256_circuit as f32;
* ProtocolGeometry::latest()
.config()
.cycles_per_sha256_circuit as f32;
assert!(sha_count >= 1000.0, "{sha_count}");
}

Expand Down

0 comments on commit 14d9363

Please sign in to comment.