Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ async def main() -> None:
skip = 1
limit = 2
pagination = PaginationOption(skip=skip, limit=limit)
orders = await client.fetch_subaccount_orders_list(
orders = await client.fetch_derivative_subaccount_orders_list(
subaccount_id=subaccount_id, market_id=market_id, pagination=pagination
)
print(orders)
Expand Down
2 changes: 1 addition & 1 deletion pyinjective/async_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1978,7 +1978,7 @@ async def fetch_derivative_liquidable_positions(
pagination=pagination,
)

async def fetch_subaccount_orders_list(
async def fetch_derivative_subaccount_orders_list(
self,
subaccount_id: str,
market_id: Optional[str] = None,
Expand Down
Loading