Skip to content

Commit

Permalink
feat(ogmios): mapTxIn is needed in error parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
mirceahasegan committed May 9, 2024
1 parent b6144cd commit 26c77bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ogmios/src/ogmiosToCore/tx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ const mapAuxiliaryData = (
return { auxiliaryData, auxiliaryDataHash };
};

const mapTxIn = (txIn: Schema.TransactionOutputReference): Cardano.TxIn => ({
export const mapTxIn = (txIn: Schema.TransactionOutputReference): Cardano.TxIn => ({
index: txIn.index,
txId: Cardano.TransactionId(txIn.transaction.id)
});
Expand Down

0 comments on commit 26c77bc

Please sign in to comment.