From e36b166edde49f5943e745137c1796beccdb08bb Mon Sep 17 00:00:00 2001 From: tobtoht Date: Sat, 24 Apr 2021 05:51:19 +0200 Subject: [PATCH] Wallet: import / export output function --- src/libwalletqt/Wallet.cpp | 8 ++++++++ src/libwalletqt/Wallet.h | 4 ++++ 2 files changed, 12 insertions(+) diff --git a/src/libwalletqt/Wallet.cpp b/src/libwalletqt/Wallet.cpp index f7cc1965..82b101b1 100644 --- a/src/libwalletqt/Wallet.cpp +++ b/src/libwalletqt/Wallet.cpp @@ -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); diff --git a/src/libwalletqt/Wallet.h b/src/libwalletqt/Wallet.h index e0157ee3..e1d19914 100644 --- a/src/libwalletqt/Wallet.h +++ b/src/libwalletqt/Wallet.h @@ -208,6 +208,10 @@ public: Q_INVOKABLE bool exportKeyImages(const QString& path); Q_INVOKABLE bool importKeyImages(const QString& path); + //! export/import outputs + Q_INVOKABLE bool exportOutputs(const QString& path, bool all = false); + Q_INVOKABLE bool importOutputs(const QString& path); + //! refreshes the wallet Q_INVOKABLE bool refresh(bool historyAndSubaddresses = true);