Skip to content

Commit

Permalink
removed unused error
Browse files Browse the repository at this point in the history
  • Loading branch information
roleengineer committed Jan 16, 2025
1 parent 11e3532 commit f2a5ee1
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/factory/CirclesBackingFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,17 @@ 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();
/// Exit Liquidity Bootstraping Pool supports only two tokens pools.
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(
Expand Down

0 comments on commit f2a5ee1

Please sign in to comment.