We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 183a5cc commit 176c91aCopy full SHA for 176c91a
1 file changed
src/programmable-tokens/offchain/offchain.ts
@@ -783,7 +783,7 @@ export class ProgrammableTokenContract extends MeshTxInitiator {
783
if (!feePayerUtxo)
784
throw new Error("No UTXO with enough ADA for fees found");
785
786
- const utxosAtRef = await fetcher.fetchUTxOs(utxoTxHash, utxoOutputIndex);
+ const utxosAtRef = await fetcher.fetchUTxOs(txHash, outputIndex);
787
const utxoToSeize = utxosAtRef?.[0];
788
if (!utxoToSeize) throw new Error("Could not find utxo to seize");
789
if (!utxoToSeize.output.plutusData)
0 commit comments