We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 252918d commit b81bbfaCopy full SHA for b81bbfa
App/Services/Utility/MarketChartHelper.cs
@@ -12,12 +12,12 @@ public static List<MarketChartPoint> MapMarketChartToMarketChartPoints(MarketCha
12
throw new MarketChartException($"{nameof(marketChart.Prices)} is null");
13
}
14
15
- if (marketChart?.MarketCaps is null)
+ if (marketChart.MarketCaps is null)
16
{
17
throw new MarketChartException($"{nameof(marketChart.MarketCaps)} is null");
18
19
20
- if (marketChart?.TotalVolumes is null)
+ if (marketChart.TotalVolumes is null)
21
22
throw new MarketChartException($"{nameof(marketChart.TotalVolumes)} is null");
23
0 commit comments