Update RefundVault.sol

This commit is contained in:
Andy Chen
2017-10-31 00:13:27 -07:00
committed by GitHub
parent 8e01dd14f9
commit be692e59eb

View File

@ -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;
}