fix to universal recognize hrp

This commit is contained in:
4tochka 2019-03-16 00:14:24 +04:00
parent e38aa92bd1
commit a560fd3440
3 changed files with 5 additions and 3 deletions

View File

@ -18,7 +18,9 @@ Current version is 2.0
To install pybtc, simply use pip
$ pip3 install pybtc
$ git clone https://github.com/bitaps-com/pybtc
$ cd pybtc
$ python3 setup.py install
### Dependencies

View File

@ -150,7 +150,7 @@ class Address():
by default set to True. Recommended use only compressed public key.
:param testnet: (optional) if set to True mean that this private key for testnet Bitcoin network.
In case instanse is created from WIF private key, ``PrivateKey`` or ``PublicKey`` compressed and testnet flags
In case instance is created from WIF private key, ``PrivateKey`` or ``PublicKey`` compressed and testnet flags
already contain in initial key parameter and will be ignored.
"""
def __init__(self, key=None,

View File

@ -3,7 +3,7 @@ from .functions import *
# Hierarchical Deterministic Wallets (HD Wallets)
# BIP-44 supprt
# BIP-44 support
class Wallet():
"""