Skip to content

Commit

Permalink
resolve #15
Browse files Browse the repository at this point in the history
  • Loading branch information
mazaletskiy committed Jan 6, 2019
1 parent e15a595 commit 7dee846
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contracts/token/AkropolisToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ contract AkropolisToken is AkropolisBaseToken, Pausable, Lockable, Whitelist {
*/
function approve(address _spender, uint256 _value)
public whenNotPaused returns (bool) {
super.approve(_spender, _value);
return super.approve(_spender, _value);
}

/**
Expand Down Expand Up @@ -72,7 +72,7 @@ contract AkropolisToken is AkropolisBaseToken, Pausable, Lockable, Whitelist {
}

function transfer(address _to, uint256 _amount) public whenNotPaused onlyWhitelist returns (bool) {
super.transfer(_to, _amount);
return super.transfer(_to, _amount);
}

/**
Expand All @@ -89,7 +89,7 @@ contract AkropolisToken is AkropolisBaseToken, Pausable, Lockable, Whitelist {
*/
function transferFrom(address _from, address _to, uint256 _amount)
public whenNotPaused onlyWhitelist returns (bool) {
super.transferFrom(_from, _to, _amount);
return super.transferFrom(_from, _to, _amount);
}


Expand Down

0 comments on commit 7dee846

Please sign in to comment.