Skip to content

Commit

Permalink
fix: merge
Browse files Browse the repository at this point in the history
  • Loading branch information
gomesalexandre committed Apr 10, 2024
1 parent ab8e855 commit 4122c06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions foundry/src/FoxStaking.sol
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ contract FoxStaking is
unstakingPaused = false;
}

function pause() public onlyOwner {
function pause() external onlyOwner {
_pause();
}

function unpause() public onlyOwner {
function unpause() external onlyOwner {
_unpause();
}

Expand Down

0 comments on commit 4122c06

Please sign in to comment.