* 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.
13 lines
249 B
Solidity
13 lines
249 B
Solidity
pragma solidity ^0.4.24;
|
|
|
|
import "../token/ERC20/RBACMintableToken.sol";
|
|
import "../token/ERC20/CappedToken.sol";
|
|
|
|
|
|
contract RBACCappedTokenMock is CappedToken, RBACMintableToken {
|
|
constructor(uint256 _cap)
|
|
CappedToken(_cap)
|
|
public
|
|
{}
|
|
}
|