Tests after making all explicit address conversions as non-payable

This commit is contained in:
hrkrshnn
2020-12-14 18:46:01 +01:00
parent f30c7cbac8
commit 7438c4dc16
26 changed files with 119 additions and 31 deletions
@@ -10,7 +10,7 @@ contract Main {
function s() public returns (bool) {
Receiver r = new Receiver();
return address(r).send(0);
return payable(r).send(0);
}
}