fix: pass ctx on protocol Stop

This commit is contained in:
Derrick Hammer 2024-02-27 03:36:09 -05:00
parent 43eb8c3e9a
commit 86dc8c8b9a
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ func (s *S5Protocol) Init(ctx context.Context) error {
return nil
}
func (s *S5Protocol) Start(ctx context.Context) error {
err := s.node.Start()
err := s.node.Start(ctx)
if err != nil {
return err
}