From df58f2d3db7f8c00292f0f75a3ecda5b1aee7907 Mon Sep 17 00:00:00 2001 From: Mark Spanbroek Date: Tue, 30 Jan 2024 15:05:17 +0100 Subject: [PATCH] Formatting --- contracts/Groth16Verifier.sol | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) 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]); }