Fix certificateChain property

This commit is contained in:
Herman Slatman 2021-03-12 15:51:16 +01:00
parent e1cab4966f
commit 3e0dac3ab4
No known key found for this signature in database
GPG key ID: F4D8A44EA0A75A4F

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
}