From bce545c990996830d5afb7322651f1cf16f3fbe0 Mon Sep 17 00:00:00 2001 From: Evgeny Medvedev Date: Tue, 20 Feb 2018 02:06:42 +0700 Subject: Add adjustable/no adjustable gas details to address related functions in units-and-global-variables.rst --- docs/units-and-global-variables.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'docs') 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 ``
.balance`` (``uint256``): balance of the :ref:`address` in Wei ``
.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 ``
.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 ``
.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 ``
.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 ``
.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`. -- cgit v1.2.3