From ef73f4f1417383ccf80b163f7f09f64032b2b8a6 Mon Sep 17 00:00:00 2001 From: Cool Developer Date: Tue, 1 Oct 2024 16:33:15 -0400 Subject: [PATCH] revert stf_router change --- server/v2/stf/stf_router.go | 1 + 1 file changed, 1 insertion(+) diff --git a/server/v2/stf/stf_router.go b/server/v2/stf/stf_router.go index 700abf9624fb..0417788e4b78 100644 --- a/server/v2/stf/stf_router.go +++ b/server/v2/stf/stf_router.go @@ -165,5 +165,6 @@ func (r coreRouterImpl) Invoke(ctx context.Context, req transaction.Msg) (res tr if !exists { return nil, fmt.Errorf("%w: %s", ErrNoHandler, typeName) } + return handler(ctx, req) }