diff options
author | Riccardo Spagni <ric@spagni.net> | 2019-04-16 22:37:52 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2019-04-16 22:37:52 +0200 |
commit | 96696d1e75c202b7770cfd5a2a44b5b79e380a34 (patch) | |
tree | cef4168e4aadc9f25853f6d4bebf52f04bb166e0 /src/wallet/wallet2.h | |
parent | Merge pull request #5414 (diff) | |
parent | wallet_rpc_server: add a all flag to export_outputs (diff) | |
download | monero-96696d1e75c202b7770cfd5a2a44b5b79e380a34.tar.xz |
Merge pull request #5418
374f388d wallet_rpc_server: add a all flag to export_outputs (moneromooo-monero)
Diffstat (limited to 'src/wallet/wallet2.h')
-rw-r--r-- | src/wallet/wallet2.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index 39380c9df..032d2a663 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -1139,8 +1139,8 @@ namespace tools bool verify_with_public_key(const std::string &data, const crypto::public_key &public_key, const std::string &signature) const; // Import/Export wallet data - std::pair<size_t, std::vector<tools::wallet2::transfer_details>> export_outputs() const; - std::string export_outputs_to_str() const; + std::pair<size_t, std::vector<tools::wallet2::transfer_details>> export_outputs(bool all = false) const; + std::string export_outputs_to_str(bool all = false) const; size_t import_outputs(const std::pair<size_t, std::vector<tools::wallet2::transfer_details>> &outputs); size_t import_outputs_from_str(const std::string &outputs_st); payment_container export_payments() const; |