Skip to content

Commit

Permalink
chore: increase to 50k
Browse files Browse the repository at this point in the history
  • Loading branch information
albert-llimos committed Feb 17, 2025
1 parent 8679baa commit aaac307
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bouncer/shared/swapping.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export async function newCcmMetadata(
// Therefore we apply a minimum gas budget to ensure the swap succeeds.
userLogicGasBudget = Math.trunc((await estimateCcmCfTesterGas(message)) * 1.1);
if (destChain === 'Arbitrum') {
const minGasBudget = 30000;
const minGasBudget = 50000;
userLogicGasBudget = userLogicGasBudget < minGasBudget ? minGasBudget : userLogicGasBudget;
}
} else if (destChain === 'Solana') {
Expand Down

0 comments on commit aaac307

Please sign in to comment.