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 bf89eb1 commit 46d1381Copy full SHA for 46d1381
src/main/java/com/cryptomarket/sdk/rest/CryptomarketRestClientImpl.java
@@ -917,7 +917,7 @@ public List<Fee> getEstimateWithdrawalFees(List<FeeRequest> feeRequests) throws
917
public List<Fee> getBulkEstimateWithdrawalFees(List<FeeRequest> feeRequests) throws CryptomarketSDKException {
918
var payload = adapter.listToJson(feeRequests, FeeRequest.class);
919
String jsonResponse = httpClient.post(
920
- "wallet/crypto/fee/deposit/estimate/bulk",
+ "wallet/crypto/fee/estimate/bulk",
921
payload);
922
return adapter.listFromJson(jsonResponse, Fee.class);
923
}
0 commit comments