costOfCoupon = (BaseCost + BaseCost*(1.000001618^AvailableSupply)+BaseCost*AvailableSupply/1000)
In this formula, if AvailableSupply = 0, when the constructor is called, CostOfCoupon = 2*BaseCost. Is it the expected behavior? The naming seems to be a bit misleading as I was expecting costOfCoupon = BaseCost at the start.
costOfCoupon = (BaseCost + BaseCost*(1.000001618^AvailableSupply)+BaseCost*AvailableSupply/1000)In this formula, if AvailableSupply = 0, when the constructor is called, CostOfCoupon = 2*BaseCost. Is it the expected behavior? The naming seems to be a bit misleading as I was expecting costOfCoupon = BaseCost at the start.