aboutsummaryrefslogtreecommitdiffstats
path: root/test/contracts
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2016-11-16 02:42:57 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2016-11-18 01:23:35 +0800
commitd97eb7cc75f6a789f41a43132c7ca3b5aefe967f (patch)
tree0e87be9b30ab83c0e0a6981923f67b9022959f24 /test/contracts
parent1d6fe5c4e4b01d9ef5e1527a405ae44e79b56726 (diff)
downloaddexon-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.cpp2
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) {
}