* 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.
9 lines
145 B
Solidity
9 lines
145 B
Solidity
pragma solidity ^0.4.24;
|
|
|
|
import "../lifecycle/Destructible.sol";
|
|
|
|
|
|
contract DestructibleMock is Destructible {
|
|
function() public payable {}
|
|
}
|