Skip to content

Commit

Permalink
System.AggregateException #2 refixed!!
Browse files Browse the repository at this point in the history
  • Loading branch information
lisa3907 committed Oct 6, 2018
1 parent 4750bca commit cfca268
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions src/ccxt.net.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="2.1.2" />
<PackageReference Include="OdinSdk.BaseLib" Version="2.1.4" />
<PackageReference Include="RestSharp" Version="106.4.2" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="5.2.4" />
<PackageReference Include="Telegram.Bot" Version="14.10.0" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion src/poloniex/trade/tradeApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public async Task<List<PTradeOrderItem>> GetTrades(CurrencyPair currency_pair, D

var _json_result = TradeClient.GetResponseMessage(_json_value.Response);
if (_json_result.success == true)
_result = await TradeClient.CallApiPostAsync<List<PTradeOrderItem>>(__end_point, _params);
_result = TradeClient.DeserializeObject<List<PTradeOrderItem>>(_json_value.Content);

return _result;
}
Expand Down

0 comments on commit cfca268

Please sign in to comment.