From dac38017f611f93f62185445cbbcde4baa93e319 Mon Sep 17 00:00:00 2001 From: Shannon Appelcline Date: Tue, 4 Aug 2020 14:47:47 -1000 Subject: [PATCH] added missing what's next --- 15_1_Accessing_Bitcoind_with_C.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/15_1_Accessing_Bitcoind_with_C.md b/15_1_Accessing_Bitcoind_with_C.md index eb8b971..bb4f2ae 100644 --- a/15_1_Accessing_Bitcoind_with_C.md +++ b/15_1_Accessing_Bitcoind_with_C.md @@ -273,3 +273,7 @@ This section doesn't include a full example of this more complex methodology, bu By linking to the `bitcoinrpc` and `jansson` libraries, you can easily access `bitcoind` via RPC calls from a C library. To do so, you create an RPC connection, then make individual RPC calls, some of them with parameters. `jansson` then allows you to decode the JSON responses. * :fire: ***What is the power of C?*** C allows you to take the next step beyond shell-scripting, permitting the creation of more comprehensive and robust programs. A few examples appear in the next two sections. + +## What's Next? + +Learn more about "Talking to Bitcoind with C" in [15.2: Programming Bitcoind with C](15_2_Programming_Bitcoind_with_C.md).