From bfc51b18faa8e0c8e796c43bcd7fba4c73058391 Mon Sep 17 00:00:00 2001 From: Robert <104002271+robertmin1@users.noreply.github.com> Date: Sun, 21 Apr 2024 14:08:07 +0300 Subject: [PATCH] Update main.go --- rpcclient/examples/bitcoincoreunixsocket/main.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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",