diff --git a/contracts/contracts/token/OUSD.sol b/contracts/contracts/token/OUSD.sol index dd5136f4cf..fef835706f 100644 --- a/contracts/contracts/token/OUSD.sol +++ b/contracts/contracts/token/OUSD.sol @@ -273,7 +273,6 @@ contract OUSD is Governable { uint256 userAllowance = allowances[_from][msg.sender]; require(_value <= userAllowance, "Allowance exceeded"); - unchecked { allowances[_from][msg.sender] = userAllowance - _value; }