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

Sends transactions to a corresponding SlateReceiver

Required Methods§

source

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

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

Implementors§