Last active
July 18, 2022 19:00
-
-
Save CJ42/e58bb7caa2a13073b20f6cd72178782e to your computer and use it in GitHub Desktop.
valid storage pointer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.10; | |
| import "./Timers.sol"; | |
| contract TimeWatch { | |
| Timers.Timestamp timer; | |
| function startTimer(uint64 _deadline) public { | |
| Timers.setDeadline(timer, _deadline); | |
| } | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment