Bläddra i källkod

stoppable polish

Manuel Araoz 9 år sedan
förälder
incheckning
66fb8476b2
1 ändrade filer med 3 tillägg och 1 borttagningar
  1. 3 1
      contracts/Stoppable.sol

+ 3 - 1
contracts/Stoppable.sol

@@ -1,5 +1,7 @@
 /*
  * Stoppable
+ * Abstract contract that allows children to implement an
+ * emergency stop mechanism. 
  */
 contract Stoppable {
   address public curator;
@@ -9,7 +11,7 @@ contract Stoppable {
   modifier onlyInEmergency { if (stopped) _ }
 
   function Stoppable(address _curator) {
-		if (_curator == 0) {
+    if (_curator == 0) {
       throw;
     }
     curator = _curator;