Skip to content

Commit

Permalink
alphabetical erros
Browse files Browse the repository at this point in the history
  • Loading branch information
Sabnock01 committed Nov 6, 2023
1 parent 5b0470c commit 6eee64f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/interfaces/ICurta.sol
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@ interface ICurta {
/// @param _puzzleId The ID of a puzzle.
error PuzzleDoesNotExist(uint32 _puzzleId);

/// @notice Emitted when a puzzle has a zero-length name.
error PuzzleNotNamed();

/// @notice Emitted when a puzzle is the zero address or the Curta address.
error PuzzleInvalidAddress();

Expand All @@ -51,6 +48,9 @@ interface ICurta {
/// @param _puzzleId The ID of a puzzle.
error PuzzleNotFermat(uint32 _puzzleId);

/// @notice Emitted when a puzzle has a zero-length name.
error PuzzleNotNamed();

/// @notice Emitted when a puzzle has not been solved yet.
/// @param _puzzleId The ID of a puzzle.
error PuzzleNotSolved(uint32 _puzzleId);
Expand Down

0 comments on commit 6eee64f

Please sign in to comment.