Fix case-sensitivity depending on platform

This commit is contained in:
Mathias Baumann 2019-11-04 17:00:48 +01:00
parent 9bec533453
commit 37d6fd9e21

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();
}