Skip to content

Latest commit

 

History

History
208 lines (190 loc) · 6.36 KB

Destroyable.md

File metadata and controls

208 lines (190 loc) · 6.36 KB

Destroyable.sol

View Source: contracts/fakes/Destroyable.sol

Destroyable

Functions

function () public payable

Arguments

Name Type Description
Source Code
constructor() payable {}

destroy

function destroy(address payable _recipient) public nonpayable

Arguments

Name Type Description
_recipient address payable
Source Code
function destroy(address payable _recipient) public {
    selfdestruct(_recipient);
  }

Contracts