Ensure ringdb is written after wallet creation

This commit is contained in:
tobtoht 2022-06-23 12:33:21 +02:00
parent 32f66f6622
commit d52df3b94e
No known key found for this signature in database
GPG key ID: 1CADD27F41F45C3C
2 changed files with 7 additions and 6 deletions

View file

@ -279,7 +279,8 @@ void WindowManager::tryCreateWallet(Seed seed, const QString &path, const QStrin
wallet->setCacheAttribute("feather.seed", seed.mnemonic.join(" ")); wallet->setCacheAttribute("feather.seed", seed.mnemonic.join(" "));
wallet->setCacheAttribute("feather.seedoffset", seedOffset); wallet->setCacheAttribute("feather.seedoffset", seedOffset);
this->onWalletOpened(wallet); wallet->deleteLater();
this->tryOpenWallet(path, password);
} }
void WindowManager::tryCreateWalletFromDevice(const QString &path, const QString &password, const QString &deviceName, int restoreHeight) void WindowManager::tryCreateWalletFromDevice(const QString &path, const QString &password, const QString &deviceName, int restoreHeight)

View file

@ -1413,18 +1413,18 @@ Wallet::~Wallet()
m_scheduler.shutdownWaitForFinished(); m_scheduler.shutdownWaitForFinished();
//Monero::WalletManagerFactory::getWalletManager()->closeWallet(m_walletImpl); if (status() == Status_Critical || status() == Status_BadPassword)
if(status() == Status_Critical || status() == Status_BadPassword)
qDebug("Not storing wallet cache"); qDebug("Not storing wallet cache");
else if( m_walletImpl->store("")) else if (m_walletImpl->store(""))
qDebug("Wallet cache stored successfully"); qDebug("Wallet cache stored successfully");
else else
qDebug("Error storing wallet cache"); qDebug("Error storing wallet cache");
delete m_walletImpl; delete m_walletImpl;
m_walletImpl = nullptr; m_walletImpl = nullptr;
delete m_walletListener; delete m_walletListener;
m_walletListener = NULL; m_walletListener = nullptr;
qDebug("m_walletImpl deleted"); qDebug("~Wallet: Closed");
} }
void Wallet::startRefreshThread() void Wallet::startRefreshThread()