missing emit

This commit is contained in:
Ricardo Guilherme Schmidt 2018-05-13 06:17:39 -03:00
parent f8d71b40e4
commit 87dbdbef39
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ contract UpdatableInstance is Instance {
function updateUpdatableInstance(address _kernel) external {
require(msg.sender == address(this));
InstanceUpdated(kernel, _kernel);
emit InstanceUpdated(kernel, _kernel);
kernel = _kernel;
}