Merge pull request #3015 from SomberNight/typo_p2wpkh_importedwallet

fix: Imported_Wallet cannot spend from p2wpkh or p2wpkh-p2sh
This commit is contained in:
ThomasV 2017-10-11 14:13:53 +02:00 committed by GitHub
commit 4694717dc0
1 changed files with 1 additions and 1 deletions

View File

@ -1472,7 +1472,7 @@ class Imported_Wallet(Abstract_Wallet):
txin['x_pubkeys'] = [x_pubkey]
txin['signatures'] = [None]
return
if txin['type'] in ['p2pkh', 'p2wkh', 'p2wkh-p2sh']:
if txin['type'] in ['p2pkh', 'p2wpkh', 'p2wpkh-p2sh']:
pubkey = self.addresses[address]['pubkey']
txin['num_sig'] = 1
txin['x_pubkeys'] = [pubkey]