From 018544b7752c3ccce0f17dac7f0ae99198904553 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Thu, 9 Sep 2021 20:32:37 +0200 Subject: [PATCH] fix(crypto): Remove some dead code --- matrix_sdk_crypto/src/machine.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/matrix_sdk_crypto/src/machine.rs b/matrix_sdk_crypto/src/machine.rs index 9b098e9e..f458e936 100644 --- a/matrix_sdk_crypto/src/machine.rs +++ b/matrix_sdk_crypto/src/machine.rs @@ -102,7 +102,6 @@ pub struct OlmMachine { /// State machine handling public user identities and devices, keeping track /// of when a key query needs to be done and handling one. identity_manager: IdentityManager, - cross_signing_request: Arc>>, } #[cfg(not(tarpaulin_include))] @@ -190,7 +189,6 @@ impl OlmMachine { verification_machine, key_request_machine, identity_manager, - cross_signing_request: Arc::new(Mutex::new(None)), } }