aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorEvgeny Medvedev <evgeny@kitchenup.com>2018-02-20 03:06:42 +0800
committerEvgeny Medvedev <evgeny@kitchenup.com>2018-02-20 03:06:42 +0800
commitbce545c990996830d5afb7322651f1cf16f3fbe0 (patch)
treed12771ab20a1b4f9985fc13ca11a268634defec0 /docs
parentbfcf4a86c320a2e2a606b17137909a44d46211a5 (diff)
downloaddexon-solidity-bce545c990996830d5afb7322651f1cf16f3fbe0.tar
dexon-solidity-bce545c990996830d5afb7322651f1cf16f3fbe0.tar.gz
dexon-solidity-bce545c990996830d5afb7322651f1cf16f3fbe0.tar.bz2
dexon-solidity-bce545c990996830d5afb7322651f1cf16f3fbe0.tar.lz
dexon-solidity-bce545c990996830d5afb7322651f1cf16f3fbe0.tar.xz
dexon-solidity-bce545c990996830d5afb7322651f1cf16f3fbe0.tar.zst
dexon-solidity-bce545c990996830d5afb7322651f1cf16f3fbe0.zip
Add adjustable/no adjustable gas details to address related functions in units-and-global-variables.rst
Diffstat (limited to 'docs')
-rw-r--r--docs/units-and-global-variables.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/units-and-global-variables.rst b/docs/units-and-global-variables.rst
index 66a4b4a9..dd16ccc6 100644
--- a/docs/units-and-global-variables.rst
+++ b/docs/units-and-global-variables.rst
@@ -154,15 +154,15 @@ Address Related
``<address>.balance`` (``uint256``):
balance of the :ref:`address` in Wei
``<address>.transfer(uint256 amount)``:
- send given amount of Wei to :ref:`address`, throws on failure, forwards 2300 gas stipend
+ send given amount of Wei to :ref:`address`, throws on failure, forwards 2300 gas stipend, not adjustable
``<address>.send(uint256 amount) returns (bool)``:
- send given amount of Wei to :ref:`address`, returns ``false`` on failure, forwards 2300 gas stipend
+ send given amount of Wei to :ref:`address`, returns ``false`` on failure, forwards 2300 gas stipend, not adjustable
``<address>.call(...) returns (bool)``:
- issue low-level ``CALL``, returns ``false`` on failure, forwards all available gas
+ issue low-level ``CALL``, returns ``false`` on failure, forwards all available gas, adjustable
``<address>.callcode(...) returns (bool)``:
- issue low-level ``CALLCODE``, returns ``false`` on failure, forwards all available gas
+ issue low-level ``CALLCODE``, returns ``false`` on failure, forwards all available gas, adjustable
``<address>.delegatecall(...) returns (bool)``:
- issue low-level ``DELEGATECALL``, returns ``false`` on failure, forwards all available gas
+ issue low-level ``DELEGATECALL``, returns ``false`` on failure, forwards all available gas, adjustable
For more information, see the section on :ref:`address`.