From d2144b03c7ef6f7189ba289f5df1a445c68f3b68 Mon Sep 17 00:00:00 2001 From: Denton Liu Date: Wed, 24 Aug 2016 15:20:59 -0400 Subject: [PATCH] Make std contracts use new style --- std/StandardToken.sol | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/std/StandardToken.sol b/std/StandardToken.sol index db4534920..41f2d709a 100644 --- a/std/StandardToken.sol +++ b/std/StandardToken.sol @@ -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; } }