Skip to content

Commit

Permalink
Make createAssociatedTokenAccount idempotent for root wallet (#6266)
Browse files Browse the repository at this point in the history
  • Loading branch information
rickyrombo authored Oct 6, 2023
1 parent f8c839a commit 8765cb7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/web/src/services/solana/WithdrawUSDC.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { getLookupTableAccounts, getRecentBlockhash } from '@audius/common'
import { MintName } from '@audius/sdk'
import {
createCloseAccountInstruction,
createAssociatedTokenAccountInstruction,
NATIVE_MINT,
createAssociatedTokenAccountIdempotentInstruction,
getAssociatedTokenAddressSync
Expand Down Expand Up @@ -71,7 +70,7 @@ export const createSwapUserbankToSolInstructions = async ({

// 1. Create a temporary token account on the wallet
const createTemporaryTokenAccountInstruction =
createAssociatedTokenAccountInstruction(
createAssociatedTokenAccountIdempotentInstruction(
feePayer, // fee payer
walletTokenAccount, // account to create
wallet, // owner
Expand Down

0 comments on commit 8765cb7

Please sign in to comment.