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.
18 lines
289 B
18 lines
289 B
6 years ago
|
//pragma solidity ^0.4.24;
|
||
6 years ago
|
|
||
|
|
||
|
contract Sender {
|
||
6 years ago
|
function send(address _receiver) payable external {
|
||
|
_receiver.call.value(msg.value).gas(7777)("");
|
||
6 years ago
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
contract Receiver {
|
||
|
uint public balance = 0;
|
||
|
|
||
4 years ago
|
receive () payable external{
|
||
6 years ago
|
balance += msg.value;
|
||
|
}
|
||
6 years ago
|
}
|