From a7d9a3f4e8897bf6f498b53828ebb0991abcfd6e Mon Sep 17 00:00:00 2001 From: Shannon Appelcline Date: Tue, 14 Jun 2022 13:23:21 -1000 Subject: [PATCH] Update 16_1_Accessing_Bitcoind_with_C.md --- 16_1_Accessing_Bitcoind_with_C.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/16_1_Accessing_Bitcoind_with_C.md b/16_1_Accessing_Bitcoind_with_C.md index 347e7bd..05791ce 100644 --- a/16_1_Accessing_Bitcoind_with_C.md +++ b/16_1_Accessing_Bitcoind_with_C.md @@ -6,6 +6,8 @@ You've already seen one alternative way to access the Bitcoind's RPC ports: `cur ## Set Up libbitcoinrpc +> :warning: **WARNING** It appears that `libbitcoinrpc` has been entirely abandoned. We have logged updating this to a new C library as an [issue](https://github.com/BlockchainCommons/Community/issues/140). In the meantime, the `libbitcoinrpc` library does not currently compile without intervention. As a result 16.1 and 16.2 is mainly viewable as pseudo-code that shows the process of integrating Bitcoin-Core with C. + To use `libbitcoinrpc`, you need to install a basic C setup and the dependent packages `libcurl`, `libjansson`, and `libuuid`. The following will do so on your Bitcoin Standup server (or any other Ubuntu server). ``` $ sudo apt-get install make gcc libcurl4-openssl-dev libjansson-dev uuid-dev