Skip to content

Commit

Permalink
fix:respond to PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
livingrockrises committed Oct 14, 2024
1 parent e811e45 commit c07e410
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/sponsorship/BiconomySponsorshipPaymaster.sol
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ contract BiconomySponsorshipPaymaster is
revert InvalidSignatureLength();
}

if(unaccountedGas >= userOp.unpackPostOpGasLimit()) {
if(unaccountedGas > userOp.unpackPostOpGasLimit()) {
revert PostOpGasLimitTooLow();
}

Expand Down

0 comments on commit c07e410

Please sign in to comment.