From 9b0886c34d0e4084a2d6e9ac3f320d43cbc1ac21 Mon Sep 17 00:00:00 2001 From: Javier Vargas Date: Wed, 24 Jun 2020 11:09:33 +0200 Subject: [PATCH] Update 15_2_Programming_Bitcoind_with_C.md --- 15_2_Programming_Bitcoind_with_C.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/15_2_Programming_Bitcoind_with_C.md b/15_2_Programming_Bitcoind_with_C.md index 1dcd416..370e35d 100644 --- a/15_2_Programming_Bitcoind_with_C.md +++ b/15_2_Programming_Bitcoind_with_C.md @@ -64,7 +64,7 @@ float tx_total = tx_amount + tx_fee; ### X. Prepare Your RPC -Obviously, you're going to need to get all of your variables ready again, as discussed in [§12.2: Accessing Bitcoind with C](12_2_Accessing_Bitcoind_with_C.md). You also need to initialize your library, connect your RPC client, and prepare your response object: +Obviously, you're going to need to get all of your variables ready again, as discussed in [§12.2: Accessing Bitcoind with C](15_1_Accessing_Bitcoind_with_C.md). You also need to initialize your library, connect your RPC client, and prepare your response object: ``` bitcoinrpc_global_init(); rpc_client = bitcoinrpc_cl_init_params ("bitcoinrpc", "73bd45ba60ab8f9ff9846b6404769487", "127.0.0.1", 18332);