Skip to content

Commit 14e64af

Browse files
authored
fix: correct typo in VersionedTransaction class name
1 parent 7dca165 commit 14e64af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/laboratory/src/components/Solana/SolanaSignAndSendTransactionTest.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ export function SolanaSignAndSendTransaction() {
6161
}).compileToV0Message()
6262

6363
// Make a versioned transaction
64-
const versionedTranasction = new VersionedTransaction(messageV0)
64+
const versionedTransaction = new VersionedTransaction(messageV0)
6565

66-
signature = await walletProvider.signAndSendTransaction(versionedTranasction)
66+
signature = await walletProvider.signAndSendTransaction(versionedTransaction)
6767
} else {
6868
// Create a new transaction
6969
const transaction = new Transaction().add(instruction)

0 commit comments

Comments
 (0)