1use steel::*;
2
3#[derive(Debug, Error, Clone, Copy, PartialEq, Eq, IntoPrimitive)]
4#[repr(u32)]
5pub enum BoostError {
6 #[error("This boost is curerntly locked for checkpointing. Withdraws will be opened after the checkpoint is finalized.")]
7 BoostLocked,
8}
9
10error!(BoostError);