* Test: Remove chai-as-promised calls * Test/Helpers: expectThrow accepts optional message * NPM: Remove chai-as-promised * Contracts/DestructibleMock: Fix lint
9 lines
145 B
Solidity
9 lines
145 B
Solidity
pragma solidity ^0.4.24;
|
|
|
|
import "../lifecycle/Destructible.sol";
|
|
|
|
|
|
contract DestructibleMock is Destructible {
|
|
function() payable public {}
|
|
}
|