Skip to content

Commit 176c91a

Browse files
committed
fix: mistyped variable
1 parent 183a5cc commit 176c91a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/programmable-tokens/offchain/offchain.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -783,7 +783,7 @@ export class ProgrammableTokenContract extends MeshTxInitiator {
783783
if (!feePayerUtxo)
784784
throw new Error("No UTXO with enough ADA for fees found");
785785

786-
const utxosAtRef = await fetcher.fetchUTxOs(utxoTxHash, utxoOutputIndex);
786+
const utxosAtRef = await fetcher.fetchUTxOs(txHash, outputIndex);
787787
const utxoToSeize = utxosAtRef?.[0];
788788
if (!utxoToSeize) throw new Error("Could not find utxo to seize");
789789
if (!utxoToSeize.output.plutusData)

0 commit comments

Comments
 (0)