From 8f8944a645b64b78ed7ab90cbd0f20e285e646ea Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Tue, 27 Feb 2024 03:43:41 -0500 Subject: [PATCH] fix: pass ctx --- api/s5/s5.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/s5/s5.go b/api/s5/s5.go index 2b4dc0c..db1f5ff 100644 --- a/api/s5/s5.go +++ b/api/s5/s5.go @@ -146,7 +146,7 @@ func (s S5API) Name() string { } 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 {