From ad525acdeaba82640f2cc8979e168e2b487c8ced Mon Sep 17 00:00:00 2001 From: Kevin Peters Date: Tue, 26 Mar 2024 10:29:03 -0500 Subject: [PATCH] solana fix: setting compute budget when redeeming WSOL causes signature failure --- sdk/src/contexts/solana/context.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/src/contexts/solana/context.ts b/sdk/src/contexts/solana/context.ts index e6eda6d7a..1f6ac442b 100644 --- a/sdk/src/contexts/solana/context.ts +++ b/sdk/src/contexts/solana/context.ts @@ -912,8 +912,8 @@ export class SolanaContext< signedVAA, ); - transaction.feePayer = new PublicKey(payerAddr); - await addComputeBudget(this.connection!, transaction); + // TODO: adding a compute budget causes the redeem to fail for WSOL, unsure of why + // await addComputeBudget(this.connection!, transaction); return transaction; }