Skip to content

Commit

Permalink
fix(locked-token): fix openzeppelin reference
Browse files Browse the repository at this point in the history
  • Loading branch information
0xferit committed Nov 21, 2018
1 parent 3fe9bce commit c3d2a2c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@


pragma solidity ^0.4.15;
import "openzeppelin-solidity/contracts/token/ERC20/MintableToken.sol";
import "openzeppelin-solidity/contracts/token/ERC20/ERC20Mintable.sol";


/** @title Locked Token
* @dev A token when created coins are locked and unlock accross time.
* Note that we use steps for one month. In the future, when float are available, we could use law of exponential decay to avoid steps and have a smoothed unlocking.
*/
contract LockedToken is MintableToken {
contract LockedToken is ERC20Mintable {
uint public lockMultiplierPerMillionPerMonth; // The amount we must multiply the locked balance each month.
uint constant LOCK_DIVISOR = 1E6;
mapping (address => uint) public lastUnlock; // Last time tokens were unlocked.
Expand Down

0 comments on commit c3d2a2c

Please sign in to comment.