Skip to content

Commit e1d6297

Browse files
committed
Fix codespell
1 parent f27f1a1 commit e1d6297

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/utils/cryptography/SignerZKEmail.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ abstract contract SignerZKEmail is AbstractSigner {
141141
// - `proof` is a dynamic bytes (32 bytes offset).
142142
// There are 128 bytes for the EmailAuthMsg type and 256 bytes for the proof.
143143
// Considering all dynamic elements are empty (i.e. `commandParams` = [], `domainName` = "", `maskedCommand` = "", `proof` = []),
144-
// then we have 128 bytes for the EmailAuthMsg type, 256 bytes for the proof and 4 * 32 for the lenght of the dynamic elements.
144+
// then we have 128 bytes for the EmailAuthMsg type, 256 bytes for the proof and 4 * 32 for the length of the dynamic elements.
145145
// So the minimum length is 128 + 256 + 4 * 32 = 512 bytes.
146146
if (signature.length < 512) return false;
147147
EmailAuthMsg memory emailAuthMsg = abi.decode(signature, (EmailAuthMsg));

0 commit comments

Comments
 (0)