ethos-bitcoind 30.2.11

Generated client for ethos-bitcoind.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std::sync::Arc;

use crate::transport::core::TransportTrait;
use crate::transport::DefaultTransport;
#[derive(Debug)]
pub struct BitcoinTestClient {
    _transport: Arc<DefaultTransport>,
}
impl BitcoinTestClient {
    pub fn new(transport: Arc<DefaultTransport>) -> Self { Self { _transport: transport } }
    pub fn endpoint(&self) -> &str { self._transport.url() }
}