12345678910111213141516 |
- pragma solidity ^0.4.8;
- import "../../contracts/ownership/Shareable.sol";
- contract ShareableMock is Shareable {
- uint public count = 0;
- function ShareableMock(address[] _owners, uint _required) Shareable(_owners, _required) {
- }
- function increaseCount(bytes32 action) onlymanyowners(action) {
- count = count + 1;
- }
- }
|