logs and defaults
This commit is contained in:
parent
8d3d3c88d4
commit
9979de24db
@ -277,6 +277,13 @@ func DefaultStorageMiner() *StorageMiner {
|
|||||||
MaxProviderCollateralMultiplier: 2,
|
MaxProviderCollateralMultiplier: 2,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Subsystems: MinerSubsystemConfig{
|
||||||
|
EnableMining: true,
|
||||||
|
EnableSealing: true,
|
||||||
|
EnableSectorStorage: true,
|
||||||
|
EnableStorageMarket: true,
|
||||||
|
},
|
||||||
|
|
||||||
Fees: MinerFeeConfig{
|
Fees: MinerFeeConfig{
|
||||||
MaxPreCommitGasFee: types.MustParseFIL("0.025"),
|
MaxPreCommitGasFee: types.MustParseFIL("0.025"),
|
||||||
MaxCommitGasFee: types.MustParseFIL("0.05"),
|
MaxCommitGasFee: types.MustParseFIL("0.05"),
|
||||||
|
@ -28,7 +28,7 @@ func connectMinerService(apiInfo string) func(mctx helpers.MetricsCtx, lc fx.Lif
|
|||||||
return nil, xerrors.Errorf("could not get DialArgs: %w", err)
|
return nil, xerrors.Errorf("could not get DialArgs: %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
log.Infof("Checking api version of %s", addr)
|
log.Infof("Checking (svc) api version of %s", addr)
|
||||||
|
|
||||||
mapi, closer, err := client.NewStorageMinerRPCV0(ctx, addr, info.AuthHeader())
|
mapi, closer, err := client.NewStorageMinerRPCV0(ctx, addr, info.AuthHeader())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -60,12 +60,14 @@ func connectMinerService(apiInfo string) func(mctx helpers.MetricsCtx, lc fx.Lif
|
|||||||
|
|
||||||
func ConnectSealingService(apiInfo string) func(mctx helpers.MetricsCtx, lc fx.Lifecycle) (MinerSealingService, error) {
|
func ConnectSealingService(apiInfo string) func(mctx helpers.MetricsCtx, lc fx.Lifecycle) (MinerSealingService, error) {
|
||||||
return func(mctx helpers.MetricsCtx, lc fx.Lifecycle) (MinerSealingService, error) {
|
return func(mctx helpers.MetricsCtx, lc fx.Lifecycle) (MinerSealingService, error) {
|
||||||
|
log.Info("Connecting sealing service to miner")
|
||||||
return connectMinerService(apiInfo)(mctx, lc)
|
return connectMinerService(apiInfo)(mctx, lc)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func ConnectStorageService(apiInfo string) func(mctx helpers.MetricsCtx, lc fx.Lifecycle) (MinerStorageService, error) {
|
func ConnectStorageService(apiInfo string) func(mctx helpers.MetricsCtx, lc fx.Lifecycle) (MinerStorageService, error) {
|
||||||
return func(mctx helpers.MetricsCtx, lc fx.Lifecycle) (MinerStorageService, error) {
|
return func(mctx helpers.MetricsCtx, lc fx.Lifecycle) (MinerStorageService, error) {
|
||||||
|
log.Info("Connecting storage service to miner")
|
||||||
return connectMinerService(apiInfo)(mctx, lc)
|
return connectMinerService(apiInfo)(mctx, lc)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user