aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet_rpc_server_commands_defs.h
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2018-12-24 12:58:25 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2018-12-24 13:00:29 +0000
commitd7354c78649d117f758701de3a326681e16efb23 (patch)
treec59b97765ae4e5401ed7ba2f9bf3b5019e908177 /src/wallet/wallet_rpc_server_commands_defs.h
parentMerge pull request #4902 (diff)
downloadmonero-d7354c78649d117f758701de3a326681e16efb23.tar.xz
wallet_rpc_server: add all field to export_key_images
To use if you want all key images, not just the ones for recently imported outputs
Diffstat (limited to '')
-rw-r--r--src/wallet/wallet_rpc_server_commands_defs.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/wallet/wallet_rpc_server_commands_defs.h b/src/wallet/wallet_rpc_server_commands_defs.h
index afb8c6e91..f0c1a4e9d 100644
--- a/src/wallet/wallet_rpc_server_commands_defs.h
+++ b/src/wallet/wallet_rpc_server_commands_defs.h
@@ -47,7 +47,7 @@
// advance which version they will stop working with
// Don't go over 32767 for any of these
#define WALLET_RPC_VERSION_MAJOR 1
-#define WALLET_RPC_VERSION_MINOR 6
+#define WALLET_RPC_VERSION_MINOR 7
#define MAKE_WALLET_RPC_VERSION(major,minor) (((major)<<16)|(minor))
#define WALLET_RPC_VERSION MAKE_WALLET_RPC_VERSION(WALLET_RPC_VERSION_MAJOR, WALLET_RPC_VERSION_MINOR)
namespace tools
@@ -1565,7 +1565,10 @@ namespace wallet_rpc
{
struct request
{
+ bool all;
+
BEGIN_KV_SERIALIZE_MAP()
+ KV_SERIALIZE_OPT(all, false);
END_KV_SERIALIZE_MAP()
};