diff options
author | chriseth <chris@ethereum.org> | 2016-08-26 16:11:34 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-26 16:11:34 +0800 |
commit | d209e65b1d9ce3f49821970e96e027ba5243e386 (patch) | |
tree | b08cb8a4cb5fd592e67bd4a25de92980a63eec16 /docs | |
parent | 3eeefb5c9e27c9401184cc28cf72bfd37ac35785 (diff) | |
parent | ce42114c4170406f1f7ce67d57429ff3e7b73079 (diff) | |
download | dexon-solidity-d209e65b1d9ce3f49821970e96e027ba5243e386.tar dexon-solidity-d209e65b1d9ce3f49821970e96e027ba5243e386.tar.gz dexon-solidity-d209e65b1d9ce3f49821970e96e027ba5243e386.tar.bz2 dexon-solidity-d209e65b1d9ce3f49821970e96e027ba5243e386.tar.lz dexon-solidity-d209e65b1d9ce3f49821970e96e027ba5243e386.tar.xz dexon-solidity-d209e65b1d9ce3f49821970e96e027ba5243e386.tar.zst dexon-solidity-d209e65b1d9ce3f49821970e96e027ba5243e386.zip |
Merge pull request #949 from chriseth/fallbackReturn
Disallow fallback function to return values.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/contracts.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst index e9fc4526..85592f5d 100644 --- a/docs/contracts.rst +++ b/docs/contracts.rst @@ -425,7 +425,8 @@ Fallback Function ***************** A contract can have exactly one unnamed function. This function cannot have -arguments and is executed on a call to the contract if none of the other +arguments and cannot return anything. +It is executed on a call to the contract if none of the other functions matches the given function identifier (or if no data was supplied at all). |