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
8215444c
Unverified
Commit
8215444c
authored
Oct 24, 2023
by
Maurelian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(ctb): Remove redundant _verifyGuard call
parent
26c1ac54
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
3 deletions
+0
-3
LivenessModule.sol
packages/contracts-bedrock/src/Safe/LivenessModule.sol
+0
-3
No files found.
packages/contracts-bedrock/src/Safe/LivenessModule.sol
View file @
8215444c
...
@@ -66,9 +66,6 @@ contract LivenessModule is ISemver {
...
@@ -66,9 +66,6 @@ contract LivenessModule is ISemver {
/// during the liveness interval. If the number of owners drops below the minimum, then the
/// during the liveness interval. If the number of owners drops below the minimum, then the
/// ownership of the Safe is transferred to the fallback owner.
/// ownership of the Safe is transferred to the fallback owner.
function removeOwner(address owner) external {
function removeOwner(address owner) external {
// Check that the guard has not been changed
_verifyGuard();
// Check that the owner to remove has not signed a transaction in the last 30 days
// Check that the owner to remove has not signed a transaction in the last 30 days
require(
require(
LIVENESS_GUARD.lastLive(owner) < block.timestamp - LIVENESS_INTERVAL,
LIVENESS_GUARD.lastLive(owner) < block.timestamp - LIVENESS_INTERVAL,
...
...
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