1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
use anchor_lang::prelude::*;

#[error_code]
pub enum ClockworkError {
    #[msg("The worker is already in the pool")]
    AlreadyInPool,

    #[msg("The commission rate must be an integer between 0 and 100")]
    InvalidCommissionRate,

    #[msg("You cannot request to unstake more tokens than are currently locked")]
    InvalidUnstakeAmount,

    #[msg("The penalty account has an insufficient balance for this operation")]
    InsufficientPenaltyBalance,

    #[msg("The authority address cannot be used as the worker signatory")]
    InvalidSignatory,

    #[msg("The registry is locked and may not be updated right now")]
    RegistryLocked,

    #[msg("The worker cannot rotate into the pool right now")]
    PoolFull,
}