Skip to content

Commit 7ba3c21

Browse files
committed
fmt
1 parent e2b7977 commit 7ba3c21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/static_verifier.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ pub const StaticVerifier = struct {
482482
const large_threshold = "340282366920938463463374607431768211456"; // 2^128
483483
return int.value.len > large_threshold.len or
484484
(int.value.len == large_threshold.len and
485-
std.mem.order(u8, int.value, large_threshold) == .gt);
485+
std.mem.order(u8, int.value, large_threshold) == .gt);
486486
},
487487
.Hex => |*hex| {
488488
// Consider hex values with many bytes as large

0 commit comments

Comments
 (0)