aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Brown <jbrown@link-blockchain.org>2017-06-03 15:12:33 +0800
committerGitHub <noreply@github.com>2017-06-03 15:12:33 +0800
commit8595bc7122c9e0cb34b558446cb959ec3e30cc81 (patch)
treec76ffab089b006c0d656de5083ed05999589a4c8
parentb4ae188a0f6da55317ca04bd64a7524592089ed0 (diff)
downloaddexon-solidity-8595bc7122c9e0cb34b558446cb959ec3e30cc81.tar
dexon-solidity-8595bc7122c9e0cb34b558446cb959ec3e30cc81.tar.gz
dexon-solidity-8595bc7122c9e0cb34b558446cb959ec3e30cc81.tar.bz2
dexon-solidity-8595bc7122c9e0cb34b558446cb959ec3e30cc81.tar.lz
dexon-solidity-8595bc7122c9e0cb34b558446cb959ec3e30cc81.tar.xz
dexon-solidity-8595bc7122c9e0cb34b558446cb959ec3e30cc81.tar.zst
dexon-solidity-8595bc7122c9e0cb34b558446cb959ec3e30cc81.zip
for free => automatically
Getters still use gas when called from another contract, so they are not free.
-rw-r--r--docs/miscellaneous.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/miscellaneous.rst b/docs/miscellaneous.rst
index 914dfacd..2e0ccf45 100644
--- a/docs/miscellaneous.rst
+++ b/docs/miscellaneous.rst
@@ -371,7 +371,7 @@ Tips and Tricks
* Use ``delete`` on arrays to delete all its elements.
* Use shorter types for struct elements and sort them such that short types are grouped together. This can lower the gas costs as multiple SSTORE operations might be combined into a single (SSTORE costs 5000 or 20000 gas, so this is what you want to optimise). Use the gas price estimator (with optimiser enabled) to check!
-* Make your state variables public - the compiler will create :ref:`getters <visibility-and-getters>` for you for free.
+* Make your state variables public - the compiler will create :ref:`getters <visibility-and-getters>` for you automatically.
* If you end up checking conditions on input or state a lot at the beginning of your functions, try using :ref:`modifiers`.
* If your contract has a function called ``send`` but you want to use the built-in send-function, use ``address(contractVariable).send(amount)``.
* Initialise storage structs with a single assignment: ``x = MyStruct({a: 1, b: 2});``