From 60090fb4a9131a03079257130409ecc0b7e263b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20=C5=9Aliwak?= Date: Thu, 25 Mar 2021 17:56:00 +0100 Subject: [PATCH] docs: Calldata arguments are no longer limited to external functions --- docs/contracts/visibility-and-getters.rst | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/contracts/visibility-and-getters.rst b/docs/contracts/visibility-and-getters.rst index 874fb6407..dc511f295 100644 --- a/docs/contracts/visibility-and-getters.rst +++ b/docs/contracts/visibility-and-getters.rst @@ -21,9 +21,6 @@ For state variables, ``external`` is not possible. which means they can be called from other contracts and via transactions. An external function ``f`` cannot be called internally (i.e. ``f()`` does not work, but ``this.f()`` works). - External functions are sometimes more efficient when - they receive large arrays of data, because the data - is not copied from calldata to memory. ``public`` Public functions are part of the contract interface