Add payable keyword to the multisig wallet

This commit is contained in:
Alex Beregszaszi
2016-11-17 17:23:35 +00:00
parent 1d6fe5c4e4
commit d97eb7cc75
+1 -1
View File
@@ -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) {
}