From adfd0dc01588da0c74b6792c8c889db5feb0a9d8 Mon Sep 17 00:00:00 2001 From: Candle <50766841+CandleHater@users.noreply.github.com> Date: Wed, 5 Aug 2020 09:58:05 +0000 Subject: [PATCH] rpc: add missing space to error message This corrects the output of the chain notifier RPC error. It has been displayed as: "chain notifier RPC *isstill* in the process of starting" --- lnrpc/chainrpc/chainnotifier_server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lnrpc/chainrpc/chainnotifier_server.go b/lnrpc/chainrpc/chainnotifier_server.go index afa53c01..08c5330a 100644 --- a/lnrpc/chainrpc/chainnotifier_server.go +++ b/lnrpc/chainrpc/chainnotifier_server.go @@ -67,7 +67,7 @@ var ( // ErrChainNotifierServerNotActive indicates that the chain notifier hasn't // finished the startup process. - ErrChainNotifierServerNotActive = errors.New("chain notifier RPC is" + + ErrChainNotifierServerNotActive = errors.New("chain notifier RPC is " + "still in the process of starting") )