mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Added various contracts for testing.
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user