Commit 5778931f authored by Karl Floersch's avatar Karl Floersch

Fix missing semicolon

parent 63b4f0cd
...@@ -875,7 +875,7 @@ contract OVM_ExecutionManager is iOVM_ExecutionManager, Lib_AddressResolver { ...@@ -875,7 +875,7 @@ contract OVM_ExecutionManager is iOVM_ExecutionManager, Lib_AddressResolver {
address codeContractAddress = address codeContractAddress =
uint(_contract) < 100 uint(_contract) < 100
? _contract ? _contract
: _getAccountEthAddress(_contract) : _getAccountEthAddress(_contract);
return _handleExternalInteraction( return _handleExternalInteraction(
_nextMessageContext, _nextMessageContext,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment