PoolInfoGet()
Retrieve a single pool with give parameters
Understanding Connector Object
Function Call
PoolInfoGet(0, 10);Example
Connector connect_ = new Connector("95.111.224.219", 9091);
NodeApi.PoolListGetResult PoolInfo = connect_.PoolInfoGet(0, 10);
Console.WriteLine(PoolInfo);Connect_ = Connector("165.22.212.253:9090")
print(Connect_.PoolInfoGet(0,5))var connect_ = new Connector("194.163.152.177", 9091);
connect_.PoolInfoGet(0,10).then((res) => {connect_.Close();console.log(res); });Output of Example
{PoolInfoGetResult}
Status: {APIResponse}
Code: 0
Message: "Success: "
IsFound: true
Pool: {Pool}
Hash: ...
PrevHash: ...
Time: 0
TransactionsCount: 1
PoolNumber: 0
Writer: ...
TotalFee: {Amount}
Integral: 0
Fraction: 0
Confidants: ...
RealTrusted: 0
NumberTrusted: 0Last updated
Was this helpful?