diff --git a/contracts/libraries/UniERC20.sol b/contracts/libraries/UniERC20.sol index e3cea477..fdedde71 100644 --- a/contracts/libraries/UniERC20.sol +++ b/contracts/libraries/UniERC20.sol @@ -96,7 +96,9 @@ library UniERC20 { if (success && data.length == 32) { uint256 len = 0; while (len < data.length && data[len] >= 0x20 && data[len] <= 0x7E) { - len++; + unchecked { + len++; + } } if (len > 0) {