error.rs 238 B

123456789
  1. use anchor_lang::prelude::*;
  2. #[error_code]
  3. pub enum WorldError {
  4. #[msg("Invalid authority for instruction")]
  5. InvalidAuthority,
  6. #[msg("The provided world account does not match the expected PDA.")]
  7. WorldAccountMismatch,
  8. }