Skip to content

Commit

Permalink
chore: fix unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
benluelo committed Mar 14, 2024
1 parent 3d8c499 commit cd67480
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/unionlabs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ pub use typenum;
use crate::{
ibc::core::client::height::{HeightFromStrError, IsHeight},
id::Bounded,
uint::U256,
validated::Validated,
};

Expand Down Expand Up @@ -264,7 +263,7 @@ where
{
fn encode(self) -> Vec<u8> {
// 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::<Vec<_>>()
Expand Down

0 comments on commit cd67480

Please sign in to comment.