Make std contracts use new style

This commit is contained in:
Denton Liu
2016-08-26 13:33:42 -04:00
parent 532266b89e
commit d2144b03c7
+2 -4
View File
@@ -17,8 +17,7 @@ contract StandardToken is Token {
balanceOf[_to] += _value;
Transfer(msg.sender, _to, _value);
return true;
}
else {
} else {
return false;
}
}
@@ -29,8 +28,7 @@ contract StandardToken is Token {
balanceOf[_to] += _value;
Transfer(_from, _to, _value);
return true;
}
else {
} else {
return false;
}
}