optimize Settings.nodeType

This commit is contained in:
zgfzgf 2020-09-14 11:00:08 +08:00
parent aa83a4c1f5
commit 45a5eaf913

View File

@ -475,12 +475,18 @@ func Repo(r repo.Repo) Option {
}
func FullAPI(out *api.FullNode) Option {
return func(s *Settings) error {
return Options(
func(s *Settings) error {
s.nodeType = repo.FullNode
return nil
},
func(s *Settings) error {
resAPI := &impl.FullNodeAPI{}
s.invokes[ExtractApiKey] = fx.Extract(resAPI)
*out = resAPI
return nil
}
},
)
}
type StopFunc func(context.Context) error
@ -490,7 +496,6 @@ func New(ctx context.Context, opts ...Option) (StopFunc, error) {
settings := Settings{
modules: map[interface{}]fx.Option{},
invokes: make([]fx.Option, _nInvokes),
nodeType: repo.FullNode,
}
// apply module options in the right order