Skip to content

Commit 76ebc8b

Browse files
author
abel
committed
(fix) Fixed chain stream subaccount deposit filter creation logic
1 parent 3950040 commit 76ebc8b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyinjective/composer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -867,7 +867,7 @@ def chain_stream_subaccount_deposits_filter(
867867
self,
868868
subaccount_ids: Optional[List[str]] = None,
869869
) -> chain_stream_query.SubaccountDepositsFilter:
870-
subaccount_ids = ["*"]
870+
subaccount_ids = subaccount_ids or ["*"]
871871
return chain_stream_query.SubaccountDepositsFilter(subaccount_ids=subaccount_ids)
872872

873873
def chain_stream_trades_filter(

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "injective-py"
3-
version = "0.10.dev4"
3+
version = "0.10.dev5"
44
description = "Injective Python SDK, with Exchange API Client"
55
authors = ["Injective Labs <[email protected]>"]
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)