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

20 lines
438 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 '../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;
}
}