* fixed visibility warnings * solved visibility and line length warning * change a test assertion that fails due to chai dependence update * linter, constructor style and solved visibility warnings * Changed Windows line endings to Unix.
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()
|
|
external
|
|
onlyIfWhitelisted(msg.sender)
|
|
view
|
|
{
|
|
}
|
|
}
|