chartGetPeerLocationsFuture method

Future<Message> chartGetPeerLocationsFuture()

Return: A list of unique peers.

Implementation

Future<Message> chartGetPeerLocationsFuture() async {
  var msg = await ZeroNet.instance.cmdFuture(
    ZeroNetCmd.chartGetPeerLocations,
  );
  return msg.toMessage();
}