tfix #2915 - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit 952049f74bd69c3b452c0c2aa20ba5ccb42ec48a
DIR parent e014e3af75a82b45d257699a9f13fa929f700ceb
HTML Author: ThomasV <thomasv@electrum.org>
Date: Sun, 24 Sep 2017 13:35:53 +0200
fix #2915
Diffstat:
M lib/keystore.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
DIR diff --git a/lib/keystore.py b/lib/keystore.py
t@@ -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):
t@@ -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):