Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/kraken/futures/trade.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
from __future__ import annotations

from typing import TypeVar
from urllib.parse import encode

from kraken.base_api import FuturesClient, defined

Expand Down Expand Up @@ -237,7 +238,7 @@ def create_batch_order(
return self.request( # type: ignore[return-value]
method="POST",
uri="/derivatives/api/v3/batchorder",
post_params=params,
post_params=encode(params),
auth=True,
extra_params=extra_params,
)
Expand Down