From 299969376434fb4e67f6ce4ec0056dd0491b14b7 Mon Sep 17 00:00:00 2001 From: Thrilok kumar Date: Wed, 17 Jul 2024 09:37:51 -0400 Subject: [PATCH] Update contracts/v2/accounts/default/implementation_default.sol Co-authored-by: bergben --- contracts/v2/accounts/default/implementation_default.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/v2/accounts/default/implementation_default.sol b/contracts/v2/accounts/default/implementation_default.sol index f6fe915..8047759 100644 --- a/contracts/v2/accounts/default/implementation_default.sol +++ b/contracts/v2/accounts/default/implementation_default.sol @@ -208,7 +208,7 @@ contract Record is Constants { * @param signature Signature byte array associated with data */ function isValidSignature(bytes32 hash, bytes memory signature) external view returns (bytes4 magicValue) { - // hashing with domain separator mitigates any potential replaying on other networks or other Avocados of the same owner + // hashing with domain separator mitigates any potential replaying on other networks or other DSA of the same owner hash = ECDSA.toTypedDataHash( domainSeparatorV4(), keccak256(abi.encode(EIP1271_TYPE_HASH, hash))