Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ylv-io committed May 4, 2023
1 parent 031583c commit 10c3622
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,5 @@ interface ITemporarilyPausable {
function getPausedState()
external
view
returns (
bool paused,
uint256 pauseWindowEndTime,
uint256 bufferPeriodEndTime
);
returns (bool paused, uint256 pauseWindowEndTime, uint256 bufferPeriodEndTime);
}
6 changes: 1 addition & 5 deletions pkg/solidity-utils/contracts/helpers/TemporarilyPausable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,7 @@ abstract contract TemporarilyPausable is ITemporarilyPausable {
external
view
override
returns (
bool paused,
uint256 pauseWindowEndTime,
uint256 bufferPeriodEndTime
)
returns (bool paused, uint256 pauseWindowEndTime, uint256 bufferPeriodEndTime)
{
// solhint-disable-previous-line no-empty-blocks
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,5 @@ pragma solidity ^0.8.18;
import "../helpers/TemporarilyPausable.sol";

contract TemporarilyPausableMock is TemporarilyPausable {
constructor()
TemporarilyPausable()
{}

constructor() TemporarilyPausable() {}
}

0 comments on commit 10c3622

Please sign in to comment.