From c07e4107e5e88d4ef0205efd923de2967859f220 Mon Sep 17 00:00:00 2001 From: livingrockrises <90545960+livingrockrises@users.noreply.github.com> Date: Mon, 14 Oct 2024 19:20:56 +0400 Subject: [PATCH] fix:respond to PR comments --- contracts/sponsorship/BiconomySponsorshipPaymaster.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/sponsorship/BiconomySponsorshipPaymaster.sol b/contracts/sponsorship/BiconomySponsorshipPaymaster.sol index f2f690c..09fa10d 100644 --- a/contracts/sponsorship/BiconomySponsorshipPaymaster.sol +++ b/contracts/sponsorship/BiconomySponsorshipPaymaster.sol @@ -315,7 +315,7 @@ contract BiconomySponsorshipPaymaster is revert InvalidSignatureLength(); } - if(unaccountedGas >= userOp.unpackPostOpGasLimit()) { + if(unaccountedGas > userOp.unpackPostOpGasLimit()) { revert PostOpGasLimitTooLow(); }