Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
phanigovindaraju committed Aug 5, 2024
1 parent 4f57206 commit 0d35b26
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions fireblocks_sdk/sdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -2900,11 +2900,10 @@ def get_linked_token(self, id: str):
def get_linked_tokens_count(self):
return self._get_request(f"/v1/tokenization/tokens/count")

def link_token(self, type: TokenLinkType, ref_id: str = None,
display_name: Optional[str] = None):
def link_token(self, type: TokenLinkType, ref_id: str = None, display_name: Optional[str] = None):
body = {
"type": type,
"refId": ref_id
"refId": ref_id,
}

if display_name:
Expand All @@ -2917,7 +2916,7 @@ def link_contract_by_address(self, type: TokenLinkType, base_asset_id: str = Non
body = {
"type": type,
"baseAssetId": base_asset_id,
"contractAddress": contract_address
"contractAddress": contract_address,
}

if display_name:
Expand Down

0 comments on commit 0d35b26

Please sign in to comment.