mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Add payable keyword to the multisig wallet
This commit is contained in:
parent
1d6fe5c4e4
commit
d97eb7cc75
@ -368,7 +368,7 @@ contract Wallet is multisig, multiowned, daylimit {
|
|||||||
|
|
||||||
// constructor - just pass on the owner array to the multiowned and
|
// constructor - just pass on the owner array to the multiowned and
|
||||||
// the limit to daylimit
|
// 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) {
|
multiowned(_owners, _required) daylimit(_daylimit) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user