From 7ff446f7ffd6e10b21ef47f0946e99c9b542cbe4 Mon Sep 17 00:00:00 2001 From: Charles Cooper Date: Mon, 25 Sep 2023 15:56:54 -0400 Subject: [PATCH] docs: mcopy is enabled with cancun target --- docs/compiling-a-contract.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/compiling-a-contract.rst b/docs/compiling-a-contract.rst index 6d1cdf98d7..b529d1efb1 100644 --- a/docs/compiling-a-contract.rst +++ b/docs/compiling-a-contract.rst @@ -197,6 +197,7 @@ The following is a list of supported EVM versions, and changes in the compiler i - The ``transient`` keyword allows declaration of variables which live in transient storage - Functions marked with ``@nonreentrant`` are protected with TLOAD/TSTORE instead of SLOAD/SSTORE + - The ``MCOPY`` opcode will be generated automatically by the compiler for most memory operations.