Skip to content

Commit

Permalink
chore: fix Yul's mcopy instruction definition
Browse files Browse the repository at this point in the history
  • Loading branch information
madlabman authored and michprev committed Aug 1, 2024
1 parent c392e63 commit 6431c46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wake_printers/lsp_yul_definitions.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"extcodecopy": "// copy code at address to memory\nextcodecopy(address, memStart, codeStart, length)",
"returndatasize": "// size of return data buffer\nreturndatasize()",
"returndatacopy": "// copy return data to memory\nreturndatacopy(memStart, returnDataStart, length)",
"mcopy": "// copy memory to memory\nmcopy(memStartFrom, memStartTo, length)",
"mcopy": "// copy memory to memory\nmcopy(memStartTo, memStartFrom, length)",
"extcodehash": "// Keccak-256 hash of code at address\nextcodehash(address)",
"create": "// create contract with code from memory and value in wei, return new address or 0 on error\ncreate(value, memStart, length)",
"create2": "// create contract from salt with code from memory and value in wei, return new address or 0 on error\ncreate2(value, memStart, length, salt)",
Expand Down

0 comments on commit 6431c46

Please sign in to comment.