aboutsummaryrefslogtreecommitdiffstats
path: root/test/compilationTests/gnosis/Markets/StandardMarketFactory.sol
diff options
context:
space:
mode:
Diffstat (limited to 'test/compilationTests/gnosis/Markets/StandardMarketFactory.sol')
-rw-r--r--test/compilationTests/gnosis/Markets/StandardMarketFactory.sol2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/compilationTests/gnosis/Markets/StandardMarketFactory.sol b/test/compilationTests/gnosis/Markets/StandardMarketFactory.sol
index 101c37a2..88dcbe79 100644
--- a/test/compilationTests/gnosis/Markets/StandardMarketFactory.sol
+++ b/test/compilationTests/gnosis/Markets/StandardMarketFactory.sol
@@ -20,6 +20,6 @@ contract StandardMarketFactory is MarketFactory {
returns (Market market)
{
market = new StandardMarket(msg.sender, eventContract, marketMaker, fee);
- MarketCreation(msg.sender, market, eventContract, marketMaker, fee);
+ emit MarketCreation(msg.sender, market, eventContract, marketMaker, fee);
}
}