diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-06-26 06:45:55 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-26 06:45:55 +0800 |
commit | 4be9dc430452ca73ffb07f987f27fb6ccf4ac848 (patch) | |
tree | 993783b500555fb1b5dcb4d3f7ae2331fdec96ce /test/compilationTests/zeppelin/crowdsale/CappedCrowdsale.sol | |
parent | 3b1741909c7472b892695260b0b8c59a53c2183e (diff) | |
parent | 95c3488a26bf5c20b242a7358d0dd04948b326f2 (diff) | |
download | dexon-solidity-4be9dc430452ca73ffb07f987f27fb6ccf4ac848.tar dexon-solidity-4be9dc430452ca73ffb07f987f27fb6ccf4ac848.tar.gz dexon-solidity-4be9dc430452ca73ffb07f987f27fb6ccf4ac848.tar.bz2 dexon-solidity-4be9dc430452ca73ffb07f987f27fb6ccf4ac848.tar.lz dexon-solidity-4be9dc430452ca73ffb07f987f27fb6ccf4ac848.tar.xz dexon-solidity-4be9dc430452ca73ffb07f987f27fb6ccf4ac848.tar.zst dexon-solidity-4be9dc430452ca73ffb07f987f27fb6ccf4ac848.zip |
Merge pull request #4350 from ethereum/constructorWorkaroundExternal
New constructor syntax for external compilation tests
Diffstat (limited to 'test/compilationTests/zeppelin/crowdsale/CappedCrowdsale.sol')
-rw-r--r-- | test/compilationTests/zeppelin/crowdsale/CappedCrowdsale.sol | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/compilationTests/zeppelin/crowdsale/CappedCrowdsale.sol b/test/compilationTests/zeppelin/crowdsale/CappedCrowdsale.sol index f04649f3..afae79b7 100644 --- a/test/compilationTests/zeppelin/crowdsale/CappedCrowdsale.sol +++ b/test/compilationTests/zeppelin/crowdsale/CappedCrowdsale.sol @@ -12,7 +12,7 @@ contract CappedCrowdsale is Crowdsale { uint256 public cap; - function CappedCrowdsale(uint256 _cap) { + constructor(uint256 _cap) { cap = _cap; } |