public override Task <JArray> ExecuteAsync(IClient client) { var txpoolBesuTransactions = new TxpoolBesuTransactions(client); return(txpoolBesuTransactions.SendRequestAsync()); }
public TxPoolApiService(IClient client) : base(client) { BesuStatistics = new TxpoolBesuStatistics(client); BesuTransactions = new TxpoolBesuTransactions(client); }