Skip to content

Commit

Permalink
Remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdossa committed May 22, 2018
1 parent 5610eb0 commit 170692e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ contract PercentageTransferManager is ITransferManager {
{
}

function verifyTransfer(address _from, address _to, uint256 _amount) public view returns(Result) {
function verifyTransfer(address /* _from */, address _to, uint256 _amount) public view returns(Result) {
if (!paused) {
// If an address is on the whitelist, it is allowed to hold more than maxHolderPercentage of the tokens.
if (whitelist[_to]) {
Expand Down

0 comments on commit 170692e

Please sign in to comment.