Skip to content

Commit

Permalink
Fix linter (#2006)
Browse files Browse the repository at this point in the history
  • Loading branch information
nventuro authored Nov 11, 2022
1 parent 8986e95 commit 6dd6892
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/vault/contracts/authorizer/TimelockAuthorizer.sol
Original file line number Diff line number Diff line change
Expand Up @@ -373,8 +373,8 @@ contract TimelockAuthorizer is IAuthorizer, IAuthentication, ReentrancyGuard {
// contract, called the `AuthorizerAdaptorEntrypoint`. This contract correctly checks whether `account` can
// perform `actionId` on `where`, and then forwards the call onto the `AuthorizerAdaptor` to execute.
//
// The authorizer then rejects calls to the `AuthorizerAdaptor` which aren't made through the entrypoint, and
// approves all calls made through it (since the entrypoint will have already performed any necessary
// The authorizer then rejects calls to the `AuthorizerAdaptor` which aren't made through the entrypoint,
// and approves all calls made through it (since the entrypoint will have already performed any necessary
// permission checks).
return account == address(_authorizerAdaptorEntrypoint);
}
Expand Down

0 comments on commit 6dd6892

Please sign in to comment.