Skip to content

Commit 5b5c8d4

Browse files
committed
WIP: Use new rust-bitcoind-json-rpc crate
Use the new `rust-bitcoin-json-rpc` crate for RPC calls. WIP because currently only works for features "0_17_1" and "22_1". ref: https://github.com/tcharding/rust-bitcoind-json-rpc
1 parent 9279882 commit 5b5c8d4

File tree

3 files changed

+140
-64
lines changed

3 files changed

+140
-64
lines changed

Cargo.toml

+9-1
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,12 @@ edition = "2018"
1111
categories = ["cryptography::cryptocurrencies", "development-tools::testing"]
1212

1313
[dependencies]
14-
bitcoincore-rpc = { version = "0.19", features = ["rand"] }
14+
bitcoind-json-rpc-client = { version = "0.1", features = ["client-sync"] }
1515
log = "0.4"
1616
which = "4.2.5"
1717
anyhow = "1.0.66"
1818
tempfile = "3"
19+
serde_json = { version = "1.0.117" }
1920

2021
[dev-dependencies]
2122
env_logger = "0.9.0"
@@ -53,3 +54,10 @@ anyhow = "1.0.66"
5354
[package.metadata.docs.rs]
5455
features = ["download", "doc"]
5556
rustdoc-args = ["--cfg", "docsrs"]
57+
58+
[patch.crates-io.bitcoind-json-rpc-client]
59+
path = "/home/tobin/build/github.com/tcharding/rust-bitcoind-json-rpc/06-02-integration-tests/client"
60+
61+
[patch.crates-io.bitcoind-json-rpc-types]
62+
path = "/home/tobin/build/github.com/tcharding/rust-bitcoind-json-rpc/06-02-integration-tests/json"
63+

src/client.rs

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
#[cfg(feature = "26_0")] // This is all features.
2+
compile_error!{"bitcoind-json-rpc does not support bitcoind v26_0"}
3+
4+
#[cfg(all(feature = "25_1", not(feature = "26_0")))]
5+
compile_error!{"bitcoind-json-rpc does not support bitcoind v25.1"}
6+
7+
#[cfg(all(feature = "25_0", not(feature = "25_1")))]
8+
compile_error!{"bitcoind-json-rpc does not support bitcoind v25.0"}
9+
10+
#[cfg(all(feature = "24_0_1", not(feature = "25_0")))]
11+
compile_error!{"bitcoind-json-rpc does not support bitcoind v24.0.1"}
12+
13+
#[cfg(all(feature = "23_1", not(feature = "24_0_1")))]
14+
compile_error!{"bitcoind-json-rpc does not support bitcoind v23.1"}
15+
16+
#[cfg(all(feature = "22_1", not(feature = "23_1")))]
17+
#[allow(unused_imports)] // Not all users need the json types.
18+
pub use bitcoind_json_rpc_client::{client_sync::v22::Client, json::v22 as json};
19+
20+
#[cfg(all(feature = "0_21_2", not(feature = "22_1")))]
21+
compile_error!{"bitcoind-json-rpc does not support bitcoind v22.2"}
22+
23+
#[cfg(all(feature = "0_20_2", not(feature = "0_21_2")))]
24+
compile_error!{"bitcoind-json-rpc does not support bitcoind v0.20.2"}
25+
26+
#[cfg(all(feature = "0_19_1", not(feature = "0_20_2")))]
27+
compile_error!{"bitcoind-json-rpc does not support bitcoind v0.19.1"}
28+
29+
#[cfg(all(feature = "0_18_1", not(feature = "0_19_1")))]
30+
#[allow(unused_imports)] // Not all users need the json types.
31+
pub use bitcoind_json_rpc_client::{client_sync::v18::Client, json::v18 as json};
32+
33+
#[cfg(all(feature = "0_17_1", not(feature = "0_18_1")))]
34+
#[allow(unused_imports)] // Not all users need the json types.
35+
pub use bitcoind_json_rpc_client::{client_sync::v17::Client, json::v17 as json};

0 commit comments

Comments
 (0)