1
2
3
4
5
6
7
#[cfg(feature = "ethers-core")]
pub use ethers_core::types::Bytes;

#[cfg(not(feature = "ethers-core"))]
mod bytes;
#[cfg(not(feature = "ethers-core"))]
pub use crate::bytes::Bytes;