Skip to content

Commit 46d1381

Browse files
committed
fix: bulk fee withdrawal endpoint
1 parent bf89eb1 commit 46d1381

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/cryptomarket/sdk/rest/CryptomarketRestClientImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -917,7 +917,7 @@ public List<Fee> getEstimateWithdrawalFees(List<FeeRequest> feeRequests) throws
917917
public List<Fee> getBulkEstimateWithdrawalFees(List<FeeRequest> feeRequests) throws CryptomarketSDKException {
918918
var payload = adapter.listToJson(feeRequests, FeeRequest.class);
919919
String jsonResponse = httpClient.post(
920-
"wallet/crypto/fee/deposit/estimate/bulk",
920+
"wallet/crypto/fee/estimate/bulk",
921921
payload);
922922
return adapter.listFromJson(jsonResponse, Fee.class);
923923
}

0 commit comments

Comments
 (0)