Merge pull request #7630 from ethereum/uppercasefix

Fix case-sensitivity depending on platform
This commit is contained in:
chriseth 2019-11-05 17:32:12 +01:00 committed by GitHub
commit 63a8691cc7
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();
}