From 5d08b2ce33e70a87bce932c8b89512659d8af57a Mon Sep 17 00:00:00 2001 From: link2xt Date: Wed, 29 Nov 2023 03:33:10 +0000 Subject: [PATCH] refactor: remove unused PeerstateVerifiedStatus --- src/peerstate.rs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/peerstate.rs b/src/peerstate.rs index 2dbb52d6f..c998dfbaa 100644 --- a/src/peerstate.rs +++ b/src/peerstate.rs @@ -26,17 +26,6 @@ pub enum PeerstateKeyType { PublicKey, } -/// Verification status of the contact peerstate. -#[derive(Debug, PartialEq, Eq, Clone, Copy, FromPrimitive)] -#[repr(u8)] -pub enum PeerstateVerifiedStatus { - /// Peerstate is not verified. - Unverified = 0, - //Verified = 1, // not used - /// Peerstate is verified and we assume that the contact has verified our peerstate. - BidirectVerified = 2, -} - /// Peerstate represents the state of an Autocrypt peer. #[derive(Debug, PartialEq, Eq, Clone)] pub struct Peerstate {