mirror of
https://github.com/tornadocash/torn-token.git
synced 2024-11-22 09:47:14 +01:00
15 lines
352 B
Solidity
15 lines
352 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.6.0;
|
|
|
|
contract Timestamp {
|
|
uint256 public fakeTimestamp;
|
|
|
|
function setFakeTimestamp(uint256 _fakeTimestamp) public {
|
|
fakeTimestamp = _fakeTimestamp;
|
|
}
|
|
|
|
function blockTimestamp() public view virtual returns (uint256) {
|
|
return fakeTimestamp == 0 ? block.timestamp : fakeTimestamp;
|
|
}
|
|
}
|