diff --git a/packages/hardhat/contracts/CheckIn.sol b/packages/hardhat/contracts/CheckIn.sol deleted file mode 100644 index 207ace3..0000000 --- a/packages/hardhat/contracts/CheckIn.sol +++ /dev/null @@ -1,21 +0,0 @@ -//SPDX-License-Identifier: MIT -pragma solidity >=0.8.0 <0.9.0; - -import "@openzeppelin/contracts/access/Ownable.sol"; - -interface IBatchRegistry { - function checkIn() external; -} - -contract CheckIn is Ownable { - IBatchRegistry public batchRegistry; - - constructor(address initialOwner, address _batchRegistry) { - super.transferOwnership(initialOwner); - batchRegistry = IBatchRegistry(_batchRegistry); - } - - function checkIn() public onlyOwner { - batchRegistry.checkIn(); - } -}