diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-08-22 06:41:46 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-08-23 01:25:46 +0800 |
commit | b1cdf81506de39502db0fb4a4b55ba8155f853ab (patch) | |
tree | 023cefa5a9f00b0e6a5bf84d02745ab8e6666121 /docs/abi-spec.rst | |
parent | 70bb1e74788b7c2938ab15e14ee048cf9a1a7743 (diff) | |
download | dexon-solidity-b1cdf81506de39502db0fb4a4b55ba8155f853ab.tar.gz dexon-solidity-b1cdf81506de39502db0fb4a4b55ba8155f853ab.tar.zst dexon-solidity-b1cdf81506de39502db0fb4a4b55ba8155f853ab.zip |
Document view functions
Diffstat (limited to 'docs/abi-spec.rst')
-rw-r--r-- | docs/abi-spec.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/abi-spec.rst b/docs/abi-spec.rst index a9110a0a..159bd6c7 100644 --- a/docs/abi-spec.rst +++ b/docs/abi-spec.rst @@ -293,7 +293,7 @@ The JSON format for a contract's interface is given by an array of function and/ * `name`: the name of the parameter; * `type`: the canonical type of the parameter. - `outputs`: an array of objects similar to `inputs`, can be omitted if function doesn't return anything; -- `constant`: `true` if function is :ref:`specified to not modify blockchain state <constant-functions>`); +- `constant`: `true` if function is :ref:`specified to not modify blockchain state <view-functions>`); - `payable`: `true` if function accepts ether, defaults to `false`; - `statemutability`: a string with one of the following values: `view` (same as `constant` above), `nonpayable` and `payable` (same as `payable` above). |