Merge pull request #4509 from CandleHater/patch-2

rpc: add missing space to error message
This commit is contained in:
Conner Fromknecht 2020-08-05 11:38:09 -07:00 committed by GitHub
commit 24eba7013c
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")
)