pub trait GetWalletTxs {
    // Required method
    fn get_wallet_txs(&mut self) -> Vec<WalletTx>;
}

Required Methods§

source

fn get_wallet_txs(&mut self) -> Vec<WalletTx>

| Get list of all wallet transactions. |

Implementors§