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 /ExpressionCompiler.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 'ExpressionCompiler.cpp')
-rw-r--r-- | ExpressionCompiler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ExpressionCompiler.cpp b/ExpressionCompiler.cpp index bff27e9c..61b17f66 100644 --- a/ExpressionCompiler.cpp +++ b/ExpressionCompiler.cpp @@ -542,7 +542,7 @@ bool ExpressionCompiler::visit(FunctionCall const& _functionCall) appendTypeConversion(*arguments[arg - 1]->getType(), *function.getParameterTypes()[arg - 1], true); } - if (!event.IsAnonymous()) + if (!event.isAnonymous()) { m_context << u256(h256::Arith(dev::sha3(function.getCanonicalSignature(event.getName())))); ++numIndexed; |