1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: CC0-1.0

//! Support for connecting to Bitcoin Core via JSON-RPC.

/// Re-export the `rust-bitcoin` crate.
pub extern crate bitcoin;

/// Re-export the `rust-bitcoin-json-rpc-types` crate.
pub extern crate json;

#[cfg(feature = "client-sync")]
#[macro_use]
pub mod client_sync;