electrum

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

commit 952049f74bd69c3b452c0c2aa20ba5ccb42ec48a
parent e014e3af75a82b45d257699a9f13fa929f700ceb
Author: ThomasV <thomasv@electrum.org>
Date:   Sun, 24 Sep 2017 13:35:53 +0200

fix #2915

Diffstat:
Mlib/keystore.py | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/keystore.py b/lib/keystore.py @@ -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):