From 8d01b400e28bcc3d6a59a2e4eb4f9b11a08761ec Mon Sep 17 00:00:00 2001 From: Romain Ruetschi Date: Tue, 19 Mar 2024 11:34:35 +0100 Subject: [PATCH] Fix warning --- proto/src/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/proto/src/lib.rs b/proto/src/lib.rs index 0bef367b1..ebff4132f 100644 --- a/proto/src/lib.rs +++ b/proto/src/lib.rs @@ -9,11 +9,10 @@ extern crate alloc; mod error; mod prelude; -#[allow(warnings)] mod tendermint; use bytes::{Buf, BufMut}; -use core::{convert::TryFrom, fmt::Display}; +use core::fmt::Display; use prost::Message; pub use error::Error;