diff --git a/lib/commands.py b/lib/commands.py index c0a38fff9..2e4285392 100644 --- a/lib/commands.py +++ b/lib/commands.py @@ -162,7 +162,9 @@ class Commands: def createrawtransaction(self, inputs, outputs): - inputs = map(lambda i: {'prevout_hash': i['txid'], 'prevout_n':i['vout']}, inputs ) + for i in inputs: + i['prevout_hash'] = i['txid'] + i['prevout_n'] = i['vout'] outputs = map(lambda x: (x[0],int(1e8*x[1])), outputs.items()) tx = Transaction.from_io(inputs, outputs) return tx