Skip to content

Commit

Permalink
make DISPATCH_OVERHEAD_GAS constant
Browse files Browse the repository at this point in the history
  • Loading branch information
alistair-singh committed Jan 7, 2025
1 parent 36383af commit 6148116
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/src/Gateway.sol
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ contract Gateway is IGateway, IInitializable, IUpgradable {
// Gas used for:
// 1. Mapping a command id to an implementation function
// 2. Calling implementation function
uint256 DISPATCH_OVERHEAD_GAS = 10_000;
uint256 constant DISPATCH_OVERHEAD_GAS = 10_000;

// The maximum fee that can be sent to a destination parachain to pay for execution (DOT).
// Has two functions:
Expand Down

0 comments on commit 6148116

Please sign in to comment.