Replace dev::eth namespace with dev::lll in LLL

This commit is contained in:
Alex Beregszaszi
2018-07-28 12:00:36 +01:00
parent 705cbbc19a
commit 7c509137cf
15 changed files with 32 additions and 30 deletions
+2 -2
View File
@@ -39,13 +39,13 @@ namespace
bool successParse(std::string const& _source)
{
std::string ret = eth::parseLLL(_source);
std::string ret = lll::parseLLL(_source);
return ret.size() != 0;
}
std::string parse(std::string const& _source)
{
return eth::parseLLL(_source);
return lll::parseLLL(_source);
}
}