mirror of
https://github.com/0glabs/0g-chain.git
synced 2025-01-12 16:25:17 +00:00
fix panic(err) if posted_prices=[] in genesis file (#352)
This commit is contained in:
parent
55f0f8d980
commit
3c8209cbcc
@ -25,9 +25,12 @@ func InitGenesis(ctx sdk.Context, keeper Keeper, gs GenesisState) {
|
|||||||
// Set the current price (if any) based on what's now in the store
|
// Set the current price (if any) based on what's now in the store
|
||||||
for _, market := range params.Markets {
|
for _, market := range params.Markets {
|
||||||
if market.Active {
|
if market.Active {
|
||||||
err := keeper.SetCurrentPrices(ctx, market.MarketID)
|
rps := keeper.GetRawPrices(ctx, market.MarketID)
|
||||||
if err != nil {
|
if len(rps) > 0 {
|
||||||
panic(err)
|
err := keeper.SetCurrentPrices(ctx, market.MarketID)
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user