From da8493c17e58d298b7d4c20adb98800efe462041 Mon Sep 17 00:00:00 2001 From: Ales Verbic Date: Wed, 23 Oct 2024 06:11:55 -0400 Subject: [PATCH] fix(utorpc): pass mux handler (#280) --- internal/utxorpc/api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/utxorpc/api.go b/internal/utxorpc/api.go index 288eeea..a994b1b 100644 --- a/internal/utxorpc/api.go +++ b/internal/utxorpc/api.go @@ -112,7 +112,7 @@ func Start(cfg *config.Config) error { ), cfg.Tls.CertFilePath, cfg.Tls.KeyFilePath, - nil, + mux, ) return err } else {