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
359 B
13 lines
359 B
8 years ago
|
pragma solidity ^0.4.4;
|
||
8 years ago
|
import "../../contracts/MultisigWallet.sol";
|
||
8 years ago
|
|
||
|
contract MultisigWalletMock is MultisigWallet {
|
||
|
uint public totalSpending;
|
||
|
|
||
|
function MultisigWalletMock(address[] _owners, uint _required, uint _daylimit)
|
||
8 years ago
|
MultisigWallet(_owners, _required, _daylimit) payable { }
|
||
8 years ago
|
|
||
|
function changeOwner(address _from, address _to) external { }
|
||
|
|
||
|
}
|