Skip to content

Commit

Permalink
Finished Treasury
Browse files Browse the repository at this point in the history
  • Loading branch information
Sir-Deon committed Apr 3, 2024
1 parent 780ff09 commit deaf733
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions contracts/Treasury.sol
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ contract Treasury is ITreasury, Ownable, ReentrancyGuard {
address indexed _token,
uint256 _amount
);
event UnauthorizedAccess(address indexed _user, bool status);

constructor(
address _multisig1,
Expand Down Expand Up @@ -199,6 +200,7 @@ contract Treasury is ITreasury, Ownable, ReentrancyGuard {
return true;
}
_pause();
emit UnauthorizedAccess(msg.sender, paused);
return false;
}

Expand Down

0 comments on commit deaf733

Please sign in to comment.