1
0
mirror of https://github.com/bigchaindb/js-bigchaindb-driver.git synced 2024-11-22 01:36:56 +01:00

small correction when changing to camelcase

This commit is contained in:
manolodewiner 2017-12-19 15:57:36 +01:00
parent bc574c2b9d
commit ebf5f6a408

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,