Skip to content

Commit

Permalink
fix ownershipRequestedAt usage
Browse files Browse the repository at this point in the history
  • Loading branch information
mjlescano committed Jul 29, 2023
1 parent f3e59cc commit 84bae66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions protocol/governance/contracts/modules/core/OwnerModule.sol
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ contract OwnerModule is BaseOwnerModule {
function renounceNomination() external override {
super.renounceNomination();

Guardian.Data storage rescueStore = Guardian.load();
rescueStore.requestedAt = 0;
Guardian.Data storage store = Guardian.load();
store.ownershipRequestedAt = 0;
}
}

0 comments on commit 84bae66

Please sign in to comment.