PoolTransactionsGet()

Retrieve Transactions for Given Block

Before calling the function make sure you have the Connector object initialized.

Understanding Connector Object

Function Call

Field

Type

Description

Sequence

long

Sequence/Block Number

OffSet

long

Offset enables you to search 10 Transactions later or any given number

Limit

long

The maximum amount of transactions you want to retrieve in 1 Function call

PoolTransactionsGet(151110, 0, 10);

Return value of function: PoolTransactionsGetResult

Example

Connector connect_ = new Connector("95.111.224.219", 9091);
NodeApi.PoolTransactionsGetResult PoolTransactions = connect_.PoolTransactionsGet("4SFfA1S2xfA3BdgkTn2tK14yDhLuD11RVz78kqx35jct", 0, 10);
Console.WriteLine(PoolTransactions);

Return value of function: PoolTransactionsGetResult

Output of Example

Output is printed via ObjectDumper

{PoolTransactionsGetResult}
  Status: {APIResponse}
    Code: 0
    Message: "Success: "
  Transactions: ...

Last updated

Was this helpful?