Merge pull request #526 from amazingandyyy/patch-1

Update RefundVault.sol
This commit is contained in:
Facundo Spagnuolo
2017-11-15 11:56:03 -03:00
committed by GitHub

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