Skip to content

Commit

Permalink
Appease Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
HCastano committed Aug 22, 2024
1 parent 44bbcc0 commit 936bfd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/threshold-signature-server/src/user/api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit 936bfd0

Please sign in to comment.