Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
haythemsellami committed Jul 20, 2020
1 parent 39a54a2 commit cba46c9
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions contracts/Whitelist.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
pragma solidity 0.6.10;

import "./interfaces/AddressBookInterface.sol";

import "./packages/oz/Ownable.sol";

/**
Expand All @@ -14,9 +13,9 @@ contract Whitelist is Ownable {
///@notice AddressBook module address
address public addressBook;

///@dev mapping to track whitelisted product
///@dev mapping to track whitelisted products
mapping(bytes32 => bool) internal whitelistedProduct;
///@dev mapping to track whitelisted otoken
///@dev mapping to track whitelisted otokens
mapping(address => bool) internal whitelistedOtoken;

/**
Expand All @@ -29,7 +28,7 @@ contract Whitelist is Ownable {
addressBook = _addressBook;
}

///@notice emitted when owner whitelist a product
///@notice emitted when the owner whitelists a new product
event ProductWhitelisted(
bytes32 productHash,
address indexed underlying,
Expand Down

0 comments on commit cba46c9

Please sign in to comment.