diff --git a/lib/unionlabs/src/lib.rs b/lib/unionlabs/src/lib.rs index cc9d4c8c27..9ebe70d334 100644 --- a/lib/unionlabs/src/lib.rs +++ b/lib/unionlabs/src/lib.rs @@ -22,7 +22,6 @@ pub use typenum; use crate::{ ibc::core::client::height::{HeightFromStrError, IsHeight}, id::Bounded, - uint::U256, validated::Validated, }; @@ -264,7 +263,7 @@ where { fn encode(self) -> Vec { // Prefixed by the offset at which the 'dynamic' tuple is starting - ethers_core::abi::AbiEncode::encode(U256::from(32)) + ethers_core::abi::AbiEncode::encode(crate::uint::U256::from(32)) .into_iter() .chain(self.0.encode()) .collect::>()