Files
openzeppelin-contracts/contracts/mocks/WhitelistMock.sol
Yong Zhen Yu 6bd8842ab5 removed and tested unecessary gas cost (#1017)
* removed and tested unecessary gas cost

* linted

* Revert package-lock.json update.

This reverts commit 054598ce7f.

* Added clarifying comments.
2018-07-20 16:57:39 -03:00

15 lines
205 B
Solidity

pragma solidity ^0.4.24;
import "../access/Whitelist.sol";
contract WhitelistMock is Whitelist {
function onlyWhitelistedCanDoThis()
onlyIfWhitelisted(msg.sender)
view
external
{
}
}