electrum

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

commit 38fb26f1e806c169839a9d7000c57ea3d86278a5
parent 23933b20e1463bf1555d3105299bf2def9dcbe08
Author: ThomasV <thomasv1@gmx.de>
Date:   Sun, 21 Sep 2014 19:23:06 +0200

Merge pull request #857 from btchip/deny_export_private_key

Do not crash when asked to export private keys
Diffstat:
Mplugins/btchipwallet.py | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/plugins/btchipwallet.py b/plugins/btchipwallet.py @@ -219,6 +219,9 @@ class BTChipWallet(NewWallet): xpub = self.get_public_key(derivation) return xpub, None + def get_private_key(self, address, password): + return [] + def get_public_key(self, bip32_path): # S-L-O-W - we don't handle the fingerprint directly, so compute it manually from the previous node # This only happens once so it's bearable