aboutsummaryrefslogtreecommitdiffstats
path: root/test/compilationTests/zeppelin/crowdsale/RefundVault.sol
diff options
context:
space:
mode:
authorErik Kundt <bitshift@posteo.org>2018-06-25 21:02:20 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2018-06-26 06:00:32 +0800
commit95c3488a26bf5c20b242a7358d0dd04948b326f2 (patch)
tree993783b500555fb1b5dcb4d3f7ae2331fdec96ce /test/compilationTests/zeppelin/crowdsale/RefundVault.sol
parent3b1741909c7472b892695260b0b8c59a53c2183e (diff)
downloaddexon-solidity-95c3488a26bf5c20b242a7358d0dd04948b326f2.tar.gz
dexon-solidity-95c3488a26bf5c20b242a7358d0dd04948b326f2.tar.zst
dexon-solidity-95c3488a26bf5c20b242a7358d0dd04948b326f2.zip
Updates external contracts to new constructor syntax.
Diffstat (limited to 'test/compilationTests/zeppelin/crowdsale/RefundVault.sol')
-rw-r--r--test/compilationTests/zeppelin/crowdsale/RefundVault.sol2
1 files changed, 1 insertions, 1 deletions
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;