fireblocks / fireblocks-sdk-py

Official Python SDK for Fireblocks API
http://docs.fireblocks.com/api/swagger-ui/
MIT License
51 stars 40 forks source link

Update sdk.py #175

Closed SlavaSereb closed 5 months ago

SlavaSereb commented 5 months ago

Fixed urllib quote in get_transaction_by_external_id()

The urllib module has been split into parts in python 3 and renamed in to urllib.request, urllib.parse

the correct call is: urllib.parse.quote(external_tx_id, safe='')