primitive-traits: use alloy MIN_PROTOCOL_BASE_FEE constant (#12037)

This commit is contained in:
Thomas Coratger
2024-10-24 14:29:24 +02:00
committed by GitHub
parent 8b317f206f
commit bea6e278df
7 changed files with 10 additions and 40 deletions

View File

@ -1,10 +1,9 @@
//! Transaction pool arguments
use crate::cli::config::RethTransactionPoolConfig;
use alloy_eips::eip1559::ETHEREUM_BLOCK_GAS_LIMIT;
use alloy_eips::eip1559::{ETHEREUM_BLOCK_GAS_LIMIT, MIN_PROTOCOL_BASE_FEE};
use alloy_primitives::Address;
use clap::Args;
use reth_primitives::constants::MIN_PROTOCOL_BASE_FEE;
use reth_transaction_pool::{
blobstore::disk::DEFAULT_MAX_CACHED_BLOBS,
pool::{NEW_TX_LISTENER_BUFFER_SIZE, PENDING_TX_LISTENER_BUFFER_SIZE},