Commit e68c9d61 by github-actions

Transpile c197b134

parent a4e82ad7
...@@ -26,7 +26,7 @@ library StringsUpgradeable { ...@@ -26,7 +26,7 @@ library StringsUpgradeable {
uint256 index = digits - 1; uint256 index = digits - 1;
temp = value; temp = value;
while (temp != 0) { while (temp != 0) {
buffer[index--] = byte(uint8(48 + temp % 10)); buffer[index--] = bytes1(uint8(48 + temp % 10));
temp /= 10; temp /= 10;
} }
return string(buffer); return string(buffer);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment