Skip to content

Commit

Permalink
create_transaction argument fix, version 1.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-fireblocks committed Sep 28, 2021
1 parent 05fabdc commit 41d9669
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fireblocks_sdk/sdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,7 @@ def create_internal_wallet_asset(self, wallet_id, asset_id, address, tag=None, i
)


def create_transaction(self, asset_id, amount=None, source=None, destination=None, fee=None, gas_price=None, wait_for_status=False, tx_type=TRANSACTION_TRANSFER, note=None, network_fee=None, customer_ref_id=None, replace_tx_by_hash=None, extra_parameters=None, destinations=None, fee_level=None, fail_on_fee=None, max_fee=None, gas_limit=None, idempotency_key=None, external_tx_id=None):
def create_transaction(self, asset_id, amount=None, source=None, destination=None, fee=None, gas_price=None, wait_for_status=False, tx_type=TRANSACTION_TRANSFER, note=None, network_fee=None, customer_ref_id=None, replace_tx_by_hash=None, extra_parameters=None, destinations=None, fee_level=None, fail_on_fee=None, max_fee=None, gas_limit=None, idempotency_key=None, external_tx_id=None, treat_as_gross_amount=None):
"""Creates a new transaction
Args:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
setup(
name = 'fireblocks_sdk',
packages = ['fireblocks_sdk'],
version = '1.6.3',
version = '1.6.4',
license='MIT',
description = 'Fireblocks python SDK',
url = 'https://github.com/fireblocks/fireblocks-sdk-py',
download_url = 'https://github.com/fireblocks/fireblocks-sdk-py/archive/v1.6.3.tar.gz',
download_url = 'https://github.com/fireblocks/fireblocks-sdk-py/archive/v1.6.4.tar.gz',
keywords = ['Fireblocks', 'SDK'],
install_requires=[
'PyJWT==1.7.1',
Expand Down

0 comments on commit 41d9669

Please sign in to comment.