Skip to content

Commit

Permalink
♻️ Interface Functions Prettify
Browse files Browse the repository at this point in the history
Signed-off-by: Pascal Marco Caversaccio <[email protected]>
  • Loading branch information
pcaversaccio committed Jan 21, 2025
1 parent 41555c7 commit 8d5ba23
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/utils/interfaces/IPausable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ pragma solidity ^0.8.28;

interface IPausable {
event Paused(address account);

event Unpaused(address account);

function paused() external view returns (bool);

function pause() external;

function unpause() external;
}

0 comments on commit 8d5ba23

Please sign in to comment.