add_input_info: add txin value for RBF with segwit inputs

This commit is contained in:
ThomasV 2017-10-07 12:54:50 +02:00
parent 332c5d41e6
commit 5480b7dff5
1 changed files with 6 additions and 0 deletions

View File

@ -1073,6 +1073,12 @@ class Abstract_Wallet(PrintError):
address = txin['address']
if self.is_mine(address):
txin['type'] = self.get_txin_type(address)
# segwit needs value to sign
if txin.get('value') is None and txin['type'] in ['p2wpkh', 'p2wsh', 'p2wpkh-p2sh', 'p2wsh-p2sh']:
received, spent = self.get_addr_io(address)
item = received.get(txin['prevout_hash']+':%d'%txin['prevout_n'])
tx_height, value, is_cb = item
txin['value'] = value
self.add_input_sig_info(txin, address)
def can_sign(self, tx):