From 477e914801f3d9c0b06be56617a5dc2f3273d136 Mon Sep 17 00:00:00 2001 From: pythcoiner Date: Wed, 19 Mar 2025 07:52:13 +0100 Subject: [PATCH] export: remove NotImplemented from RestoreBackupError --- liana-gui/src/export.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/liana-gui/src/export.rs b/liana-gui/src/export.rs index be32cfe8..fa8bc9aa 100644 --- a/liana-gui/src/export.rs +++ b/liana-gui/src/export.rs @@ -995,7 +995,6 @@ pub enum RestoreBackupError { LianaConnectNotSupported, GetLabels, LabelsNotEmpty, - NotImplemented, InvalidPsbt, } @@ -1020,7 +1019,6 @@ impl Display for RestoreBackupError { f, "Cannot load labels: there is already labels into the database" ), - RestoreBackupError::NotImplemented => write!(f, "Not implemented"), RestoreBackupError::InvalidPsbt => write!(f, "Psbt is invalid"), } }