From 94c1f7d468ab16a15b0154b5d41fb4f8d349e784 Mon Sep 17 00:00:00 2001 From: Santiago Gonzalez Date: Wed, 24 Jan 2024 16:30:23 -0500 Subject: [PATCH] increase PROCESS_PROPOSAL_GAS_LIMIT_ADDITION --- libs/utils/src/constants/proposals.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/utils/src/constants/proposals.ts b/libs/utils/src/constants/proposals.ts index 7dc896e7..7d1929cb 100644 --- a/libs/utils/src/constants/proposals.ts +++ b/libs/utils/src/constants/proposals.ts @@ -108,7 +108,7 @@ export const PROPOSAL_FILTERS: Record = { // Processing gas estimate buffer export const GAS_BUFFER_MULTIPLIER = 2; // Adding to the gas limit to account for cost of processProposal -export const PROCESS_PROPOSAL_GAS_LIMIT_ADDITION = 250000; +export const PROCESS_PROPOSAL_GAS_LIMIT_ADDITION = 400000; // Adding to the gas limit to account for cost of each action export const ACTION_GAS_LIMIT_ADDITION = 150000;