From e66bc6d1f278e26bf1d3a216badbd4de801bccad Mon Sep 17 00:00:00 2001 From: Trevor Richard Date: Mon, 18 Mar 2024 19:37:53 +0000 Subject: [PATCH] remove unused error definition --- src/PrizeVault.sol | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/PrizeVault.sol b/src/PrizeVault.sol index fafcff3..3be157a 100644 --- a/src/PrizeVault.sol +++ b/src/PrizeVault.sol @@ -202,9 +202,6 @@ contract PrizeVault is TwabERC20, Claimable, IERC4626, ILiquidationSource, Ownab /// @notice Thrown when the Liquidation Pair being set is the zero address. error LPZeroAddress(); - /// @notice Thrown when `sweep` is called but no underlying assets are currently held by the Vault. - error SweepZeroAssets(); - /// @notice Thrown during the liquidation process when the liquidation amount out is zero. error LiquidationAmountOutZero();