Merge pull request #3150 from walter-weinmann/develop

abi-spec: example code doesn't fit grammar.txt.
This commit is contained in:
Alex Beregszaszi 2017-10-29 13:28:34 +00:00 committed by GitHub
commit eb140bc6d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;
} }