mirror of https://github.com/crytic/slither
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
420 B
19 lines
420 B
6 years ago
|
contract MyConc{
|
||
|
function bad(address payable dst) external payable{
|
||
|
dst.send(msg.value);
|
||
|
}
|
||
|
|
||
|
function good(address payable dst) external payable{
|
||
|
require(dst.send(msg.value));
|
||
|
}
|
||
|
|
||
|
function good2(address payable dst) external payable{
|
||
|
bool res = dst.send(msg.value);
|
||
|
if(!res){
|
||
|
emit Failed(dst, msg.value);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
event Failed(address, uint);
|
||
|
}
|