diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2015-12-05 14:53:37 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2015-12-05 14:53:37 +0000 |
commit | 1965fce4026f8d97eadb3c03a97e25b0e3cc8703 (patch) | |
tree | d88208073a444c184e75161501c69df16f45da9d /src/wallet/wallet_rpc_server_commands_defs.h | |
parent | Merge pull request #515 (diff) | |
download | monero-1965fce4026f8d97eadb3c03a97e25b0e3cc8703.tar.xz |
wallet: add a stop_wallet RPC call
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 64306a7c7..e12c4bfa8 100644 --- a/src/wallet/wallet_rpc_server_commands_defs.h +++ b/src/wallet/wallet_rpc_server_commands_defs.h @@ -359,6 +359,21 @@ namespace wallet_rpc }; }; + struct COMMAND_RPC_STOP_WALLET + { + struct request + { + BEGIN_KV_SERIALIZE_MAP() + END_KV_SERIALIZE_MAP() + }; + + struct response + { + BEGIN_KV_SERIALIZE_MAP() + END_KV_SERIALIZE_MAP() + }; + }; + } } |