SyncState()
Retrieve Sync Status of the give node (IP/PORT)
Before calling the function make sure you have the Connector object initialized.
Understanding Connector ObjectFunction Call
SyncState();Example
Connector connect_ = new Connector("95.111.224.219", 9091);
NodeApi.SyncStateResult Sync_Report = connect_.SyncState(424078, 0);
Console.WriteLine(Sync_Report);Connect_ = Connector("165.22.212.253:9090")
print(Connect_.SyncState())var connect_ = new Connector("194.163.152.177", 9091);
connect_.SyncState().then((res) => {connect_.Close();console.log(res); });Output of Example
Output is printed via ObjectDumper
{SyncStateResult}
Status: {APIResponse}
Code: 0
Message: "Success: "
CurrRound: 1325136
LastBlock: 1325135Last updated
Was this helpful?