typo in wallet.import_private_key()

This commit is contained in:
SomberNight 2017-10-25 06:54:51 +02:00
parent f7200cb616
commit 1f102913e9
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()