mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fix tests regarding contract type conversion.
This commit is contained in:
committed by
Alex Beregszaszi
parent
c8232d9759
commit
b800bfb021
@@ -16,7 +16,7 @@ contract MultiSigWalletWithDailyLimitFactory is Factory {
|
||||
public
|
||||
returns (address wallet)
|
||||
{
|
||||
wallet = new MultiSigWalletWithDailyLimit(_owners, _required, _dailyLimit);
|
||||
wallet = address(new MultiSigWalletWithDailyLimit(_owners, _required, _dailyLimit));
|
||||
register(wallet);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user