| 63 | } |
| 64 | |
| 65 | static void TestUnloadWallet(std::shared_ptr<CWallet>&& wallet) |
| 66 | { |
| 67 | SyncWithValidationInterfaceQueue(); |
| 68 | wallet->m_chain_notifications_handler.reset(); |
| 69 | UnloadWallet(std::move(wallet)); |
| 70 | } |
| 71 | |
| 72 | static CMutableTransaction TestSimpleSpend(const CTransaction& from, uint32_t index, const CKey& key, const CScript& pubkey) |
| 73 | { |
no test coverage detected