solana-feature-gate-program 0.0.1

Solana Feature Gate Program
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Program error types

use spl_program_error::*;

/// Program specific errors
#[spl_program_error]
pub enum FeatureGateError {
    /// Feature already activated
    #[error("Feature already activated")]
    FeatureAlreadyActivated,
}