Skip to content

Commit

Permalink
disable preflight check so we can see failure message in explorer
Browse files Browse the repository at this point in the history
  • Loading branch information
ws4charlie committed Jan 10, 2025
1 parent 0f41757 commit a6b6739
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/runner/solana.go
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ func (r *E2ERunner) BroadcastTxSync(tx *solana.Transaction) (solana.Signature, *
// broadcast the transaction
r.Logger.Info("Broadcast start")
sig, err := r.SolanaClient.SendTransactionWithOpts(r.Ctx, tx, rpc.TransactionOpts{
PreflightCommitment: rpc.CommitmentProcessed,
SkipPreflight: true,
})
require.NoError(r, err)
r.Logger.Info("broadcast success! tx sig %s; waiting for confirmation...", sig)
Expand Down

0 comments on commit a6b6739

Please sign in to comment.