aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet_rpc_server_commands_defs.h
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-03-18 12:04:17 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-03-18 12:04:17 +0000
commit9d134e864729b7279c90a343bf3433bec4e4a933 (patch)
tree7d87d610d2f29b522da1156e866029d0d4d3d647 /src/wallet/wallet_rpc_server_commands_defs.h
parentMerge pull request #1869 (diff)
downloadmonero-9d134e864729b7279c90a343bf3433bec4e4a933.tar.xz
wallet_rpc_server: add a rescan_spent RPC
Diffstat (limited to 'src/wallet/wallet_rpc_server_commands_defs.h')
-rw-r--r--src/wallet/wallet_rpc_server_commands_defs.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/wallet/wallet_rpc_server_commands_defs.h b/src/wallet/wallet_rpc_server_commands_defs.h
index 78f896f16..2ec965b4d 100644
--- a/src/wallet/wallet_rpc_server_commands_defs.h
+++ b/src/wallet/wallet_rpc_server_commands_defs.h
@@ -857,5 +857,20 @@ namespace wallet_rpc
};
};
+ struct COMMAND_RPC_RESCAN_SPENT
+ {
+ struct request
+ {
+ BEGIN_KV_SERIALIZE_MAP()
+ END_KV_SERIALIZE_MAP()
+ };
+
+ struct response
+ {
+ BEGIN_KV_SERIALIZE_MAP()
+ END_KV_SERIALIZE_MAP()
+ };
+ };
+
}
}