In `DexTokensProviders.estimateTokenInFiat` why have we an exception if prices are = 0 Normally, if tokens from LP have no price, LP Price = 0 ``` if (fiatValueToken1 == 0 && fiatValueToken2 == 0) { throw Exception(); } ```
In
DexTokensProviders.estimateTokenInFiatwhy have we an exception if prices are = 0Normally, if tokens from LP have no price, LP Price = 0