* removed and tested unecessary gas cost
* linted
* Revert package-lock.json update.
This reverts commit 054598ce7f.
* Added clarifying comments.
15 lines
205 B
Solidity
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
|
|
{
|
|
}
|
|
}
|