Fix tx size too big

This commit is contained in:
calintje
2024-12-20 18:50:57 +01:00
parent 3ff2db7d59
commit 5d3e8a1513
2 changed files with 49 additions and 1 deletions

View File

@@ -377,7 +377,9 @@ export async function createOrcaSingleSidedWhirlpool(
});
txBuilder.addInstruction(liquidityIx);
const txId = await txBuilder.buildAndExecute();
const txId = await txBuilder.buildAndExecute({
maxSupportedTransactionVersion: "legacy"
});
return txId;
}