mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	Merge pull request #7619 from ethereum/fix-case-error
Fix case-sensitivity depending on platform
This commit is contained in:
		
						commit
						73de089f4c
					
				| @ -258,7 +258,7 @@ Json::Value Assembly::createJsonValue(string _name, int _begin, int _end, string | |||||||
| string Assembly::toStringInHex(u256 _value) | string Assembly::toStringInHex(u256 _value) | ||||||
| { | { | ||||||
| 	std::stringstream hexStr; | 	std::stringstream hexStr; | ||||||
| 	hexStr << hex << _value; | 	hexStr << std::uppercase << hex << _value; | ||||||
| 	return hexStr.str(); | 	return hexStr.str(); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user