Skip to content

Commit 9e87299

Browse files
committed
refine by PR comments
1 parent ca01cee commit 9e87299

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/abstracts/EIP712.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ abstract contract EIP712 {
5050
assembly {
5151
// Compute the digest.
5252
mstore(0x00, 0x1901000000000000000000000000000000000000000000000000000000000000) // Store "\x19\x01".
53-
mstore(0x2, digest) // Store the domain separator.
53+
mstore(0x02, digest) // Store the domain separator.
5454
mstore(0x22, structHash) // Store the struct hash.
5555
digest := keccak256(0x0, 0x42)
5656
mstore(0x22, 0) // Restore the part of the free memory slot that was overwritten.

0 commit comments

Comments
 (0)