Update Truffle and Solium (#1105)
* 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.pull/1138/head
parent
9638ecd87a
commit
ca9e317259
@ -1,14 +1,12 @@ |
|||||||
pragma solidity ^0.4.24; |
pragma solidity ^0.4.24; |
||||||
|
|
||||||
import "../token/ERC20/RBACMintableToken.sol"; |
|
||||||
import "../token/ERC20/CappedToken.sol"; |
|
||||||
|
|
||||||
|
|
||||||
contract RBACCappedTokenMock is CappedToken, RBACMintableToken { |
import "../token/ERC20/RBACMintableToken.sol"; |
||||||
constructor( |
import "../token/ERC20/CappedToken.sol"; |
||||||
uint256 _cap |
|
||||||
) |
|
||||||
CappedToken(_cap) |
contract RBACCappedTokenMock is CappedToken, RBACMintableToken { |
||||||
public |
constructor(uint256 _cap) |
||||||
{} |
CappedToken(_cap) |
||||||
} |
public |
||||||
|
{} |
||||||
|
} |
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue