From 8470cabf226c44118e8cefca5042ba98994cf228 Mon Sep 17 00:00:00 2001 From: Kyrylo Stepanov Date: Mon, 11 Mar 2024 16:57:23 +0200 Subject: [PATCH] fix errors' comment typo --- programs/mpl-core/src/error.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/programs/mpl-core/src/error.rs b/programs/mpl-core/src/error.rs index 40f6be62..1c091a3c 100644 --- a/programs/mpl-core/src/error.rs +++ b/programs/mpl-core/src/error.rs @@ -93,15 +93,15 @@ pub enum MplCoreError { #[error("Missing update authority")] MissingUpdateAuthority, - /// 20 - Missing new owner + /// 21 - Missing new owner #[error("Missing new owner")] MissingNewOwner, - /// 21 - Missing system program + /// 22 - Missing system program #[error("Missing system program")] MissingSystemProgram, - /// 22 - Feature not available + /// 23 - Feature not available #[error("Feature not available")] NotAvailable, }