bitcoin_rpc_client 0.2.0

Rust client library for talking to Bitcoin Core nodes using JsonRPC.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use bitcoin_rpc_api::BitcoinRpcApi;

pub struct BitcoinStubClient {}

impl BitcoinStubClient {
    pub fn new() -> Self {
        Self {}
    }
}

impl BitcoinRpcApi for BitcoinStubClient {}