* Made some inherit-only contracts internal.
* Added OwnableMock.
(cherry picked from commit 96d6103e0b)
7 lines
98 B
Solidity
7 lines
98 B
Solidity
pragma solidity ^0.4.24;
|
|
|
|
import "../ownership/Ownable.sol";
|
|
|
|
contract OwnableMock is Ownable {
|
|
}
|