9 lines
139 B
Solidity
9 lines
139 B
Solidity
|
pragma solidity 0.4.24;
|
||
|
|
||
|
|
||
|
contract EthSender {
|
||
|
function sendEth(address to) external payable {
|
||
|
to.transfer(msg.value);
|
||
|
}
|
||
|
}
|