From b3669d71e3bfa97bc10e3b981e82ea1993c2fe74 Mon Sep 17 00:00:00 2001 From: fridokus Date: Tue, 24 Sep 2019 14:49:59 +0200 Subject: [PATCH] Fix typo in config.go --- config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.go b/config.go index f0e01f64..7b7b4056 100644 --- a/config.go +++ b/config.go @@ -1508,7 +1508,7 @@ func extractBitcoindRPCParams(bitcoindConfigPath string) (string, string, string // ZMQ rawblock and rawtx notifications are different. func checkZMQOptions(zmqBlockHost, zmqTxHost string) error { if zmqBlockHost == zmqTxHost { - return errors.New("zmqpubrawblock and zmqpubrawtx must be set" + + return errors.New("zmqpubrawblock and zmqpubrawtx must be set " + "to different addresses") }