Trait grin_wallet_impls::SlateGetter

source ·
pub trait SlateGetter {
    // Required method
    fn get_tx(&self) -> Result<(Slate, bool), Error>;
}
Expand description

Checks for a transaction from a corresponding SlatePutter, returns the transaction if it exists

Required Methods§

source

fn get_tx(&self) -> Result<(Slate, bool), Error>

Receive a transaction async. (Actually just read it from wherever and return the slate). Returns (Slate, whether it was in binary form)

Implementors§