diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2021-05-12 16:53:27 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2021-05-12 16:53:27 -0500 |
| commit | e505ffef5f5f2f03eb1843b49146e5cd6b732fbf (patch) | |
| tree | d8af508f8c2ec2dc0328a0ae39a8f5546de1d724 /src/wallet/api/wallet.h | |
| parent | c91bd17f90bcd21f9a9c2c9f3861a458a79a6fca (diff) | |
| parent | 445a9d8ba3333fd5e969bc24880280f65d69d173 (diff) | |
| download | monzero-core-e505ffef5f5f2f03eb1843b49146e5cd6b732fbf.tar.gz monzero-core-e505ffef5f5f2f03eb1843b49146e5cd6b732fbf.tar.xz monzero-core-e505ffef5f5f2f03eb1843b49146e5cd6b732fbf.zip | |
Merge pull request #7677
445a9d8 wallet_api: import / export output function (tobtoht)
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, |
