Made some inherit-only contracts internal. (#1433)
* Made some inherit-only contracts internal. * Added OwnableMock.
This commit is contained in:
@ -10,7 +10,7 @@ import "./escrow/Escrow.sol";
|
||||
contract PullPayment {
|
||||
Escrow private _escrow;
|
||||
|
||||
constructor() public {
|
||||
constructor() internal {
|
||||
_escrow = new Escrow();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user