Skip to content

Commit

Permalink
Fix TUI spinners
Browse files Browse the repository at this point in the history
  • Loading branch information
phooton committed Jan 8, 2019
1 parent 481e70b commit dcea004
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/GrinGoldMinerCLI/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ static void Main(string[] args)
string pool = "";
string port = "13416";
Console.WriteLine($"Select minig pool (press number):");
Console.WriteLine($"[1] grinmint.com");
Console.WriteLine($"[1] US-east grinmint.com");
Console.WriteLine($"[2] mwgrinpool.com");
Console.WriteLine($"[3] Custom stratum address");
var key = Console.ReadLine();
Expand Down Expand Up @@ -227,7 +227,7 @@ static void Main(string[] args)
}
}
else
Task.Delay(10);
Task.Delay(100).Wait();
}
Close();

Expand Down Expand Up @@ -322,11 +322,11 @@ private static void WriteGUI()
WipeLines(5);
Console.WriteLine(Logger.GetlastLogs());
WipeLine();

Task.Delay(500).Wait();
}
break;
}

Task.Delay(500).Wait();
}
}

Expand Down

0 comments on commit dcea004

Please sign in to comment.