forked from cerc-io/laconicd-deprecated
96cad7de9c
* tests: reorganize testing packages * gitignore and minor changes
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);
|
|
}
|
|
}
|