diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2016-11-16 02:42:57 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2016-11-18 01:23:35 +0800 |
commit | d97eb7cc75f6a789f41a43132c7ca3b5aefe967f (patch) | |
tree | 0e87be9b30ab83c0e0a6981923f67b9022959f24 /test/contracts | |
parent | 1d6fe5c4e4b01d9ef5e1527a405ae44e79b56726 (diff) | |
download | dexon-solidity-d97eb7cc75f6a789f41a43132c7ca3b5aefe967f.tar.gz dexon-solidity-d97eb7cc75f6a789f41a43132c7ca3b5aefe967f.tar.zst dexon-solidity-d97eb7cc75f6a789f41a43132c7ca3b5aefe967f.zip |
Add payable keyword to the multisig wallet
Diffstat (limited to 'test/contracts')
-rw-r--r-- | test/contracts/Wallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/contracts/Wallet.cpp b/test/contracts/Wallet.cpp index ec968058..4966b26c 100644 --- a/test/contracts/Wallet.cpp +++ b/test/contracts/Wallet.cpp @@ -368,7 +368,7 @@ contract Wallet is multisig, multiowned, daylimit { // constructor - just pass on the owner array to the multiowned and // the limit to daylimit - function Wallet(address[] _owners, uint _required, uint _daylimit) + function Wallet(address[] _owners, uint _required, uint _daylimit) payable multiowned(_owners, _required) daylimit(_daylimit) { } |