Closed ronaldmannak closed 2 years ago
Wei.hexString() mistakenly used utf-8 encoded values instead of decimals, resulting in decimal 0 WEI being converted to 0x30 WEI. hexString now uses String(value, radix: 16).addHexPrefix() to return the correct value.
Wei.hexString()
String(value, radix: 16).addHexPrefix()
Wei.hexString()
mistakenly used utf-8 encoded values instead of decimals, resulting in decimal 0 WEI being converted to 0x30 WEI. hexString now usesString(value, radix: 16).addHexPrefix()
to return the correct value.