primitives: rm TxKind reexport (#11197)

This commit is contained in:
Thomas Coratger
2024-09-25 13:07:05 +02:00
committed by GitHub
parent 9165f4c51d
commit 4884c0003a
6 changed files with 11 additions and 8 deletions

View File

@ -75,7 +75,7 @@ pub use alloy_primitives::{
eip191_hash_message, hex, hex_literal, keccak256, ruint,
utils::format_ether,
Address, BlockHash, BlockNumber, Bloom, BloomInput, Bytes, ChainId, Selector, StorageKey,
StorageValue, TxHash, TxIndex, TxKind, TxNumber, B128, B256, B512, B64, U128, U256, U64, U8,
StorageValue, TxHash, TxIndex, TxNumber, B128, B256, B512, B64, U128, U256, U64, U8,
};
pub use reth_ethereum_forks::*;
pub use revm_primitives::{self, JumpTable};

View File

@ -1,4 +1,5 @@
use crate::{Address, Transaction, TransactionSigned, TxKind, U256};
use crate::{Address, Transaction, TransactionSigned, U256};
use alloy_primitives::TxKind;
use revm_primitives::{AuthorizationList, TxEnv};
/// Implements behaviour to fill a [`TxEnv`] from another transaction.

View File

@ -1,7 +1,8 @@
//! Transaction types.
use crate::{keccak256, Address, BlockHashOrNumber, Bytes, TxHash, TxKind, B256, U256};
use crate::{keccak256, Address, BlockHashOrNumber, Bytes, TxHash, B256, U256};
use alloy_eips::eip7702::SignedAuthorization;
use alloy_primitives::TxKind;
use alloy_consensus::SignableTransaction;
use alloy_eips::eip2930::AccessList;