diff options
author | Jonathan Brown <jbrown@link-blockchain.org> | 2017-06-03 15:12:33 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-03 15:12:33 +0800 |
commit | 8595bc7122c9e0cb34b558446cb959ec3e30cc81 (patch) | |
tree | c76ffab089b006c0d656de5083ed05999589a4c8 /docs/miscellaneous.rst | |
parent | b4ae188a0f6da55317ca04bd64a7524592089ed0 (diff) | |
download | dexon-solidity-8595bc7122c9e0cb34b558446cb959ec3e30cc81.tar.gz 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.
Diffstat (limited to 'docs/miscellaneous.rst')
-rw-r--r-- | docs/miscellaneous.rst | 2 |
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});`` |