Fix case-sensitivity depending on platform

This commit is contained in:
Mathias Baumann 2019-11-04 17:00:48 +01:00
parent 106d8ec3b6
commit 6705420325

View File

@ -258,7 +258,7 @@ Json::Value Assembly::createJsonValue(string _name, int _begin, int _end, string
string Assembly::toStringInHex(u256 _value)
{
std::stringstream hexStr;
hexStr << hex << _value;
hexStr << std::uppercase << hex << _value;
return hexStr.str();
}