Why does Remix fail to deploy the simple contract (simplified from the Mastering Ethereum book 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 {} } No matter how I raise gasLimit and/or gasPrice
