chore: make clippy happy (#6666)

This commit is contained in:
Dan Cline
2024-02-19 01:31:47 -05:00
committed by GitHub
parent 79f1fa3c10
commit 79452eadaf
86 changed files with 106 additions and 241 deletions

View File

@ -23,7 +23,6 @@ use secp256k1::{
};
use sha2::Sha256;
use sha3::Keccak256;
use std::convert::TryFrom;
const PROTOCOL_VERSION: usize = 4;

View File

@ -149,7 +149,7 @@ where
mod tests {
use super::*;
use crate::util::pk2id;
use secp256k1::{rand, SECP256K1};
use secp256k1::SECP256K1;
use tokio::net::{TcpListener, TcpStream};
#[tokio::test]