From e77f57ad11f486c812a273b0d5685428b7567c7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Sa=C5=82aban?= Date: Tue, 3 Jul 2018 14:43:11 +0200 Subject: [PATCH] Add note on local changes --- monero/base58.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/monero/base58.py b/monero/base58.py index 2fc2333..1ad2e7f 100644 --- a/monero/base58.py +++ b/monero/base58.py @@ -4,6 +4,10 @@ # MoneroPy is released under the BSD 3-Clause license. Use and redistribution of # this software is subject to the license terms in the LICENSE file found in the # top-level directory of this distribution. +# +# Modified by emesik and rooterkyberian: +# + optimized +# + proper exceptions instead of returning errors as results __alphabet = [ord(s) for s in '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz'] __b58base = 58