| 97 | } |
| 98 | |
| 99 | void TestUnloadWallet(std::shared_ptr<CWallet>&& wallet) |
| 100 | { |
| 101 | // Calls SyncWithValidationInterfaceQueue |
| 102 | wallet->chain().waitForNotificationsIfTipChanged({}); |
| 103 | wallet->m_chain_notifications_handler.reset(); |
| 104 | WaitForDeleteWallet(std::move(wallet)); |
| 105 | } |
| 106 | |
| 107 | std::string getnewaddress(CWallet& w) |
| 108 | { |
no test coverage detected