Merge pull request #3538 from fridokus/master

trivial: fix typo in config.go
This commit is contained in:
Johan T. Halseth 2019-09-25 08:17:21 +02:00 committed by GitHub
commit bc8308f42f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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