Explorar o código

Test different precommit level (#831)

guibescos %!s(int64=2) %!d(string=hai) anos
pai
achega
4f67343323

+ 4 - 5
governance/xc_admin/packages/xc_admin_common/src/propose.ts

@@ -212,11 +212,10 @@ export async function proposeInstructions(
   const txToSend = batchIntoTransactions(ixToSend);
 
   for (let i = 0; i < txToSend.length; i += SIZE_OF_SIGNED_BATCH) {
-    await new AnchorProvider(
-      squad.connection,
-      squad.wallet,
-      AnchorProvider.defaultOptions()
-    ).sendAll(
+    await new AnchorProvider(squad.connection, squad.wallet, {
+      preflightCommitment: "processed",
+      commitment: "confirmed",
+    }).sendAll(
       txToSend.slice(i, i + SIZE_OF_SIGNED_BATCH).map((tx) => {
         return { tx, signers: [] };
       })