Skip to content

Commit

Permalink
Removed onlyPayloadSize modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
rudygodoy committed Aug 20, 2017
1 parent b7e2b72 commit 26cef28
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions contracts/token/StandardToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,6 @@ contract StandardToken is ERC20, BasicToken {

mapping (address => mapping (address => uint256)) allowed;

modifier onlyPayloadSize(uint numwords) {
require(msg.data.length == numwords * 32 + 4);
_;
}

/**
* @dev Transfer tokens from one address to another
* @param _from address The address which you want to send tokens from
Expand Down

0 comments on commit 26cef28

Please sign in to comment.