Update test suite to use address payable.

This commit is contained in:
Daniel Kirchner
2018-09-12 16:21:43 +02:00
parent 1994b51ef3
commit 879251a78b
26 changed files with 121 additions and 67 deletions
@@ -19,7 +19,7 @@ contract Destructible is Ownable {
selfdestruct(owner);
}
function destroyAndSend(address _recipient) public onlyOwner {
function destroyAndSend(address payable _recipient) public onlyOwner {
selfdestruct(_recipient);
}
}