From 63035fd79befda07af3d90c8b60c75a82201ee5d Mon Sep 17 00:00:00 2001 From: David Date: Thu, 25 Apr 2024 13:51:56 +0800 Subject: [PATCH] feat(protocol): bump `GAS_RESERVE` to `800_000` (#16840) --- packages/protocol/contracts/bridge/Bridge.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/protocol/contracts/bridge/Bridge.sol b/packages/protocol/contracts/bridge/Bridge.sol index 2839044c60c..30da04d4728 100644 --- a/packages/protocol/contracts/bridge/Bridge.sol +++ b/packages/protocol/contracts/bridge/Bridge.sol @@ -30,7 +30,7 @@ contract Bridge is EssentialContract, IBridge { /// @dev The amount of gas that will be deducted from message.gasLimit before calculating the /// invocation gas limit. This value should be fine-tuned with production data. - uint32 public constant GAS_RESERVE = 650_000; + uint32 public constant GAS_RESERVE = 800_000; /// @dev The gas overhead for both receiving and invoking a message, as well as the proof /// calldata cost.