diff options
author | Liana Husikyan <liana@ethdev.com> | 2015-03-17 02:19:34 +0800 |
---|---|---|
committer | Liana Husikyan <liana@ethdev.com> | 2015-03-17 17:51:03 +0800 |
commit | 2986ecbd753ad0e3f76c98280e68f7f9a464518f (patch) | |
tree | d5df83f4c6fef2b1a2b041a0c7f1beb48e4a0f23 /InterfaceHandler.cpp | |
parent | fc0bdc3d81189b52314c67e0b1d77c451b7b7091 (diff) | |
download | dexon-solidity-2986ecbd753ad0e3f76c98280e68f7f9a464518f.tar.gz dexon-solidity-2986ecbd753ad0e3f76c98280e68f7f9a464518f.tar.zst dexon-solidity-2986ecbd753ad0e3f76c98280e68f7f9a464518f.zip |
Added anonymous flag to event.
added test
Diffstat (limited to 'InterfaceHandler.cpp')
-rw-r--r-- | InterfaceHandler.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/InterfaceHandler.cpp b/InterfaceHandler.cpp index 99a7db96..2b855e24 100644 --- a/InterfaceHandler.cpp +++ b/InterfaceHandler.cpp @@ -70,6 +70,7 @@ std::unique_ptr<std::string> InterfaceHandler::getABIInterface(ContractDefinitio Json::Value event; event["type"] = "event"; event["name"] = it->getName(); + //todo add anonymous!; Json::Value params(Json::arrayValue); for (auto const& p: it->getParameters()) { |