Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Raul committed Oct 20, 2023
1 parent 8b332b8 commit 2612014
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions contracts/lib/Errors.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import { IPAsset } from "contracts/lib/IPAsset.sol";
/// @title Errors
/// @notice Library for all contract errors, including a set of global errors.
library Errors {

////////////////////////////////////////////////////////////////////////////
// Globals //
////////////////////////////////////////////////////////////////////////////
Expand Down Expand Up @@ -77,7 +76,7 @@ library Errors {
////////////////////////////////////////////////////////////////////////////
// CollectPaymentModule //
////////////////////////////////////////////////////////////////////////////
//

/// @notice The configured collect module payment amount is invalid.
error CollectPaymentModule_AmountInvalid();

Expand Down Expand Up @@ -289,7 +288,10 @@ library Errors {
////////////////////////////////////////////////////////////////////////////

/// @notice Mismatch between parity of accounts and their respective allocations.
error RoyaltyNFT_AccountsAndAllocationsMismatch(uint256 accountsLength, uint256 allocationsLength);
error RoyaltyNFT_AccountsAndAllocationsMismatch(
uint256 accountsLength,
uint256 allocationsLength
);

/// @notice Invalid summation for royalty NFT allocations.
error RoyaltyNFT_InvalidAllocationsSum(uint32 allocationsSum);
Expand Down

0 comments on commit 2612014

Please sign in to comment.