infrastructure-upgrade/lib/v3-periphery/contracts/test/MockTimeNonfungiblePositionManager.sol

24 lines
576 B
Solidity
Raw Normal View History

2023-04-08 21:46:18 +03:00
// SPDX-License-Identifier: UNLICENSED
pragma solidity =0.7.6;
pragma abicoder v2;
import '../NonfungiblePositionManager.sol';
contract MockTimeNonfungiblePositionManager is NonfungiblePositionManager {
uint256 time;
constructor(
address _factory,
address _WETH9,
address _tokenDescriptor
) NonfungiblePositionManager(_factory, _WETH9, _tokenDescriptor) {}
function _blockTimestamp() internal view override returns (uint256) {
return time;
}
function setTime(uint256 _time) external {
time = _time;
}
}