WhitelistMock.sol 194 B

1234567891011121314
  1. pragma solidity ^0.4.18;
  2. import "../ownership/Whitelist.sol";
  3. contract WhitelistMock is Whitelist {
  4. function onlyWhitelistedCanDoThis()
  5. onlyWhitelisted
  6. view
  7. external
  8. {
  9. }
  10. }