mirror of
https://github.com/feather-wallet/feather.git
synced 2024-12-22 19:49:28 +00:00
Ensure ringdb is written after wallet creation [2]
This commit is contained in:
parent
b1c447519e
commit
e549438130
5 changed files with 10 additions and 2 deletions
|
@ -33,7 +33,7 @@ if(DEBUG)
|
|||
set(CMAKE_VERBOSE_MAKEFILE ON)
|
||||
endif()
|
||||
|
||||
set(MONERO_HEAD "4982ac420c101be2afb387138c4ee57b1a5c2f9b")
|
||||
set(MONERO_HEAD "9c03081caf20fa95d58ba62ee7cd37cd50d39286")
|
||||
set(BUILD_GUI_DEPS ON)
|
||||
option(ARCH "Target architecture" "native")
|
||||
set(BUILD_64 ON)
|
||||
|
|
2
monero
2
monero
|
@ -1 +1 @@
|
|||
Subproject commit 4982ac420c101be2afb387138c4ee57b1a5c2f9b
|
||||
Subproject commit 9c03081caf20fa95d58ba62ee7cd37cd50d39286
|
|
@ -461,6 +461,8 @@ void MainWindow::onWalletOpened() {
|
|||
qDebug() << Q_FUNC_INFO;
|
||||
m_splashDialog->hide();
|
||||
|
||||
m_ctx->wallet->setRingDatabase(Utils::ringDatabasePath());
|
||||
|
||||
m_ctx->updateBalance();
|
||||
if (m_ctx->wallet->isHwBacked()) {
|
||||
m_statusBtnHwDevice->show();
|
||||
|
|
|
@ -1359,6 +1359,10 @@ bool Wallet::isDeviceConnected() const {
|
|||
return m_walletImpl->isDeviceConnected();
|
||||
}
|
||||
|
||||
bool Wallet::setRingDatabase(const QString &path) {
|
||||
return m_walletImpl->setRingDatabase(path.toStdString());
|
||||
}
|
||||
|
||||
void Wallet::onPassphraseEntered(const QString &passphrase, bool enter_on_device, bool entry_abort)
|
||||
{
|
||||
if (m_walletListener != nullptr)
|
||||
|
|
|
@ -462,6 +462,8 @@ public:
|
|||
|
||||
bool isDeviceConnected() const;
|
||||
|
||||
bool setRingDatabase(const QString &path);
|
||||
|
||||
// TODO: setListenter() when it implemented in API
|
||||
signals:
|
||||
// emitted on every event happened with wallet
|
||||
|
|
Loading…
Reference in a new issue