[][src]Struct bitcoin_harness::Bitcoind

pub struct Bitcoind<'c> {
    pub container: Container<'c, Cli, BitcoinCore>,
    pub node_url: Url,
    pub wallet_name: String,
}

Fields

container: Container<'c, Cli, BitcoinCore>node_url: Urlwallet_name: String

Implementations

impl<'c> Bitcoind<'c>[src]

pub fn new(client: &'c Cli, tag: &str) -> Result<Self>[src]

Starts a new regtest bitcoind container

pub async fn init<'_>(&'_ self, spendable_quantity: u32) -> Result<()>[src]

Create a test wallet, generate enough block to fund it and activate segwit. Generate enough blocks to make the passed spendable_quantity spendable. Spawn a tokio thread to mine a new block every second.

pub async fn mint<'_>(&'_ self, address: Address, amount: Amount) -> Result<()>[src]

Send Bitcoin to the specified address, limited to the spendable bitcoin quantity.

pub fn container_id(&self) -> &str[src]

Trait Implementations

impl<'c> Debug for Bitcoind<'c>[src]

Auto Trait Implementations

impl<'c> RefUnwindSafe for Bitcoind<'c>

impl<'c> Send for Bitcoind<'c>

impl<'c> Sync for Bitcoind<'c>

impl<'c> Unpin for Bitcoind<'c>

impl<'c> UnwindSafe for Bitcoind<'c>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,