export: remove NotImplemented from RestoreBackupError

This commit is contained in:
pythcoiner 2025-03-19 07:52:13 +01:00
parent df8d98b275
commit 477e914801
No known key found for this signature in database
GPG Key ID: C1048AEEDF303B88

View File

@ -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"),
}
}