Fix b58 encode bug

master
Tanner Collin 5 years ago
parent 377e561764
commit 9c5ca67d53
  1. 2
      bwb/common.py
  2. 2
      setup.py

@ -71,7 +71,7 @@ class common:
return False
def to_b58(self, text):
return 'l' + base58.b58encode(text).decode()
return 'l' + base58.b58encode(text.encode()).decode()
def from_b58(self, text):
if not text.startswith('l'):

@ -5,7 +5,7 @@ with io.open('README.md', encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(name='bwb',
version='2.0.0',
version='2.0.1',
description='bwb',
long_description=long_description,
long_description_content_type='text/markdown',

Loading…
Cancel
Save