Skip to content

Commit

Permalink
Merge branch 'bug/coin-api-offline'
Browse files Browse the repository at this point in the history
  • Loading branch information
nwoolls committed Nov 19, 2014
2 parents 153e18b + 72265e2 commit aad4e48
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions MultiMiner.Win/Forms/MinerForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2027,6 +2027,10 @@ private Engine.Data.Configuration.Coin CoinConfigurationForDevice(Xgminer.Data.D

private void SaveCoinStatsToKnownCoins()
{
//coinApiInformation may be Null if Coin APIs are offline
if (coinApiInformation == null)
coinApiInformation = new List<CoinInformation>();

foreach (CoinInformation item in coinApiInformation)
{
//find existing known coin or create a knew one
Expand Down

0 comments on commit aad4e48

Please sign in to comment.