diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-08-01 18:52:57 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-01 18:52:57 +0800 |
commit | ef269bf40d3c6fc044c27654473353c556402b77 (patch) | |
tree | 4d0162665f6f185e368e0831359d336e8251e438 /docs | |
parent | 21888e246b771325ea55da39d7f335638da1a98e (diff) | |
parent | b800bfb02138f843538bca55a40d6a4e0d1be60f (diff) | |
download | dexon-solidity-ef269bf40d3c6fc044c27654473353c556402b77.tar dexon-solidity-ef269bf40d3c6fc044c27654473353c556402b77.tar.gz dexon-solidity-ef269bf40d3c6fc044c27654473353c556402b77.tar.bz2 dexon-solidity-ef269bf40d3c6fc044c27654473353c556402b77.tar.lz dexon-solidity-ef269bf40d3c6fc044c27654473353c556402b77.tar.xz dexon-solidity-ef269bf40d3c6fc044c27654473353c556402b77.tar.zst dexon-solidity-ef269bf40d3c6fc044c27654473353c556402b77.zip |
Merge pull request #4321 from ethereum/contractConversion
[BREAKING] Disallow conversion between unrelated contract types.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/contracts.rst | 2 | ||||
-rw-r--r-- | docs/frequently-asked-questions.rst | 2 | ||||
-rw-r--r-- | docs/types.rst | 19 |
3 files changed, 21 insertions, 2 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst index e78c3ff7..e87c8a67 100644 --- a/docs/contracts.rst +++ b/docs/contracts.rst @@ -1,5 +1,7 @@ .. index:: ! contract +.. _contracts: + ########## Contracts ########## diff --git a/docs/frequently-asked-questions.rst b/docs/frequently-asked-questions.rst index cb46dea6..c2df0d3a 100644 --- a/docs/frequently-asked-questions.rst +++ b/docs/frequently-asked-questions.rst @@ -379,7 +379,7 @@ In this example:: } contract A { - address child; + B child; function test() public { child = (new B).value(10)(); //construct a new B with 10 wei diff --git a/docs/types.rst b/docs/types.rst index d6767b54..566c4c19 100644 --- a/docs/types.rst +++ b/docs/types.rst @@ -192,6 +192,23 @@ The ``.gas()`` option is available on all three methods, while the ``.value()`` .. note:: The use of ``callcode`` is discouraged and will be removed in the future. +Contract Types +-------------- + +Every :ref:`contract<contracts>` defines its own type. Contracts can be implicitly converted +to contracts they inherit from. They can be explicitly converted from and to ``address`` types. + +The data representation of a contract is identical to that of the ``address`` type and +this type is also used in the :ref:`ABI<ABI>`. + +Contracts do not support any operators. + +The members of contract types are the external functions of the contract including +public state variables. + +.. note:: + Starting with version 0.5.0 contracts do not derive from the address type, but can still be explicitly converted to address. + .. index:: byte array, bytes32 @@ -884,7 +901,7 @@ for each ``_KeyType``, recursively. function f() public returns (uint) { MappingExample m = new MappingExample(); m.update(100); - return m.balances(this); + return m.balances(address(this)); } } |