diff --git a/fireblocks_sdk/sdk.py b/fireblocks_sdk/sdk.py index 5887f7c..b301447 100644 --- a/fireblocks_sdk/sdk.py +++ b/fireblocks_sdk/sdk.py @@ -124,7 +124,7 @@ def get_staking_chain_info(self, chain_descriptor: str): """Get staking positions summary.""" def get_staking_positions_summary(self, by_vault: bool = None): return self._get_request(f"/v1/staking/positions/summary", - query_params={"byVault": "true" if by_vault else "false"} if by_vault else None) + query_params={"byVault": "true"} if by_vault else None) """Execute staking action on a chain.""" def execute_staking_action(self, chain_descriptor: str, action_id: str, request_body):