From c72d37ff2d777c4e184c9259272b5eaf93749ef1 Mon Sep 17 00:00:00 2001 From: Akshay Date: Thu, 4 Jul 2024 15:19:38 +0200 Subject: [PATCH] [#754] Update comment --- modules/4337/contracts/Safe4337Module.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/4337/contracts/Safe4337Module.sol b/modules/4337/contracts/Safe4337Module.sol index 4700f2ad..1f283cdd 100644 --- a/modules/4337/contracts/Safe4337Module.sol +++ b/modules/4337/contracts/Safe4337Module.sol @@ -215,7 +215,7 @@ contract Safe4337Module is IAccount, HandlerContext, CompatibilityFallbackHandle * @dev Checks if the signatures length is correct and does not contain addtional bytes. * The code uses scratch space to store s and v values of the signatures. * 0x00 stores s value and 0x20 stores v value. - * As checkSignatures is expected to perform, it is skipped here. + * As checkSignatures is expected to check whether signature length is aleast threshold * 0x41, it is skipped here. * @param signatures signatures data * @param threshold Indicates the number of iterations to perform in the loop. * @return bool True if length check passes, false otherwise.