Trait grin_wallet_impls::SlateSender

source ·
pub trait SlateSender {
    // Required method
    fn send_tx(&mut self, slate: &Slate, finalize: bool) -> Result<Slate, Error>;
}
Expand description

Sends transactions to a corresponding SlateReceiver

Required Methods§

source

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

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

Implementors§