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

20 lines
438 B
Solidity

// SPDX-License-Identifier: UNLICENSED
pragma solidity =0.7.6;
pragma abicoder v2;
import '../SwapRouter.sol';
contract MockTimeSwapRouter is SwapRouter {
uint256 time;
constructor(address _factory, address _WETH9) SwapRouter(_factory, _WETH9) {}
function _blockTimestamp() internal view override returns (uint256) {
return time;
}
function setTime(uint256 _time) external {
time = _time;
}
}