Skip to content

Commit

Permalink
linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
enkogu committed Dec 23, 2018
1 parent d99c8d7 commit f86605a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions contracts/SplitterBase.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import "zeppelin-solidity/contracts/ownership/Ownable.sol";
import "./interfaces/IReceiver.sol";
import "./interfaces/ITable.sol";


/**
* @title SplitterBase
* @dev Splitter has multiple outputs (allows to send money only to THESE addresses)
Expand Down Expand Up @@ -198,6 +199,7 @@ contract SplitterBase {
t = IWeiReceiver(_s.addresses[_childNum]).getReceiverType();
}
}

function getChildrenCount(Splitter _s) internal pure returns(uint) {
if(_s.isTableSplitter) {
return _s.outputs.length;
Expand Down
1 change: 1 addition & 0 deletions contracts/TableBase.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import "./interfaces/ITable.sol";
import "./ExpenseBase.sol";
import "./SplitterBase.sol";


/**
* @title TableBase
* @dev contract for WeiTable and ERC20Table
Expand Down

0 comments on commit f86605a

Please sign in to comment.