WIP Target contract creation via factory pattern
This commit is contained in:
@ -5,3 +5,9 @@ contract InsecureTargetMock {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
contract Deployer {
|
||||
function deployContract() returns (address) {
|
||||
return new InsecureTargetMock();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user