Merge pull request #3282

6dd7445 Transfer: export all key images by default (benevanoff)
This commit is contained in:
luigi1111
2021-09-05 12:51:53 -04:00
3 changed files with 4 additions and 4 deletions

View File

@@ -489,9 +489,9 @@ quint64 Wallet::daemonBlockChainTargetHeight() const
return m_daemonBlockChainTargetHeight;
}
bool Wallet::exportKeyImages(const QString& path)
bool Wallet::exportKeyImages(const QString& path, bool all)
{
return m_walletImpl->exportKeyImages(path.toStdString());
return m_walletImpl->exportKeyImages(path.toStdString(), all);
}
bool Wallet::importKeyImages(const QString& path)