mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Remove w parameter for toHex.
This commit is contained in:
@@ -168,7 +168,7 @@ string AssemblyItem::toAssemblyText() const
|
||||
break;
|
||||
}
|
||||
case Push:
|
||||
text = toHex(toCompactBigEndian(data(), 1), 1, HexPrefix::Add);
|
||||
text = toHex(toCompactBigEndian(data(), 1), HexPrefix::Add);
|
||||
break;
|
||||
case PushString:
|
||||
text = string("data_") + toHex(data());
|
||||
|
||||
Reference in New Issue
Block a user