Add emit keyword to compilation tests.

This commit is contained in:
chriseth
2018-06-27 10:37:46 +02:00
parent b9d035264d
commit 01fd5a8d51
43 changed files with 120 additions and 120 deletions
@@ -26,6 +26,6 @@ contract SignedMessageOracleFactory {
{
signedMessageOracle = new SignedMessageOracle(descriptionHash, v, r, s);
address oracle = ecrecover(descriptionHash, v, r, s);
SignedMessageOracleCreation(msg.sender, signedMessageOracle, oracle);
emit SignedMessageOracleCreation(msg.sender, signedMessageOracle, oracle);
}
}