Formatting

This commit is contained in:
Mark Spanbroek 2024-01-30 15:05:17 +01:00 committed by markspanbroek
parent 576254423e
commit df58f2d3db
1 changed files with 1 additions and 8 deletions

View File

@ -122,14 +122,7 @@ contract Groth16Verifier {
// solhint-disable-next-line no-inline-assembly // solhint-disable-next-line no-inline-assembly
assembly { assembly {
success := staticcall( success := staticcall(sub(gas(), 2000), 8, input, 768, output, 32)
sub(gas(), 2000),
8,
input,
768, // 24 uints, 32 bytes each
output,
32
)
} }
return (success, output[0]); return (success, output[0]);
} }