From 11aa992afc92b9af57c6024f7c92de7e9b5291ad Mon Sep 17 00:00:00 2001 From: Michael Poluy Date: Wed, 6 May 2020 11:56:37 +0300 Subject: [PATCH] version update and new argument comment --- fireblocks_sdk/sdk.py | 3 ++- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/fireblocks_sdk/sdk.py b/fireblocks_sdk/sdk.py index e63c3c8..30c5fa8 100644 --- a/fireblocks_sdk/sdk.py +++ b/fireblocks_sdk/sdk.py @@ -346,7 +346,8 @@ def create_transaction(self, asset_id, amount, source, destination=None , fee=No source (TransferPeerPath): The transfer source destination (DestinationTransferPeerPath, optional): The transfer destination. Leave empty (None) if the transaction has no destination amount (double): The amount - fee (double, optional): The fee + fee (double, optional): Sathoshi/Latoshi per byte. + gas_price (number, optional): gasPrice for ETH and ERC-20 transactions. wait_for_status (bool, optional): If true, waits for transaction status. Default is false. tx_type (str, optional): Transaction type: either TRANSFER, MINT or BURN. Default is TRANSFER. """ diff --git a/setup.py b/setup.py index 214d7a3..6b517d9 100644 --- a/setup.py +++ b/setup.py @@ -2,11 +2,11 @@ setup( name = 'fireblocks_sdk', packages = ['fireblocks_sdk'], - version = '1.4.3', + version = '1.4.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.4.3.tar.gz', + download_url = 'https://github.com/fireblocks/fireblocks-sdk-py/archive/v1.4.4.tar.gz', keywords = ['Fireblocks', 'SDK'], install_requires=[ 'PyJWT==1.7.1',