pub trait GetWallet {
    // Provided method
    fn wallet(&mut self) -> Rc<RefCell<dyn WalletInterface>> { ... }
}

Provided Methods§

source

fn wallet(&mut self) -> Rc<RefCell<dyn WalletInterface>>

| Return pointer to internal wallet class, | useful for testing. |

Implementors§