10 lines
243 B
Solidity
10 lines
243 B
Solidity
pragma solidity ^0.4.25;
|
|
|
|
contract Faucet {
|
|
function withdraw(uint withdraw_amount) public {
|
|
require(withdraw_amount <= 1000000000000000);
|
|
msg.sender.transfer(withdraw_amount);
|
|
}
|
|
|
|
function () public payable {}
|
|
} |