Skip to content

Commit fdf834d

Browse files
committed
update dependencies + version bump
1 parent 89046b6 commit fdf834d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

block_io/bitcoinutils_patches.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import ecdsa
55
import bitcoinutils.constants
66
import bitcoinutils.bech32
7-
import base58check
7+
import base58
88

99
bitcoinutils.constants.NETWORK_WIF_PREFIXES = { 'BTC': b'\x80',
1010
'LTC': b'\xb0',
@@ -84,7 +84,7 @@ def get_output_script(address):
8484
if (decoded_bech32[0] is None or decoded_bech32[1] is None):
8585
# failed to decode information for bech32 address, so let's try decoding it as legacy addresses
8686
addr_encoded = address.encode('ascii')
87-
decoded_hex = hexlify(base58check.b58decode( addr_encoded ))
87+
decoded_hex = hexlify(base58.b58decode( addr_encoded ))
8888
network_prefix = decoded_hex[:2]
8989
address_hash160 = decoded_hex[2:len(decoded_hex)-8]
9090
decoded_checksum = decoded_hex[-8:]

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
long_description = fh.read()
55

66
setup(name='block-io',
7-
version='2.0.1',
7+
version='2.0.3',
88
description='The easiest way to integrate Bitcoin, Dogecoin and Litecoin in your applications. Sign up at Block.io for your API key.',
99
url='https://github.com/BlockIo/block_io-python',
1010
author='Atif Nazir',
@@ -17,7 +17,7 @@
1717
install_requires=[
1818
'requests>=2.25.0',
1919
'pycryptodome>=3.9.9,<4.0',
20-
'base58==1.0.3',
21-
'bitcoin-utils-fork-minimal==0.4.11.1'
20+
'base58==2.1.0',
21+
'bitcoin-utils-fork-minimal==0.4.11.3'
2222
],
2323
zip_safe=False)

0 commit comments

Comments
 (0)