为什么 Remix 无法部署简单合约(从掌握以太坊书籍https://github.com/ethereumbook/ethereumbook/blob/develop/code/Solidity/Faucet2.sol简化)?--
pragma solidity ^0.4.19;
contract Faucet {
function withdraw(uint withdraw_amount) public {
require(withdraw_amount <= 100000000000000000);
msg.sender.transfer(withdraw_amount);
}
function () external payable {}
}
无论我如何提高 gasLimit 和/或 gasPrice