diff options
author | chriseth <chris@ethereum.org> | 2018-08-09 06:29:40 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-09 06:29:40 +0800 |
commit | 5cd5a9652cfef6b6b318916ae74cd290b69f5187 (patch) | |
tree | a3396e696e8c144ceb6e6a682cc286657a03ddcc /libsolidity/codegen/ExpressionCompiler.cpp | |
parent | cbd64e0e1183869671b394ea98b774f7b7445665 (diff) | |
parent | ed52f422b78b262c6d0e2e88b45e6cbeec470dc7 (diff) | |
download | dexon-solidity-5cd5a9652cfef6b6b318916ae74cd290b69f5187.tar dexon-solidity-5cd5a9652cfef6b6b318916ae74cd290b69f5187.tar.gz dexon-solidity-5cd5a9652cfef6b6b318916ae74cd290b69f5187.tar.bz2 dexon-solidity-5cd5a9652cfef6b6b318916ae74cd290b69f5187.tar.lz dexon-solidity-5cd5a9652cfef6b6b318916ae74cd290b69f5187.tar.xz dexon-solidity-5cd5a9652cfef6b6b318916ae74cd290b69f5187.tar.zst dexon-solidity-5cd5a9652cfef6b6b318916ae74cd290b69f5187.zip |
Merge pull request #4775 from ethereum/sha3-to-keccak256
Rename FunctionKind SHA3 to KECCAK256 (as the instruction was renamed in libevmasm)
Diffstat (limited to 'libsolidity/codegen/ExpressionCompiler.cpp')
-rw-r--r-- | libsolidity/codegen/ExpressionCompiler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/codegen/ExpressionCompiler.cpp b/libsolidity/codegen/ExpressionCompiler.cpp index 54518906..412a7255 100644 --- a/libsolidity/codegen/ExpressionCompiler.cpp +++ b/libsolidity/codegen/ExpressionCompiler.cpp @@ -701,7 +701,7 @@ bool ExpressionCompiler::visit(FunctionCall const& _functionCall) m_context.appendRevert(); break; } - case FunctionType::Kind::SHA3: + case FunctionType::Kind::KECCAK256: { solAssert(arguments.size() == 1, ""); solAssert(!function.padArguments(), ""); |