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; |
||||
|
||||
import "../token/ERC20/RBACMintableToken.sol"; |
||||
import "../token/ERC20/CappedToken.sol"; |
||||
|
||||
pragma solidity ^0.4.24; |
||||
|
||||
contract RBACCappedTokenMock is CappedToken, RBACMintableToken { |
||||
constructor( |
||||
uint256 _cap |
||||
) |
||||
CappedToken(_cap) |
||||
public |
||||
{} |
||||
} |
||||
import "../token/ERC20/RBACMintableToken.sol"; |
||||
import "../token/ERC20/CappedToken.sol"; |
||||
|
||||
|
||||
contract RBACCappedTokenMock is CappedToken, RBACMintableToken { |
||||
constructor(uint256 _cap) |
||||
CappedToken(_cap) |
||||
public |
||||
{} |
||||
} |
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue