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
@@ -296,7 +296,7 @@ AssemblyItem const& Assembly::append(AssemblyItem const& _i)
AssemblyItem Assembly::newPushLibraryAddress(string const& _identifier)
{
h256 h(dev::sha3(_identifier));
h256 h(dev::keccak256(_identifier));
m_libraries[h] = _identifier;
return AssemblyItem(PushLibraryAddress, h);
}