fix createrawtransaction (issue #574)

This commit is contained in:
ThomasV 2014-03-02 19:24:44 +01:00
parent 2070672ac7
commit 9d5f39c235
2 changed files with 3 additions and 5 deletions

View File

@ -160,14 +160,12 @@ class Commands:
def createrawtransaction(self, inputs, outputs):
# convert to own format
for i in inputs:
i['tx_hash'] = i['txid']
i['index'] = i['vout']
inputs = map(lambda i: {'prevout_hash': i['txid'], 'prevout_n':i['vout']}, inputs )
outputs = map(lambda x: (x[0],int(1e8*x[1])), outputs.items())
tx = Transaction.from_io(inputs, outputs)
return tx
def signrawtransaction(self, raw_tx, input_info, private_keys):
tx = Transaction(raw_tx)
self.wallet.signrawtransaction(tx, input_info, private_keys, self.password)

View File

@ -671,7 +671,7 @@ class Transaction:
item = {
'prevout_hash':i['prevout_hash'],
'prevout_n':i['prevout_n'],
'address':i['address'],
'address':i.get('address'),
'KeyID':i.get('KeyID'),
'scriptPubKey':i.get('scriptPubKey'),
'redeemScript':i.get('redeemScript'),