Unverified Commit be692e59 by Andy Chen Committed by GitHub

Update RefundVault.sol

parent 8e01dd14
......@@ -23,7 +23,7 @@ contract RefundVault is Ownable {
event Refunded(address indexed beneficiary, uint256 weiAmount);
function RefundVault(address _wallet) {
require(_wallet != 0x0);
require(_wallet != address(0));
wallet = _wallet;
state = State.Active;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment