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 3950040 commit 76ebc8bCopy full SHA for 76ebc8b
pyinjective/composer.py
@@ -867,7 +867,7 @@ def chain_stream_subaccount_deposits_filter(
867
self,
868
subaccount_ids: Optional[List[str]] = None,
869
) -> chain_stream_query.SubaccountDepositsFilter:
870
- subaccount_ids = ["*"]
+ subaccount_ids = subaccount_ids or ["*"]
871
return chain_stream_query.SubaccountDepositsFilter(subaccount_ids=subaccount_ids)
872
873
def chain_stream_trades_filter(
pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
2
name = "injective-py"
3
-version = "0.10.dev4"
+version = "0.10.dev5"
4
description = "Injective Python SDK, with Exchange API Client"
5
authors = ["Injective Labs <[email protected]>"]
6
license = "Apache-2.0"
0 commit comments