github.com/ethereum-optimism/optimism@v1.7.2/packages/contracts-bedrock/src/periphery/drippie/dripchecks/CheckTrue.sol (about)

     1  // SPDX-License-Identifier: MIT
     2  pragma solidity 0.8.15;
     3  
     4  import { IDripCheck } from "../IDripCheck.sol";
     5  
     6  /// @title CheckTrue
     7  /// @notice DripCheck that always returns true.
     8  contract CheckTrue is IDripCheck {
     9      /// @inheritdoc IDripCheck
    10      function check(bytes memory) external pure returns (bool execute_) {
    11          execute_ = true;
    12      }
    13  }