[#588] Fix go fmt linter errors

Signed-off-by: Alex Vanin <alexey@nspcc.ru>
remotes/KirillovDenis/release/v0.21.1
Alex Vanin 2021-06-03 18:55:43 +03:00 committed by Alex Vanin
parent ff6e95d017
commit e1ac2fe2e5
2 changed files with 10 additions and 10 deletions

View File

@ -443,13 +443,13 @@ func New(ctx context.Context, log *zap.Logger, cfg *viper.Viper) (*Server, error
// create settlement processor dependencies
settlementDeps := &settlementDeps{
globalConfig: globalConfig,
log: server.log,
cnrSrc: cntWrapper.AsContainerSource(cnrClient),
auditClient: server.auditClient,
nmSrc: nmClient,
clientCache: clientCache,
balanceClient: balClient,
globalConfig: globalConfig,
log: server.log,
cnrSrc: cntWrapper.AsContainerSource(cnrClient),
auditClient: server.auditClient,
nmSrc: nmClient,
clientCache: clientCache,
balanceClient: balClient,
}
auditCalcDeps := &auditSettlementDeps{

View File

@ -68,7 +68,7 @@ type (
nodeValidator NodeValidator
feeProvider *config.FeeConfig
feeProvider *config.FeeConfig
}
// Params of the processor constructor.
@ -90,7 +90,7 @@ type (
NodeValidator NodeValidator
FeeProvider *config.FeeConfig
FeeProvider *config.FeeConfig
}
)
@ -152,7 +152,7 @@ func New(p *Params) (*Processor, error) {
nodeValidator: p.NodeValidator,
feeProvider: p.FeeProvider,
feeProvider: p.FeeProvider,
}, nil
}