diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-02-09 07:37:23 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-02-24 08:18:18 +0800 |
commit | a36e2ce0cbb7e1830e25dacd8d79f207c9bcca6a (patch) | |
tree | 42de13ab0c0d43e0809fc4a136fcb757b9f6fa92 /docs/units-and-global-variables.rst | |
parent | 81006dae98ee18c33994af0274de10857774ff70 (diff) | |
download | dexon-solidity-a36e2ce0cbb7e1830e25dacd8d79f207c9bcca6a.tar.gz dexon-solidity-a36e2ce0cbb7e1830e25dacd8d79f207c9bcca6a.tar.zst dexon-solidity-a36e2ce0cbb7e1830e25dacd8d79f207c9bcca6a.zip |
Document transfer()
Diffstat (limited to 'docs/units-and-global-variables.rst')
-rw-r--r-- | docs/units-and-global-variables.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/units-and-global-variables.rst b/docs/units-and-global-variables.rst index 72741b67..49fe5d84 100644 --- a/docs/units-and-global-variables.rst +++ b/docs/units-and-global-variables.rst @@ -130,6 +130,8 @@ Address Related balance of the :ref:`address` in Wei ``<address>.send(uint256 amount) returns (bool)``: send given amount of Wei to :ref:`address`, returns ``false`` on failure +``<address>.transfer(uint256 amount)``: + send given amount of Wei to :ref:`address`, throws on failure For more information, see the section on :ref:`address`. |