feat(markets): update to markets v0.5.8

This commit is contained in:
hannahhoward
2020-08-28 18:03:27 -07:00
parent e86f90fe8d
commit 0a36db06ed
4 changed files with 20 additions and 12 deletions
+2 -2
View File
@@ -93,8 +93,8 @@ func NewClientGraphsyncDataTransfer(lc fx.Lifecycle, h host.Host, gs dtypes.Grap
OnStart: func(ctx context.Context) error {
return dt.Start(ctx)
},
OnStop: func(context.Context) error {
return dt.Stop()
OnStop: func(ctx context.Context) error {
return dt.Stop(ctx)
},
})
return dt, nil
+2 -2
View File
@@ -226,8 +226,8 @@ func NewProviderDAGServiceDataTransfer(lc fx.Lifecycle, h host.Host, gs dtypes.S
OnStart: func(ctx context.Context) error {
return dt.Start(ctx)
},
OnStop: func(context.Context) error {
return dt.Stop()
OnStop: func(ctx context.Context) error {
return dt.Stop(ctx)
},
})
return dt, nil