Static Analyzer for Solidity
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.
 
 
 
 
slither/tests/unchecked_send-0.5.1.sol

18 lines
420 B

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);
}