URI: 
       tMerge pull request #857 from btchip/deny_export_private_key - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 38fb26f1e806c169839a9d7000c57ea3d86278a5
   DIR parent 23933b20e1463bf1555d3105299bf2def9dcbe08
  HTML 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:
         M plugins/btchipwallet.py             |       3 +++
       
       1 file changed, 3 insertions(+), 0 deletions(-)
       ---
   DIR diff --git a/plugins/btchipwallet.py b/plugins/btchipwallet.py
       t@@ -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