This commit is contained in:
ThomasV 2017-09-24 13:35:53 +02:00
parent e014e3af75
commit 952049f74b
1 changed files with 2 additions and 2 deletions

View File

@ -181,7 +181,7 @@ class Imported_KeyStore(Software_KeyStore):
self.keypairs[k] = c
def txin_type(self):
return 'standard'
return 'p2pkh'
class Deterministic_KeyStore(Software_KeyStore):
@ -492,7 +492,7 @@ class Old_KeyStore(Deterministic_KeyStore):
self.seed = pw_encode(decoded, new_password)
def txin_type(self):
return 'standard'
return 'p2phk'
class Hardware_KeyStore(KeyStore, Xpub):