diff options
Diffstat (limited to 'InterfaceHandler.cpp')
-rw-r--r-- | InterfaceHandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/InterfaceHandler.cpp b/InterfaceHandler.cpp index 2b855e24..406d1e24 100644 --- a/InterfaceHandler.cpp +++ b/InterfaceHandler.cpp @@ -70,7 +70,7 @@ std::unique_ptr<std::string> InterfaceHandler::getABIInterface(ContractDefinitio Json::Value event; event["type"] = "event"; event["name"] = it->getName(); - //todo add anonymous!; + event["anonymous"] = it->isAnonymous(); Json::Value params(Json::arrayValue); for (auto const& p: it->getParameters()) { |