From 065b3891f226c32f91afeb6fbeb9bbd738509ddd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C4=99drzej=20Stuczy=C5=84ski?= Date: Wed, 9 Oct 2024 16:40:13 +0100 Subject: [PATCH] removed unused error variant --- nym-wallet/src-tauri/src/error.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nym-wallet/src-tauri/src/error.rs b/nym-wallet/src-tauri/src/error.rs index 573e931b6b..26f7bea95d 100644 --- a/nym-wallet/src-tauri/src/error.rs +++ b/nym-wallet/src-tauri/src/error.rs @@ -164,9 +164,9 @@ pub enum BackendError { #[error("there aren't any vesting delegations to migrate")] NoVestingDelegations, - - #[error("this operation is no longer allowed to be performed with vesting tokens. please move them to your liquid balance and try again")] - DisabledVestingOperation, + // + // #[error("this operation is no longer allowed to be performed with vesting tokens. please move them to your liquid balance and try again")] + // DisabledVestingOperation, } impl Serialize for BackendError {