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

Posts slates to be read later by a corresponding getter

Required Methods§

source

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

Send a transaction asynchronously

Implementors§