Skip to content

Commit

Permalink
Make std contracts use new style
Browse files Browse the repository at this point in the history
  • Loading branch information
Denton-L committed Aug 26, 2016
1 parent 532266b commit d2144b0
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions std/StandardToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ contract StandardToken is Token {
balanceOf[_to] += _value;
Transfer(msg.sender, _to, _value);
return true;
}
else {
} else {
return false;
}
}
Expand All @@ -29,8 +28,7 @@ contract StandardToken is Token {
balanceOf[_to] += _value;
Transfer(_from, _to, _value);
return true;
}
else {
} else {
return false;
}
}
Expand Down

0 comments on commit d2144b0

Please sign in to comment.