Return None from addresses.encodeBase58() for negative number
This commit is contained in:
parent
93c7cfbf63
commit
b3577a09e5
|
@ -20,6 +20,8 @@ def encodeBase58(num, alphabet=ALPHABET):
|
||||||
num: The number to encode
|
num: The number to encode
|
||||||
alphabet: The alphabet to use for encoding
|
alphabet: The alphabet to use for encoding
|
||||||
"""
|
"""
|
||||||
|
if num < 0:
|
||||||
|
return None
|
||||||
if num == 0:
|
if num == 0:
|
||||||
return alphabet[0]
|
return alphabet[0]
|
||||||
arr = []
|
arr = []
|
||||||
|
|
Reference in New Issue
Block a user