Fix typo in config.go

This commit is contained in:
fridokus 2019-09-24 14:49:59 +02:00
parent 9b1ecbd3fa
commit b3669d71e3

View File

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