1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
use async_trait::async_trait;
use cfx_rpc_eth_api::TxPoolApiServer;
use cfx_rpc_eth_types::{
    TxpoolContent, TxpoolContentFrom, TxpoolInspect, TxpoolStatus,
};
use cfx_rpc_utils::error::jsonrpsee_error_helpers::internal_error as jsonrpsee_internal_error;
use cfx_types::{Address, Space, U64};
use cfxcore::SharedTransactionPool;
use jsonrpsee::core::RpcResult;

pub struct TxPoolApi {
    tx_pool: SharedTransactionPool,
}

impl TxPoolApi {
    pub fn new(tx_pool: SharedTransactionPool) -> Self { Self { tx_pool } }
}

#[async_trait]
impl TxPoolApiServer for TxPoolApi {
    async fn txpool_status(&self) -> RpcResult<TxpoolStatus> {
        Ok(TxpoolStatus {
            pending: U64::from(
                self.tx_pool.total_pending(Some(Space::Ethereum)),
            ),
            queued: U64::from(self.tx_pool.total_queued(Some(Space::Ethereum))),
        })
    }

    async fn txpool_inspect(&self) -> RpcResult<TxpoolInspect> {
        Err(jsonrpsee_internal_error("Not implemented"))
    }

    async fn txpool_content_from(
        &self, from: Address,
    ) -> RpcResult<TxpoolContentFrom> {
        let _ = from;
        Err(jsonrpsee_internal_error("Not implemented"))
    }

    async fn txpool_content(&self) -> RpcResult<TxpoolContent> {
        Err(jsonrpsee_internal_error("Not implemented"))
    }
}