From 95f12d7c9d458a635b2fe995977e95f489f788a8 Mon Sep 17 00:00:00 2001 From: Kobe Date: Mon, 21 Oct 2024 16:58:26 +0200 Subject: [PATCH] fix: updated bundle fee tip amount --- packages/marginfi-client-v2/src/models/account/wrapper.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/marginfi-client-v2/src/models/account/wrapper.ts b/packages/marginfi-client-v2/src/models/account/wrapper.ts index eaf3dd2e9b..cd231053af 100644 --- a/packages/marginfi-client-v2/src/models/account/wrapper.ts +++ b/packages/marginfi-client-v2/src/models/account/wrapper.ts @@ -1294,7 +1294,7 @@ export function makeBundleTipIx(feePayer: PublicKey): TransactionInstruction { return SystemProgram.transfer({ fromPubkey: feePayer, toPubkey: new PublicKey(randomTipAccount), - lamports: 10_000, // 1000 lamports = 0.000001 SOL + lamports: 100_000, // 100_000 lamports = 0.0001 SOL }); }