diff --git a/rpcclient/examples/bitcoincoreunixsocket/main.go b/rpcclient/examples/bitcoincoreunixsocket/main.go index 663d82079c..b1bcfc65b8 100644 --- a/rpcclient/examples/bitcoincoreunixsocket/main.go +++ b/rpcclient/examples/bitcoincoreunixsocket/main.go @@ -14,7 +14,8 @@ func main() { // Connect to local bitcoin core RPC server using HTTP POST mode over a Unix Socket. connCfg := &rpcclient.ConnConfig{ // The value passed doesn't matter as long as it's valid - // To avoid failures, functions relying on a host value still require one to be passed. If the client has a default host, it will be used as long as it's valid. + // To avoid failures, functions relying on a host value still require + // one to be passed. If the client has a default host, it will be used as long as it's valid. Host: "localhost:8332", UnixSocketPath: "/tmp/test.XXXX", User: "yourrpcuser",