Skip to content

Commit

Permalink
Syntax fix
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-fireblocks committed Jun 25, 2020
1 parent 27ff19d commit f997da1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fireblocks_sdk/sdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ def create_vault_asset(self, vault_account_id, asset_id):

return self._post_request(f"/v1/vault/accounts/{vault_account_id}/{asset_id}")

def set_vault_account_customer_ref_id(vault_account_id, customer_ref_id):
def set_vault_account_customer_ref_id(self, vault_account_id, customer_ref_id):
"""Sets an AML/KYT customer reference ID for the vault account
Args:
Expand All @@ -298,7 +298,7 @@ def set_vault_account_customer_ref_id(vault_account_id, customer_ref_id):

return self._post_request(f"/v1/vault/accounts/{vault_account_id}/set_customer_ref_id", {"customerRefId": customer_ref_id or ''})

def set_vault_account_customer_ref_id_for_address(vault_account_id, asset_id, address, customer_ref_id=None):
def set_vault_account_customer_ref_id_for_address(self, vault_account_id, asset_id, address, customer_ref_id=None):
"""Sets an AML/KYT customer reference ID for the given address
Args:
Expand Down

0 comments on commit f997da1

Please sign in to comment.