In Router.sol, the function addLiquidityForMember() doesnt check inputBase and inputToken. Since we know they cant both be zero (it wouldnt change anything and user pays the gas for nothing).
Recommend considering adding a require inputBase>0 || inputToken>0.
