infrastructure-upgrade/lib/v3-periphery/contracts/test/MockTimeNonfungiblePositionManager.sol
T-Hax 735546619e
init
Signed-off-by: T-Hax <>
2023-04-08 18:46:18 +00:00

24 lines
576 B
Solidity

// 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;
}
}