Merge pull request #526 from amazingandyyy/patch-1

Update RefundVault.sol
pull/487/head^2
Facundo Spagnuolo 7 years ago committed by GitHub
commit 088897150e
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); event Refunded(address indexed beneficiary, uint256 weiAmount);
function RefundVault(address _wallet) { function RefundVault(address _wallet) {
require(_wallet != 0x0); require(_wallet != address(0));
wallet = _wallet; wallet = _wallet;
state = State.Active; state = State.Active;
} }

Loading…
Cancel
Save