Wallet: import / export output function

This commit is contained in:
tobtoht
2021-04-24 05:51:19 +02:00
committed by selsta
parent 113efbfdf0
commit e36b166edd
2 changed files with 12 additions and 0 deletions

View File

@@ -499,6 +499,14 @@ bool Wallet::importKeyImages(const QString& path)
return m_walletImpl->importKeyImages(path.toStdString());
}
bool Wallet::exportOutputs(const QString& path, bool all) {
return m_walletImpl->exportOutputs(path.toStdString(), all);
}
bool Wallet::importOutputs(const QString& path) {
return m_walletImpl->importOutputs(path.toStdString());
}
bool Wallet::refresh(bool historyAndSubaddresses /* = true */)
{
refreshingSet(true);