From 9e526d6de72915fcafc4fb4b0a9f1013821656fc Mon Sep 17 00:00:00 2001 From: Akshay Date: Mon, 8 Jul 2024 12:54:26 +0200 Subject: [PATCH] [#754] Add comment on signature encoding in _checkSignatureLength --- 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 a49f4802..8abaca1d 100644 --- a/modules/4337/contracts/Safe4337Module.sol +++ b/modules/4337/contracts/Safe4337Module.sol @@ -212,7 +212,7 @@ contract Safe4337Module is IAccount, HandlerContext, CompatibilityFallbackHandle } /** - * @dev Checks if the signatures length is correct and does not contain addtional bytes. + * @dev Checks if the signatures length is correct and does not contain addtional bytes. The function does not check the integrity of the signature encoding. * @param signatures signatures data * @param threshold Indicates the number of iterations to perform in the loop. * @return result True if length check passes, false otherwise.