fix: Move encode_input back into encoding_utils.rs

We don't want the user to be able to use it outside the crate

Took 16 minutes
This commit is contained in:
Diana Carvalho
2025-05-27 12:12:47 +01:00
parent 73c1a2db6a
commit 92d36b9f48
4 changed files with 33 additions and 29 deletions

View File

@@ -17,7 +17,10 @@ use tycho_common::Bytes;
use crate::encoding::{
errors::EncodingError,
evm::utils::{biguint_to_u256, bytes_to_address, encode_input, get_client, get_runtime},
evm::{
encoding_utils::encode_input,
utils::{biguint_to_u256, bytes_to_address, get_client, get_runtime},
},
models,
};