Static Analyzer for Solidity
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.
 
 
 
 
slither/tests/e2e/detectors/test_data/unprotected-upgrade/0.4.25/Reinitializer.sol

15 lines
326 B

import "./Initializable.sol";
contract Reinitializer is Initializable {
address owner;
function initialize() external reinitializer(2) {
require(owner == address(0));
owner = msg.sender;
}
function kill() external {
require(msg.sender == owner);
selfdestruct(owner);
}
}