Remove payable from Destructible constructor (#1107)

* Destructible no longer has a payable constructor.

* Fixed linter errors.
This commit is contained in:
Nicolás Venturo
2018-07-23 15:44:14 -03:00
committed by GitHub
parent 23074676c4
commit 73be06412f
3 changed files with 15 additions and 5 deletions

View File

@ -9,9 +9,6 @@ import "../ownership/Ownable.sol";
* @dev Base contract that can be destroyed by owner. All funds in contract will be sent to the owner.
*/
contract Destructible is Ownable {
constructor() public payable { }
/**
* @dev Transfers the current balance to the owner and terminates the contract.
*/