abi-spec: example code doesn't fit grammar.txt.

This commit is contained in:
walter-weinmann 2017-10-29 11:57:01 +01:00
parent f9b240096f
commit fcf66721da

View File

@ -334,8 +334,8 @@ For example,
contract Test { contract Test {
function Test(){ b = 0x12345678901234567890123456789012; } function Test(){ b = 0x12345678901234567890123456789012; }
event Event(uint indexed a, bytes32 b) event Event(uint indexed a, bytes32 b);
event Event2(uint indexed a, bytes32 b) event Event2(uint indexed a, bytes32 b);
function foo(uint a) { Event(a, b); } function foo(uint a) { Event(a, b); }
bytes32 b; bytes32 b;
} }