mirror of
https://github.com/status-im/open-bounty.git
synced 2025-01-24 16:29:18 +00:00
explicitally set function as public
This commit is contained in:
parent
1b2a941869
commit
5fe2bb9b52
@ -6,7 +6,10 @@ contract MultiSigFactory {
|
||||
|
||||
event Create(address indexed caller, address createdContract);
|
||||
|
||||
function create(address[] owners, uint256 required) returns (address wallet) {
|
||||
function create(address[] owners, uint256 required)
|
||||
public
|
||||
returns (address wallet)
|
||||
{
|
||||
wallet = new MultiSigStub(owners, required);
|
||||
Create(msg.sender, wallet);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user