What is happend.
perp_markets = list(range(0, 35))
spot_markets = list(range(1, 24))
spot_market_oracle_infos, perp_market_oracle_infos, spot_market_indexes = (
get_markets_and_oracles(perp_markets=perp_markets)
)
oracle_infos = spot_market_oracle_infos + perp_market_oracle_infos
spot_market_indexes = spot_markets
drift_client = DriftClient(
connection=connection,
wallet=wallet,
env="mainnet", # or "devnet"
perp_market_indexes=perp_markets,
spot_market_indexes=spot_market_indexes,
oracle_infos=oracle_infos,
tx_params=TxParams(None, PFEE),
account_subscription=AccountSubscriptionConfig("cached"),
active_sub_account_id=USER_ID,
)
How to fix that.