Skip to content

Commit

Permalink
Fixing the last commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
bonesoul committed Oct 22, 2014
1 parent 3799918 commit 22504b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/CoiniumServ/CoiniumServ.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@
<Compile Include="Markets\IMarketData.cs" />
<Compile Include="Markets\MarketData.cs" />
<Compile Include="Server\Web\Modules\TosModule.cs" />
<Compile Include="Utils\Extensions\Linq.cs" />
<Compile Include="Utils\Extensions\LinqExtensions.cs" />
<Compile Include="Utils\Helpers\Humanize.cs" />
<Compile Include="Configuration\IJsonConfigReader.cs" />
<Compile Include="Daemon\Converters\DifficultyConverter.cs" />
Expand Down
2 changes: 1 addition & 1 deletion src/CoiniumServ/Markets/MarketManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public IMarketData GetBestMarketFor(string marketCurrency, string baseCurrency)
_storage.Where(x => x.MarketCurrency == marketCurrency && x.BaseCurrency == baseCurrency)
.MaxBy(x => x.Bid);
}
catch (Exception e)
catch (Exception)
{
return null;
}
Expand Down

0 comments on commit 22504b3

Please sign in to comment.