Skip to content

Commit

Permalink
Make GAC and source chain immutable
Browse files Browse the repository at this point in the history
  • Loading branch information
ermyas committed Sep 24, 2023
1 parent d5fdee8 commit 424e813
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/MultiBridgeMessageReceiver.sol
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ import "./libraries/Message.sol";
/// @dev The contract only accepts messages from trusted bridge receiver adapters, each of which implements the
/// IMessageReceiverAdapter interface.
contract MultiBridgeMessageReceiver is IMultiBridgeMessageReceiver, ExecutorAware {
/// @notice the id of the source chain that this contract can receive messages from
uint256 public immutable srcChainId;
/// @notice the global access control contract
IGAC public immutable gac;

/*/////////////////////////////////////////////////////////////////
STATE VARIABLES
////////////////////////////////////////////////////////////////*/
/// @notice the global access control contract
IGAC public gac;

/// @notice the id of the source chain that this contract can receive messages from
uint256 public srcChainId;

/// @notice minimum number of bridges that must deliver a message for it to be considered valid
uint64 public quorum;
Expand Down

0 comments on commit 424e813

Please sign in to comment.