#[derive(Debug, Clone)]pubstructConfig{/// Maximum number of transactions inside the pool
pubmax_tx:usize,
/// max depth of connected UTXO excluding contracts
pubmax_depth:usize,
/// The minimum allowed gas price
pubmin_gas_price:u64,
}implDefault forConfig{fndefault()->Self{Self{
max_tx:4064,
max_depth:10,
min_gas_price:0,}}}