tMerge pull request #3114 from SomberNight/typo_wallet_import_priv_key - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit a91de6a236ce6d4398a8df749397f61d28e1e1dd DIR parent f7200cb6162ba30f4ebd0e94d933f7b7d559cdb2 HTML Author: ThomasV <thomasv@electrum.org> Date: Wed, 25 Oct 2017 07:29:20 +0200 Merge pull request #3114 from SomberNight/typo_wallet_import_priv_key ttypo in wallet.import_private_key() Diffstat: M lib/wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/lib/wallet.py b/lib/wallet.py t@@ -1480,7 +1480,7 @@ class Imported_Wallet(Simple_Wallet): raise BaseException('Redeem script required for', txin_type, sec) addr = bitcoin.redeem_script_to_address(txin_type, redeem_script) else: - raise NotImplementedError(self.txin_type) + raise NotImplementedError(txin_type) self.addresses[addr] = {'type':txin_type, 'pubkey':pubkey, 'redeem_script':redeem_script} self.save_keystore() self.save_addresses()