Skip to content

Commit

Permalink
mr comments implemented
Browse files Browse the repository at this point in the history
  • Loading branch information
Yahav Amar committed Nov 1, 2023
1 parent a8bbe0b commit cf8130c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fireblocks_sdk/sdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit cf8130c

Please sign in to comment.