Files
openzeppelin-contracts/contracts/mocks/DestructibleMock.sol
Nicolás Venturo 73be06412f Remove payable from Destructible constructor (#1107)
* Destructible no longer has a payable constructor.

* Fixed linter errors.
2018-07-23 15:44:14 -03:00

8 lines
144 B
Solidity

pragma solidity ^0.4.24;
import "../lifecycle/Destructible.sol";
contract DestructibleMock is Destructible {
function() payable public {}
}