1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
use crate::{
common::fuel_tx::TxId,
model::ArcPoolTx,
};
use anyhow::Result;
#[async_trait::async_trait]
pub trait TransactionPool {
/// Returns the number of pending transactions in the `TxPool`.
async fn pending_number(&self) -> Result<usize>;
async fn total_consumable_gas(&self) -> Result<u64>;
async fn remove_txs(&mut self, tx_ids: Vec<TxId>) -> Result<Vec<ArcPoolTx>>;
}