Rename dev::sha3 to dev::keccak256

This commit is contained in:
Alex Beregszaszi
2016-10-06 14:53:40 +01:00
parent d5cfb17b32
commit aefb6e5fcf
17 changed files with 50 additions and 50 deletions
+1 -1
View File
@@ -302,7 +302,7 @@ dev::h256 CompilerStack::contractCodeHash(string const& _contractName) const
if (obj.bytecode.empty() || !obj.linkReferences.empty())
return dev::h256();
else
return dev::sha3(obj.bytecode);
return dev::keccak256(obj.bytecode);
}
Json::Value CompilerStack::streamAssembly(ostream& _outStream, string const& _contractName, StringMap _sourceCodes, bool _inJsonFormat) const