Fix certificateChain property

This commit is contained in:
Herman Slatman 2021-03-12 15:51:16 +01:00 committed by max furman
parent 491c2b8d93
commit dd4f548650

View file

@ -29,8 +29,8 @@ func NewService(ctx context.Context, opts apiv1.Options) (*Service, error) {
// TODO: should this become similar to the New CertificateAuthorityService as in x509CAService?
return &Service{
chain: opts.CertificateChain,
signer: opts.Signer,
decrypter: opts.Decrypter,
certificateChain: opts.CertificateChain,
signer: opts.Signer,
decrypter: opts.Decrypter,
}, nil
}