diff options
author | Liana Husikyan <liana@ethdev.com> | 2015-03-17 18:34:56 +0800 |
---|---|---|
committer | Liana Husikyan <liana@ethdev.com> | 2015-03-17 21:25:23 +0800 |
commit | 46cbb5525cd8c2f22667c605ee7ef4da34301797 (patch) | |
tree | 18d1bb89e3ce4a46ad04064bff90990a85cf6bfd /InterfaceHandler.cpp | |
parent | 5a5577f5a5e8ef590810651e55a9a3192a0bf31c (diff) | |
download | dexon-solidity-46cbb5525cd8c2f22667c605ee7ef4da34301797.tar.gz dexon-solidity-46cbb5525cd8c2f22667c605ee7ef4da34301797.tar.zst dexon-solidity-46cbb5525cd8c2f22667c605ee7ef4da34301797.zip |
added anonymous to ABI
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()) { |