You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
338 B
13 lines
338 B
8 years ago
|
pragma solidity ^0.4.4;
|
||
|
import "../MultisigWallet.sol";
|
||
|
|
||
|
contract MultisigWalletMock is MultisigWallet {
|
||
|
uint public totalSpending;
|
||
|
|
||
|
function MultisigWalletMock(address[] _owners, uint _required, uint _daylimit)
|
||
|
MultisigWallet(_owners, _required, _daylimit) { }
|
||
|
|
||
|
function changeOwner(address _from, address _to) external { }
|
||
|
|
||
|
}
|