We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab27f27 commit c8dda4dCopy full SHA for c8dda4d
src/precompile/tests.zig
@@ -333,10 +333,10 @@ test "ModExp precompile - large exponent" {
333
input[63] = 10;
334
input[95] = 1;
335
336
- input[96] = 2; // base = 2 (1 byte)
+ input[96] = 2; // base = 2 (1 byte)
337
// exp = 1 (10 bytes at input[97..107], big-endian; last byte = 1)
338
- input[106] = 1; // exp = 1
339
- input[107] = 5; // mod = 5 (1 byte)
+ input[106] = 1; // exp = 1
+ input[107] = 5; // mod = 5 (1 byte)
340
341
const result = modexp.byzantiumRun(&input, 100000);
342
0 commit comments