diff --git a/test/JSON_test.sol b/test/JSON_test.sol index 91d8734b3..5cb7a48af 100644 --- a/test/JSON_test.sol +++ b/test/JSON_test.sol @@ -1,14 +1,14 @@ contract JSON_Test { event Log0(uint value); - event Log0Anonym (uint value) anonymous; + event Log0Anonym (uint value) ; event Log1(bool indexed aBool, uint value); - event Log1Anonym(bool indexed aBool, uint value) anonymous; + event Log1Anonym(bool indexed aBool, uint value) ; event Log2(bool indexed aBool, address indexed aAddress, uint value); - event Log2Anonym(bool indexed aBool, address indexed aAddress, uint value) anonymous; + event Log2Anonym(bool indexed aBool, address indexed aAddress, uint value) ; event Log3(bool indexed aBool, address indexed aAddress, bytes32 indexed aBytes32, uint value); - event Log3Anonym(bool indexed aBool, address indexed aAddress, bytes32 indexed aBytes32, uint value) anonymous; + event Log3Anonym(bool indexed aBool, address indexed aAddress, bytes32 indexed aBytes32, uint value) ; event Log4(bool indexed aBool, address indexed aAddress, bytes32 indexed aBytes32, int8 aInt8, uint value); - event Log4Anonym(bool indexed aBool, address indexed aAddress, bytes32 indexed aBytes32, int8 aInt8, uint value) anonymous; + event Log4Anonym(bool indexed aBool, address indexed aAddress, bytes32 indexed aBytes32, int8 aInt8, uint value) ; function JSON_Test() { @@ -38,9 +38,9 @@ myAddress = _address; } - //function setBytes0(bytes0 _bytes0) { - // myBytes0 = _bytes0; - //} + function setBytes0(bytes0 _bytes0) { + myBytes0 = _bytes0; + } function setBytes32(bytes32 _bytes32) { myBytes32 = _bytes32; @@ -70,9 +70,9 @@ return myAddress; } - //function getBytes0() returns (bytes0 ret) { - // return myBytes0; - //} + function getBytes0() returns (bytes0 ret) { + return myBytes0; + } function getBytes32() returns (bytes32 ret) { return myBytes32; @@ -124,7 +124,7 @@ int256 myInt256; uint256 myUint256; address myAddress; - //bytes0 myBytes0; + bytes0 myBytes0; bytes32 myBytes32; }