Update RefundVault.sol

pull/526/head
Andy Chen 7 years ago committed by GitHub
parent 8e01dd14f9
commit be692e59eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      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;
}

Loading…
Cancel
Save