Skip to content

Commit

Permalink
minor transfer optimization (#668)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxsam4 authored and adamdossa committed Jun 13, 2019
1 parent 3ff1d69 commit 95338da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/tokens/SecurityToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ contract SecurityToken is ERC20, ReentrancyGuard, SecurityTokenStorage, IERC1594
* @return bool success
*/
function transfer(address _to, uint256 _value) public returns(bool success) {
transferWithData(_to, _value, "");
_transferWithData(msg.sender, _to, _value, "");
return true;
}

Expand Down

0 comments on commit 95338da

Please sign in to comment.