diff options
-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 {} } |