From f2a5ee13a90ccbb9b3cf535c3b18d248e080701b Mon Sep 17 00:00:00 2001 From: roleengineer Date: Thu, 16 Jan 2025 11:20:37 +0100 Subject: [PATCH] removed unused error --- src/factory/CirclesBackingFactory.sol | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/factory/CirclesBackingFactory.sol b/src/factory/CirclesBackingFactory.sol index 399b2b0..6d2c62c 100644 --- a/src/factory/CirclesBackingFactory.sol +++ b/src/factory/CirclesBackingFactory.sol @@ -30,9 +30,7 @@ contract CirclesBackingFactory { error UnsupportedBackingAsset(address requestedAsset); /// Deployment of CirclesBacking instance initiated by user `backer` has failed. error CirclesBackingDeploymentFailed(address backer); - /// Missing approval of this address to spend personal CRC. - error PersonalCirclesApprovalIsMissing(); - /// Method can be called only by instance of CirclesBacking deployed by this factory. + /// Method can be called only by CirclesBacking instance deployed by this factory. error OnlyCirclesBacking(); /// Unauthorized access. error NotAdmin(); @@ -40,9 +38,9 @@ contract CirclesBackingFactory { error OnlyTwoTokenLBPSupported(); // Events - /// @notice Emitted when a CirclesBacking is created. + /// @notice Emitted when a CirclesBacking instance is created. event CirclesBackingDeployed(address indexed backer, address indexed circlesBackingInstance); - /// @notice Emitted when a LBP is created. + /// @notice Emitted when a LBP instance is created. event LBPDeployed(address indexed circlesBackingInstance, address indexed lbp); /// @notice Emitted when a Circles backing process is initiated. event CirclesBackingInitiated(