Commit 66fb8476 by Manuel Araoz

stoppable polish

parent 4bfc2ba8
/* /*
* Stoppable * Stoppable
* Abstract contract that allows children to implement an
* emergency stop mechanism.
*/ */
contract Stoppable { contract Stoppable {
address public curator; address public curator;
...@@ -9,7 +11,7 @@ contract Stoppable { ...@@ -9,7 +11,7 @@ contract Stoppable {
modifier onlyInEmergency { if (stopped) _ } modifier onlyInEmergency { if (stopped) _ }
function Stoppable(address _curator) { function Stoppable(address _curator) {
if (_curator == 0) { if (_curator == 0) {
throw; throw;
} }
curator = _curator; curator = _curator;
......
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