Skip to content

Commit

Permalink
Merge branch 'main' into feat(frontend)/use-Quicknode-for-Solana-RPC-…
Browse files Browse the repository at this point in the history
…Websocket
  • Loading branch information
AntonioVentilii authored Jan 23, 2025
2 parents be1c3e8 + 1855a5f commit ccb34a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontend/src/sol/services/sol-send.services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export const setLifetimeAndFeePayerToTransaction = async ({
feePayer: TransactionSigner;
}): Promise<SolTransactionMessage> => {
const { getLatestBlockhash } = rpc;
const { value: latestBlockhash } = await getLatestBlockhash().send();
const { value: latestBlockhash } = await getLatestBlockhash({ commitment: 'confirmed' }).send();

return pipe(
transactionMessage,
Expand Down

0 comments on commit ccb34a0

Please sign in to comment.