diff options
author | tobtoht <thotbot@protonmail.com> | 2021-04-22 04:25:20 +0200 |
---|---|---|
committer | selsta <selsta@sent.at> | 2021-04-22 04:33:11 +0200 |
commit | dedcd6304c49ee177c846ff19af6f68bb24f60bc (patch) | |
tree | 2cab5b872d07a0b2020cb482472f607ba584be9c /src/wallet/api/wallet.h | |
parent | expose set_offline to wallet api (diff) | |
download | monero-dedcd6304c49ee177c846ff19af6f68bb24f60bc.tar.xz |
wallet_api: import / export output function
Diffstat (limited to 'src/wallet/api/wallet.h')
-rw-r--r-- | src/wallet/api/wallet.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wallet/api/wallet.h b/src/wallet/api/wallet.h index 13b33d1cd..ce2d7d7e4 100644 --- a/src/wallet/api/wallet.h +++ b/src/wallet/api/wallet.h @@ -167,6 +167,8 @@ public: virtual UnsignedTransaction * loadUnsignedTx(const std::string &unsigned_filename) override; bool exportKeyImages(const std::string &filename, bool all = false) override; bool importKeyImages(const std::string &filename) override; + bool exportOutputs(const std::string &filename, bool all = false) override; + bool importOutputs(const std::string &filename) override; virtual void disposeTransaction(PendingTransaction * t) override; virtual uint64_t estimateTransactionFee(const std::vector<std::pair<std::string, uint64_t>> &destinations, |