@haven-fi/solauto-sdk 1.0.406 → 1.0.407
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/utils/jitoUtils.js
CHANGED
@@ -190,7 +190,8 @@ async function sendJitoBundledTransactions(umi, connection, signer, txs, txType,
|
|
190
190
|
let builtTxs;
|
191
191
|
let simulationResults;
|
192
192
|
if (txType !== "skip-simulation") {
|
193
|
-
builtTxs = await umiToVersionedTransactions(umi, latestBlockhash, signer, txs,
|
193
|
+
builtTxs = await umiToVersionedTransactions(umi, latestBlockhash, signer, txs, true, // REVERT ME
|
194
|
+
feeEstimates);
|
194
195
|
(0, generalUtils_1.consoleLog)(builtTxs.map((x) => x.message.compiledInstructions.map((y) => x.message.staticAccountKeys[y.programIdIndex].toString())));
|
195
196
|
simulationResults = await simulateJitoBundle(umi, builtTxs);
|
196
197
|
}
|
package/package.json
CHANGED