#[derive(Debug, Clone)]
pub struct Config {
pub max_tx: usize,
pub max_depth: usize,
pub min_gas_price: u64,
pub min_byte_price: u64,
}
impl Default for Config {
fn default() -> Self {
Self {
max_tx: 4064,
max_depth: 10,
min_gas_price: 0,
min_byte_price: 0,
}
}
}