8d3cc632ac
This can significantly speedup state migrations.
21 lines
442 B
Go
21 lines
442 B
Go
package modules
|
|
|
|
import (
|
|
"go.uber.org/fx"
|
|
|
|
"github.com/filecoin-project/lotus/chain/stmgr"
|
|
"github.com/filecoin-project/lotus/chain/store"
|
|
)
|
|
|
|
func StateManager(lc fx.Lifecycle, cs *store.ChainStore, us stmgr.UpgradeSchedule) (*stmgr.StateManager, error) {
|
|
sm, err := stmgr.NewStateManagerWithUpgradeSchedule(cs, us)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
lc.Append(fx.Hook{
|
|
OnStart: sm.Start,
|
|
OnStop: sm.Stop,
|
|
})
|
|
return sm, nil
|
|
}
|