Skip to content

Commit 7a9d9f4

Browse files
authored
Update 16_1_Accessing_Bitcoind_with_C.md
1 parent e862198 commit 7a9d9f4

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

16_1_Accessing_Bitcoind_with_C.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ You've already seen one alternative way to access the Bitcoind's RPC ports: `cur
66

77
## Set Up libbitcoinrpc
88

9-
> :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.
10-
119
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).
1210
```
1311
$ sudo apt-get install make gcc libcurl4-openssl-dev libjansson-dev uuid-dev
@@ -26,8 +24,6 @@ $ sudo apt-get install git
2624
$ git clone https://github.com/BlockchainCommons/libbitcoinrpc.git
2725
```
2826

29-
> :warning: **WARNING** A change in the "signrawtransaction" RPC caused signing with `libbitcoinrpc` to segfault for Bitcoin 0.17 or higher. A [PR has been submitted](https://github.com/gitmarek/libbitcoinrpc/pull/1) to resolve the problem, but if it hasn't yet been merged, you can just make the one simple change in the source code to `src/bitcoinrpc_method.c` before compiling.
30-
3127
### Compiling libbitcoinrpc
3228

3329
Before you can compile and install the package, you'll probably need to adjust your `$PATH`, so that you can access `/sbin/ldconfig`:

0 commit comments

Comments
 (0)