[#33] services/session: Fix signature service constructor

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
remotes/KirillovDenis/release/v0.21.1
Leonard Lyubich 2020-09-21 12:33:55 +03:00 committed by Alex Vanin
parent c312e11f6e
commit 4024b3c30e
1 changed files with 1 additions and 0 deletions

View File

@ -17,6 +17,7 @@ type signService struct {
func NewSignService(key *ecdsa.PrivateKey, svc session.Service) session.Service {
return &signService{
sigSvc: util.NewUnarySignService(key),
svc: svc,
}
}