diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-08-24 22:23:00 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-08-24 22:23:00 +0800 |
commit | deeac7e2e0a1b8ffd0bbc709264d7bf37eb05536 (patch) | |
tree | c60783e5d37d453485cc06016d62376638e8c1bb /docs | |
parent | d3fd6a8800ddd15be509971b516bb823bbd93b86 (diff) | |
download | dexon-solidity-deeac7e2e0a1b8ffd0bbc709264d7bf37eb05536.tar dexon-solidity-deeac7e2e0a1b8ffd0bbc709264d7bf37eb05536.tar.gz dexon-solidity-deeac7e2e0a1b8ffd0bbc709264d7bf37eb05536.tar.bz2 dexon-solidity-deeac7e2e0a1b8ffd0bbc709264d7bf37eb05536.tar.lz dexon-solidity-deeac7e2e0a1b8ffd0bbc709264d7bf37eb05536.tar.xz dexon-solidity-deeac7e2e0a1b8ffd0bbc709264d7bf37eb05536.tar.zst dexon-solidity-deeac7e2e0a1b8ffd0bbc709264d7bf37eb05536.zip |
Rename statemutability to stateMutability in ABI/AST
Diffstat (limited to 'docs')
-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 036b1ac8..c0969cae 100644 --- a/docs/abi-spec.rst +++ b/docs/abi-spec.rst @@ -295,7 +295,7 @@ The JSON format for a contract's interface is given by an array of function and/ - `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 <view-functions>`); - `payable`: `true` if function accepts ether, defaults to `false`; -- `statemutability`: a string with one of the following values: `pure` (:ref:`specified to not read blockchain state <pure-functions>`), `view` (same as `constant` above), `nonpayable` and `payable` (same as `payable` above). +- `stateMutability`: a string with one of the following values: `pure` (:ref:`specified to not read blockchain state <pure-functions>`), `view` (same as `constant` above), `nonpayable` and `payable` (same as `payable` above). `type` can be omitted, defaulting to `"function"`. |