From 936bfd0d03da251fa6a90ba890a675b27b79cba7 Mon Sep 17 00:00:00 2001 From: Hernando Castano Date: Thu, 22 Aug 2024 15:35:21 -0400 Subject: [PATCH] Appease Clippy --- crates/threshold-signature-server/src/user/api.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/threshold-signature-server/src/user/api.rs b/crates/threshold-signature-server/src/user/api.rs index fc25dac84..b410205f1 100644 --- a/crates/threshold-signature-server/src/user/api.rs +++ b/crates/threshold-signature-server/src/user/api.rs @@ -451,7 +451,7 @@ pub async fn confirm_jump_start( // TODO: Understand this better, potentially use sign_and_submit_default // or other method under sign_and_* - if !(who.encode() == NETWORK_PARENT_KEY.encode()) { + if who.encode() != NETWORK_PARENT_KEY.encode() { return Err(UserErr::UnableToConfirmJumpStart); }