diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-03-18 12:04:17 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-03-18 12:04:17 +0000 |
commit | 9d134e864729b7279c90a343bf3433bec4e4a933 (patch) | |
tree | 7d87d610d2f29b522da1156e866029d0d4d3d647 /src/wallet/wallet_rpc_server_commands_defs.h | |
parent | Merge pull request #1869 (diff) | |
download | monero-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.h | 15 |
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() + }; + }; + } } |