diff --git a/x/leverage/keeper/oracle.go b/x/leverage/keeper/oracle.go index f35f494320..8122ee93eb 100644 --- a/x/leverage/keeper/oracle.go +++ b/x/leverage/keeper/oracle.go @@ -27,9 +27,6 @@ func (k Keeper) TokenPrice(ctx sdk.Context, baseDenom string, mode types.PriceMo if err != nil { return sdk.ZeroDec(), 0, err } - if t.Blacklist { - return sdk.ZeroDec(), t.Exponent, types.ErrBlacklisted - } // if a token is exempt from historic pricing, all price modes ignore historic prices // and use spot prices instead, sometimes also allowing expired prices.