diff --git a/contracts/Groth16Verifier.sol b/contracts/Groth16Verifier.sol index ae2c3e6..2a8390e 100644 --- a/contracts/Groth16Verifier.sol +++ b/contracts/Groth16Verifier.sol @@ -122,14 +122,7 @@ contract Groth16Verifier { // solhint-disable-next-line no-inline-assembly assembly { - success := staticcall( - sub(gas(), 2000), - 8, - input, - 768, // 24 uints, 32 bytes each - output, - 32 - ) + success := staticcall(sub(gas(), 2000), 8, input, 768, output, 32) } return (success, output[0]); }