Merge pull request #3114 from SomberNight/typo_wallet_import_priv_key

typo in wallet.import_private_key()
This commit is contained in:
ThomasV 2017-10-25 07:29:20 +02:00 committed by GitHub
commit a91de6a236
1 changed files with 1 additions and 1 deletions

View File

@ -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()