You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
407 B
18 lines
407 B
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.2;
|
|
|
|
import "../munged/proxy/utils/Initializable4.6.sol";
|
|
|
|
contract InitializableBasicHarness is Initializable {
|
|
|
|
uint256 public unchangeable;
|
|
|
|
function initialize(uint256 _val) public initializer {
|
|
unchangeable = _val;
|
|
}
|
|
|
|
function reinitialize(uint256 _val) public reinitializer(2) {
|
|
unchangeable = _val;
|
|
}
|
|
|
|
}
|
|
|