primitives: rm alloy Withdrawal reexport (#12487)

This commit is contained in:
Thomas Coratger
2024-11-13 00:15:50 +01:00
committed by GitHub
parent a71dd9c91f
commit ce50370ba5
2 changed files with 1 additions and 6 deletions

View File

@ -41,7 +41,6 @@ pub use block::{
}; };
mod withdrawal; mod withdrawal;
pub use withdrawal::Withdrawal;
mod error; mod error;
pub use error::{GotExpected, GotExpectedBoxed}; pub use error::{GotExpected, GotExpectedBoxed};

View File

@ -1,12 +1,8 @@
//! [EIP-4895](https://eips.ethereum.org/EIPS/eip-4895) Withdrawal types. //! [EIP-4895](https://eips.ethereum.org/EIPS/eip-4895) Withdrawal types.
/// Re-export from `alloy_eips`.
#[doc(inline)]
pub use alloy_eips::eip4895::Withdrawal;
#[cfg(test)] #[cfg(test)]
mod tests { mod tests {
use super::*; use alloy_eips::eip4895::Withdrawal;
use alloy_primitives::Address; use alloy_primitives::Address;
use alloy_rlp::{RlpDecodable, RlpEncodable}; use alloy_rlp::{RlpDecodable, RlpEncodable};
use proptest::proptest; use proptest::proptest;