diff --git a/modules/sdk-coin-sol/src/sol.ts b/modules/sdk-coin-sol/src/sol.ts index 78140e0daf..05f08dd5d7 100644 --- a/modules/sdk-coin-sol/src/sol.ts +++ b/modules/sdk-coin-sol/src/sol.ts @@ -727,7 +727,11 @@ export class Sol extends BaseCoin { } // For non-consolidate transactions, feePayer must be the wallet's root address - if (consolidateId === undefined && transactionJson.feePayer !== walletRootAddress) { + if ( + consolidateId === undefined && + transactionJson.feePayer !== walletRootAddress && + !isCloseAssociatedTokenAccountTx + ) { throw new Error('Tx fee payer is not the wallet root address'); }