Browse Source

Merge pull request #526 from amazingandyyy/patch-1

Update RefundVault.sol
Facundo Spagnuolo 8 years ago
parent
commit
088897150e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      contracts/crowdsale/RefundVault.sol

+ 1 - 1
contracts/crowdsale/RefundVault.sol

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