diff options
author | William Entriken <github.com@phor.net> | 2018-01-29 06:41:09 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-29 06:41:09 +0800 |
commit | 1cc31bacef4c7a679a160dc3582c47b8c9b216cf (patch) | |
tree | ffcf1b29bf35ffd73f3289cd1e21ad0e4753dee6 /docs/abi-spec.rst | |
parent | 053e6342767096be1db720484ec464151316b3e7 (diff) | |
download | dexon-solidity-1cc31bacef4c7a679a160dc3582c47b8c9b216cf.tar.gz dexon-solidity-1cc31bacef4c7a679a160dc3582c47b8c9b216cf.tar.zst dexon-solidity-1cc31bacef4c7a679a160dc3582c47b8c9b216cf.zip |
Remove useless self assignment
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 069abbfa..8095a3b7 100644 --- a/docs/abi-spec.rst +++ b/docs/abi-spec.rst @@ -192,7 +192,7 @@ Given the contract: contract Foo { function bar(bytes3[2]) public pure {} function baz(uint32 x, bool y) public pure returns (bool r) { r = x > 32 || y; } - function sam(bytes name, bool z, uint[] data) public pure {name=name; z=z; data=data;} + function sam(bytes, bool, uint[]) public pure {} } |