Skip to content

Commit

Permalink
Inline datum order
Browse files Browse the repository at this point in the history
  • Loading branch information
Sluder committed Dec 14, 2023
1 parent 626fe9e commit 8c35d9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dex/spectrum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ export class Spectrum extends BaseDex {
liquidityPool.totalLpTokens = MAX_INT - lpTokenBalance.quantity;
liquidityPool.identifier = liquidityPool.lpToken.identifier();
liquidityPool.poolFeePercent = typeof parameters.LpFee === 'number' ? (1000 - parameters.LpFee) / 10 : 0.3;
console.log(liquidityPool)
} catch (e) {
return liquidityPool;
}
Expand Down Expand Up @@ -199,6 +198,7 @@ export class Spectrum extends BaseDex {
},
],
datum: datumBuilder.getCbor(),
isInlineDatum: false,
spendUtxos: spendUtxos,
}),
];
Expand Down

0 comments on commit 8c35d9f

Please sign in to comment.