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"
This commit is contained in:
Candle 2020-08-05 09:58:05 +00:00 committed by GitHub
parent ec94532968
commit adfd0dc015
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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")
)