Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
e096a62e
Unverified
Commit
e096a62e
authored
Sep 13, 2023
by
Maurelian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(ctb): Make storage variables immutable
This contract is not intended to be upgradeable.
parent
12c9e3b7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
DelayedVetoable.sol
packages/contracts-bedrock/src/L1/DelayedVetoable.sol
+3
-5
No files found.
packages/contracts-bedrock/src/L1/DelayedVetoable.sol
View file @
e096a62e
...
@@ -29,15 +29,13 @@ contract DelayedVetoable is ISemver {
...
@@ -29,15 +29,13 @@ contract DelayedVetoable is ISemver {
event Vetoed(bytes32 indexed callHash, bytes data);
event Vetoed(bytes32 indexed callHash, bytes data);
/// @notice The address that all calls are forwarded to after the delay.
/// @notice The address that all calls are forwarded to after the delay.
address internal _target;
address internal
immutable
_target;
// TODO(maurelian): move this to the new SuperChainConfig contract
/// @notice The address that can veto a call.
/// @notice The address that can veto a call.
address internal _vetoer;
address internal
immutable
_vetoer;
// TODO(maurelian): move this to the new SuperChainConfig contract
/// @notice The address that can initiate a call.
/// @notice The address that can initiate a call.
address internal _initiator;
address internal
immutable
_initiator;
/// @notice The time that a call was initiated.
/// @notice The time that a call was initiated.
mapping(bytes32 => uint256) internal _queuedAt;
mapping(bytes32 => uint256) internal _queuedAt;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment