From 26b2b4d9a6130a1f8a30f00d70519f57ee548747 Mon Sep 17 00:00:00 2001 From: Liana Husikyan Date: Tue, 17 Mar 2015 10:48:46 +0100 Subject: [PATCH] changed the position of 'anonymous' keyword: event () anonymous. - style changes --- SolidityEndToEndTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SolidityEndToEndTest.cpp b/SolidityEndToEndTest.cpp index 05d2e3af8..b42916ce6 100644 --- a/SolidityEndToEndTest.cpp +++ b/SolidityEndToEndTest.cpp @@ -2206,7 +2206,7 @@ BOOST_AUTO_TEST_CASE(event_anonymous) { char const* sourceCode = R"( contract ClientReceipt { - event anonymous Deposit(); + event Deposit() anonymous; function deposit() { Deposit(); }