PoolTransactionsGet()
Retrieve Transactions for Given Block
Before calling the function make sure you have the Connector object initialized.
Understanding Connector ObjectFunction 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);
Example
Connector connect_ = new Connector("95.111.224.219", 9091);
NodeApi.PoolTransactionsGetResult PoolTransactions = connect_.PoolTransactionsGet("4SFfA1S2xfA3BdgkTn2tK14yDhLuD11RVz78kqx35jct", 0, 10);
Console.WriteLine(PoolTransactions);
Output of Example
Output is printed via ObjectDumper
{PoolTransactionsGetResult}
Status: {APIResponse}
Code: 0
Message: "Success: "
Transactions: ...
Last updated
Was this helpful?