We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2b7977 commit 7ba3c21Copy full SHA for 7ba3c21
src/static_verifier.zig
@@ -482,7 +482,7 @@ pub const StaticVerifier = struct {
482
const large_threshold = "340282366920938463463374607431768211456"; // 2^128
483
return int.value.len > large_threshold.len or
484
(int.value.len == large_threshold.len and
485
- std.mem.order(u8, int.value, large_threshold) == .gt);
+ std.mem.order(u8, int.value, large_threshold) == .gt);
486
},
487
.Hex => |*hex| {
488
// Consider hex values with many bytes as large
0 commit comments