Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/JKorf/Binance.Net
Browse files Browse the repository at this point in the history
  • Loading branch information
JKorf committed Mar 29, 2021
2 parents 9a8609a + 136bf83 commit 4c0761d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Binance.Net/SubClients/BinanceClientWithdrawDeposit.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public async Task<WebCallResult<Dictionary<string, BinanceAssetDetails>>> GetAss
return new WebCallResult<Dictionary<string, BinanceAssetDetails>>(result.ResponseStatusCode, result.ResponseHeaders, null, result.Error);

return !result.Data.Success ?
new WebCallResult<Dictionary<string, BinanceAssetDetails>>(result.ResponseStatusCode, result.ResponseHeaders, null, _baseClient.ParseErrorResponseInternal(JToken.Parse(result.Data.Message!)))
new WebCallResult<Dictionary<string, BinanceAssetDetails>>(result.ResponseStatusCode, result.ResponseHeaders, null, _baseClient.ParseErrorResponseInternal(result.Data.Message!))
: new WebCallResult<Dictionary<string, BinanceAssetDetails>>(result.ResponseStatusCode, result.ResponseHeaders, result.Data.Data, null);
}
#endregion
Expand Down

0 comments on commit 4c0761d

Please sign in to comment.