/// <summary>
 /// Stops the node and the server. Closes all connections
 /// </summary>
 /// <returns></returns>
 public static Task <bool> StopNodeAsync(this IPascalCoinClient client)
 {
     return(Task.Run(() => client.StopNode()));
 }