pkg/audit: Fix code style named result params (#2136)

This commit is contained in:
Ivan Fraixedes 2019-06-06 14:55:06 +02:00 committed by Kaloyan Raev
parent 2d19475d61
commit 503fe0e5ec

View File

@ -46,7 +46,7 @@ type Service struct {
// NewService instantiates a Service with access to a Cursor and Verifier
func NewService(log *zap.Logger, config Config, metainfo *metainfo.Service,
orders *orders.Service, transport transport.Client, overlay *overlay.Cache,
containment Containment, identity *identity.FullIdentity) (service *Service, err error) {
containment Containment, identity *identity.FullIdentity) (*Service, error) {
return &Service{
log: log,