Skip to content
This repository has been archived by the owner on Oct 8, 2024. It is now read-only.

Commit

Permalink
fix the rely/deny events in CropJoin; typo in proxy actions comments (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
hexonaut authored Mar 9, 2022
1 parent fb50e3a commit 12e32c1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/CropJoin.sol
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ contract CropJoin {

function rely(address usr) external auth {
wards[usr] = 1;
emit Rely(msg.sender);
emit Rely(usr);
}

function deny(address usr) external auth {
wards[usr] = 0;
emit Deny(msg.sender);
emit Deny(usr);
}

function setImplementation(address implementation_) external auth {
Expand Down
2 changes: 1 addition & 1 deletion src/DssProxyActionsCropper.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: AGPL-3.0-or-later

/// DssProxyActions.sol
/// DssProxyActionsCropper.sol

// Copyright (C) 2018-2020 Maker Ecosystem Growth Holdings, INC.

Expand Down

0 comments on commit 12e32c1

Please sign in to comment.