diff options
author | Erik Kundt <bitshift@posteo.org> | 2018-06-25 21:02:20 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2018-06-26 06:00:32 +0800 |
commit | 95c3488a26bf5c20b242a7358d0dd04948b326f2 (patch) | |
tree | 993783b500555fb1b5dcb4d3f7ae2331fdec96ce /test/compilationTests/zeppelin/MultisigWallet.sol | |
parent | 3b1741909c7472b892695260b0b8c59a53c2183e (diff) | |
download | dexon-solidity-95c3488a26bf5c20b242a7358d0dd04948b326f2.tar dexon-solidity-95c3488a26bf5c20b242a7358d0dd04948b326f2.tar.gz dexon-solidity-95c3488a26bf5c20b242a7358d0dd04948b326f2.tar.bz2 dexon-solidity-95c3488a26bf5c20b242a7358d0dd04948b326f2.tar.lz dexon-solidity-95c3488a26bf5c20b242a7358d0dd04948b326f2.tar.xz dexon-solidity-95c3488a26bf5c20b242a7358d0dd04948b326f2.tar.zst dexon-solidity-95c3488a26bf5c20b242a7358d0dd04948b326f2.zip |
Updates external contracts to new constructor syntax.
Diffstat (limited to 'test/compilationTests/zeppelin/MultisigWallet.sol')
-rw-r--r-- | test/compilationTests/zeppelin/MultisigWallet.sol | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/compilationTests/zeppelin/MultisigWallet.sol b/test/compilationTests/zeppelin/MultisigWallet.sol index 8fcdb63e..00019f6b 100644 --- a/test/compilationTests/zeppelin/MultisigWallet.sol +++ b/test/compilationTests/zeppelin/MultisigWallet.sol @@ -25,8 +25,8 @@ contract MultisigWallet is Multisig, Shareable, DayLimit { * @param _owners A list of owners. * @param _required The amount required for a transaction to be approved. */ - function MultisigWallet(address[] _owners, uint256 _required, uint256 _daylimit) - Shareable(_owners, _required) + constructor(address[] _owners, uint256 _required, uint256 _daylimit) + Shareable(_owners, _required) DayLimit(_daylimit) { } /** |