Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixes compiler warnings abount unused local variables. Issue OpenZeppelin#367
  • Loading branch information
pash7ka authored Aug 28, 2017
1 parent 307d34e commit 07ce67d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions contracts/ownership/HasNoTokens.sol
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ contract HasNoTokens is CanReclaimToken {

/**
* @dev Reject all ERC23 compatible tokens
* @param from_ address The address that is transferring the tokens
* @param value_ uint256 the amount of the specified token
* @param data_ Bytes The data passed from the caller.
* param from_ address The address that is transferring the tokens
* param value_ uint256 the amount of the specified token
* param data_ Bytes The data passed from the caller.
*/
function tokenFallback(address from_, uint256 value_, bytes data_) external {
function tokenFallback(address /*from_*/, uint256 /*value_*/, bytes /*data_*/) external {
revert();
}

Expand Down

0 comments on commit 07ce67d

Please sign in to comment.