electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 563aae0dbd6f29c74e18bb0b2ca18ca340f40706
parent 012a636fabf9eeaaac3e020acbf12077afcbe09e
Author: SomberNight <somber.night@protonmail.com>
Date:   Thu,  4 Jan 2018 03:40:35 +0100

fix #3411

Diffstat:
Mlib/pem.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/pem.py b/lib/pem.py @@ -165,7 +165,7 @@ def _parsePKCS8(_bytes): def _parseSSLeay(bytes): - return _parseASN1PrivateKey(ASN1_Node(str(bytes))) + return _parseASN1PrivateKey(ASN1_Node(bytes)) def bytesToNumber(s):