From 95c3488a26bf5c20b242a7358d0dd04948b326f2 Mon Sep 17 00:00:00 2001 From: Erik Kundt Date: Mon, 25 Jun 2018 15:02:20 +0200 Subject: Updates external contracts to new constructor syntax. --- test/compilationTests/zeppelin/crowdsale/RefundVault.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/compilationTests/zeppelin/crowdsale/RefundVault.sol') diff --git a/test/compilationTests/zeppelin/crowdsale/RefundVault.sol b/test/compilationTests/zeppelin/crowdsale/RefundVault.sol index d88f035f..6a22ebde 100644 --- a/test/compilationTests/zeppelin/crowdsale/RefundVault.sol +++ b/test/compilationTests/zeppelin/crowdsale/RefundVault.sol @@ -22,7 +22,7 @@ contract RefundVault is Ownable { event RefundsEnabled(); event Refunded(address indexed beneficiary, uint256 weiAmount); - function RefundVault(address _wallet) { + constructor(address _wallet) { require(_wallet != address(0x0)); wallet = _wallet; state = State.Active; -- cgit v1.2.3