We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca01cee commit 9e87299Copy full SHA for 9e87299
contracts/abstracts/EIP712.sol
@@ -50,7 +50,7 @@ abstract contract EIP712 {
50
assembly {
51
// Compute the digest.
52
mstore(0x00, 0x1901000000000000000000000000000000000000000000000000000000000000) // Store "\x19\x01".
53
- mstore(0x2, digest) // Store the domain separator.
+ mstore(0x02, digest) // Store the domain separator.
54
mstore(0x22, structHash) // Store the struct hash.
55
digest := keccak256(0x0, 0x42)
56
mstore(0x22, 0) // Restore the part of the free memory slot that was overwritten.
0 commit comments