9 lines
268 B
Solidity
9 lines
268 B
Solidity
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
pragma solidity =0.7.6;
|
|
|
|
import '../base/ImmutableState.sol';
|
|
|
|
contract ImmutableStateTest is ImmutableState {
|
|
constructor(address _factoryV2, address _positionManager) ImmutableState(_factoryV2, _positionManager) {}
|
|
}
|