fix: pass ctx

This commit is contained in:
Derrick Hammer 2024-02-27 03:43:41 -05:00
parent 89c03f9cee
commit 8f8944a645
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ func (s S5API) Name() string {
} }
func (s S5API) Start(ctx context.Context) error { func (s S5API) Start(ctx context.Context) error {
return s.protocol.Node().Start() return s.protocol.Node().Start(ctx)
} }
func (s S5API) Stop(ctx context.Context) error { func (s S5API) Stop(ctx context.Context) error {