[][src]Trait grin_wallet_impls::SlateSender

pub trait SlateSender {
    pub fn send_tx(
        &mut self,
        slate: &Slate,
        finalize: bool
    ) -> Result<Slate, Error>; }

Sends transactions to a corresponding SlateReceiver

Required methods

pub fn send_tx(&mut self, slate: &Slate, finalize: bool) -> Result<Slate, Error>[src]

Send a transaction slate to another listening wallet and return result TODO: Probably need a slate wrapper type

Loading content...

Implementors

impl SlateSender for HttpSlateSender[src]

impl SlateSender for KeybaseChannel[src]

pub fn send_tx(
    &mut self,
    slate: &Slate,
    _finalize: bool
) -> Result<Slate, Error>
[src]

Send a slate to a keybase username then wait for a response for TTL seconds.

Loading content...