1
0

minikeys: import with uncompressed pubkey instead of compressed (#4384)

This commit is contained in:
ghost43
2018-06-15 15:32:00 +02:00
committed by GitHub
parent d150f0dfc0
commit cc05c09d6b
2 changed files with 6 additions and 6 deletions

View File

@@ -421,7 +421,7 @@ def serialize_privkey(secret: bytes, compressed: bool, txin_type: str,
def deserialize_privkey(key: str) -> (str, bytes, bool):
if is_minikey(key):
return 'p2pkh', minikey_to_private_key(key), True
return 'p2pkh', minikey_to_private_key(key), False
txin_type = None
if ':' in key: