mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 02:12:23 +00:00
7 lines
No EOL
132 B
Solidity
Executable file
7 lines
No EOL
132 B
Solidity
Executable file
pragma solidity ^0.4.19;
|
|
|
|
contract Transfers2 {
|
|
function transfer(address _addr) public payable {
|
|
_addr.transfer(msg.value);
|
|
}
|
|
} |