Merge pull request #7619 from ethereum/fix-case-error

Fix case-sensitivity depending on platform
This commit is contained in:
Christian Parpart 2019-11-05 00:18:52 +01:00 committed by GitHub
commit 73de089f4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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