solidity/test/compilationTests/MultiSigWallet/MultiSigWalletWithDailyLimitFactory.sol
2017-07-05 12:39:55 +02:00

23 lines
871 B
Solidity

pragma solidity ^0.4.4;
import "Factory.sol";
import "MultiSigWalletWithDailyLimit.sol";
/// @title Multisignature wallet factory for daily limit version - Allows creation of multisig wallet.
/// @author Stefan George - <stefan.george@consensys.net>
contract MultiSigWalletWithDailyLimitFactory is Factory {
/// @dev Allows verified creation of multisignature wallet.
/// @param _owners List of initial owners.
/// @param _required Number of required confirmations.
/// @param _dailyLimit Amount in wei, which can be withdrawn without confirmations on a daily basis.
/// @return Returns wallet address.
function create(address[] _owners, uint _required, uint _dailyLimit)
public
returns (address wallet)
{
wallet = new MultiSigWalletWithDailyLimit(_owners, _required, _dailyLimit);
register(wallet);
}
}