statusAfterRound method

Future<NodeStatus> statusAfterRound(
  1. int round
)

Gets the node status after waiting for the given round.

Waits for a block to appear after round and returns the node's status at the time.

round is the round to wait until returning status

Throws an AlgorandException if there is an HTTP error.

Returns the current node status.

Implementation

Future<NodeStatus> statusAfterRound(int round) async {
  return _nodeRepository.statusAfterRound(round);
}