Merge pull request #694 from antius/master

Change decodeBase58
This commit is contained in:
Jonathan Warren 2014-08-01 17:41:10 -04:00
commit 51d73f0eba
1 changed files with 3 additions and 5 deletions

View File

@ -42,14 +42,12 @@ def decodeBase58(string, alphabet=ALPHABET):
- `alphabet`: The alphabet to use for encoding
"""
base = len(alphabet)
strlen = len(string)
num = 0
try:
power = strlen - 1
for char in string:
num += alphabet.index(char) * (base ** power)
power -= 1
num *= base
num += alphabet.index(char)
except:
#character not found (like a space character or a 0)
return 0