diff options
author | Liana Husikyan <liana@ethdev.com> | 2015-03-25 20:58:15 +0800 |
---|---|---|
committer | Liana Husikyan <liana@ethdev.com> | 2015-03-25 21:20:13 +0800 |
commit | 8f747aab0f977e62c344f57fe922ba6b0fda3a64 (patch) | |
tree | f90a3d47e3b0dafcbd4f16094edf7f6bf69de1d5 /ExpressionCompiler.cpp | |
parent | 9986b072ad471908df4402ef860e58e331035948 (diff) | |
download | dexon-solidity-8f747aab0f977e62c344f57fe922ba6b0fda3a64.tar.gz dexon-solidity-8f747aab0f977e62c344f57fe922ba6b0fda3a64.tar.zst dexon-solidity-8f747aab0f977e62c344f57fe922ba6b0fda3a64.zip |
tests for external types
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 90568767..ddc347e6 100644 --- a/ExpressionCompiler.cpp +++ b/ExpressionCompiler.cpp @@ -544,7 +544,7 @@ bool ExpressionCompiler::visit(FunctionCall const& _functionCall) } if (!event.isAnonymous()) { - m_context << u256(h256::Arith(dev::sha3(function.externalSignature(event.getName())))); + m_context << u256(h256::Arith(dev::sha3(function.externalSignature(false, event.getName())))); ++numIndexed; } solAssert(numIndexed <= 4, "Too many indexed arguments."); |