Skip to content

Commit 72d97ea

Browse files
committed
Use 'these' with plural documents
The choice was 'with these documents' or 'with this document', elect to keep 'documents' plural.
1 parent 8475998 commit 72d97ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

16_1_Accessing_Bitcoind_with_C.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ First, initialize the library:
106106
```
107107
bitcoinrpc_global_init();
108108
```
109-
Then connect to your `bitcoind` with `bitcoinrpc_cl_init_params`. The four arguments for `bitcoinrpc_cl_init_params` are username, password, IP address, and port. You should already know all of this information from your work with [Curl](04_4__Interlude_Using_Curl.md). As you'll recall, the IP address 127.0.0.1 and port 18332 should be correct for the standard testnet setup described in this documents, while you can extract the user and password from `~/.bitcoin/bitcoin.conf`.
109+
Then connect to your `bitcoind` with `bitcoinrpc_cl_init_params`. The four arguments for `bitcoinrpc_cl_init_params` are username, password, IP address, and port. You should already know all of this information from your work with [Curl](04_4__Interlude_Using_Curl.md). As you'll recall, the IP address 127.0.0.1 and port 18332 should be correct for the standard testnet setup described in these documents, while you can extract the user and password from `~/.bitcoin/bitcoin.conf`.
110110
```
111111
$ cat bitcoin.conf
112112
server=1

0 commit comments

Comments
 (0)