small correction when changing to camelcase

This commit is contained in:
manolodewiner 2017-12-19 15:57:36 +01:00
parent bc574c2b9d
commit ebf5f6a408
1 changed files with 2 additions and 1 deletions

View File

@ -24,7 +24,8 @@ export default function makeTransferTransaction(
metadata
) {
const inputs = unspentOutputs.map((unspentOutput) => {
const { tx, outputIndex } = unspentOutput
const tx = unspentOutput.tx
const outputIndex = unspentOutput.output_index
const fulfilledOutput = tx.outputs[outputIndex]
const transactionLink = {
'output_index': outputIndex,