Commit f214dcca by Dave Appleton

removed redundant returns

parent c0cce277
...@@ -33,7 +33,7 @@ contract LimitedTransferToken is ERC20 { ...@@ -33,7 +33,7 @@ contract LimitedTransferToken is ERC20 {
* @param _value The amount of tokens to be transferred. * @param _value The amount of tokens to be transferred.
*/ */
function transfer(address _to, uint _value) canTransfer(msg.sender, _value) { function transfer(address _to, uint _value) canTransfer(msg.sender, _value) {
return super.transfer(_to, _value); super.transfer(_to, _value);
} }
/** /**
...@@ -43,7 +43,7 @@ contract LimitedTransferToken is ERC20 { ...@@ -43,7 +43,7 @@ contract LimitedTransferToken is ERC20 {
* @param _value The amount of tokens to be transferred. * @param _value The amount of tokens to be transferred.
*/ */
function transferFrom(address _from, address _to, uint _value) canTransfer(_from, _value) { function transferFrom(address _from, address _to, uint _value) canTransfer(_from, _value) {
return super.transferFrom(_from, _to, _value); super.transferFrom(_from, _to, _value);
} }
/** /**
......
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