diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-10-26 14:25:20 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-11-03 15:04:37 +0000 |
commit | f26ce08c8abbff51f50c13848e8899865862515d (patch) | |
tree | 890e4e775bb5c146be32e7ce4b8dbcbbff7502ec /src/wallet/wallet_rpc_server_commands_defs.h | |
parent | Merge pull request #4697 (diff) | |
download | monero-f26ce08c8abbff51f50c13848e8899865862515d.tar.xz |
wallet: add a non destructive blockchain rescan
Diffstat (limited to 'src/wallet/wallet_rpc_server_commands_defs.h')
-rw-r--r-- | src/wallet/wallet_rpc_server_commands_defs.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wallet/wallet_rpc_server_commands_defs.h b/src/wallet/wallet_rpc_server_commands_defs.h index 2377b69e3..1d7307b7a 100644 --- a/src/wallet/wallet_rpc_server_commands_defs.h +++ b/src/wallet/wallet_rpc_server_commands_defs.h @@ -992,7 +992,10 @@ namespace wallet_rpc { struct request { + bool hard; + BEGIN_KV_SERIALIZE_MAP() + KV_SERIALIZE_OPT(hard, false); END_KV_SERIALIZE_MAP() }; |