Browse Source

Update RefundVault.sol

Andy Chen 8 years ago
parent
commit
be692e59eb
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;
   }