internal constructors

This commit is contained in:
Ricardo Guilherme Schmidt 2018-05-13 05:45:03 -03:00
parent 841edfc4d8
commit a35d849f6c
2 changed files with 3 additions and 1 deletions

View File

@ -14,7 +14,7 @@ contract DelayedUpdatableInstance is DelayedUpdatableInstanceStorage, DelegatedC
event UpdateCancelled();
event UpdateConfirmed(address oldKernel, address newKernel);
function DelayedUpdatableInstance(address _kernel) public {
constructor(address _kernel) public {
kernel = _kernel;
}

View File

@ -17,4 +17,6 @@ contract DelayedUpdatableInstanceStorage {
uint256 activation;
}
// protected zone end
constructor() internal { }
}