mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
primitives: rm TxKind reexport (#11197)
This commit is contained in:
@ -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};
|
||||
|
||||
@ -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.
|
||||
|
||||
@ -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;
|
||||
|
||||
Reference in New Issue
Block a user