diff options
author | Joel <joel@truelevel.io> | 2019-02-19 14:13:01 +0100 |
---|---|---|
committer | Joel <joel@truelevel.io> | 2019-02-19 14:13:01 +0100 |
commit | 7dd7a3b7912010834b9b156058ceeaa890978a1a (patch) | |
tree | c706f1e8f262bc17be9ef88dd334d6708b6f0593 /src/wallet/wallet_rpc_server_commands_defs.h | |
parent | Merge pull request #4988 (diff) | |
download | monero-7dd7a3b7912010834b9b156058ceeaa890978a1a.tar.xz |
Add generate_from_keys RPC method
Diffstat (limited to 'src/wallet/wallet_rpc_server_commands_defs.h')
-rw-r--r-- | src/wallet/wallet_rpc_server_commands_defs.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/wallet/wallet_rpc_server_commands_defs.h b/src/wallet/wallet_rpc_server_commands_defs.h index f0c1a4e9d..8c46121e4 100644 --- a/src/wallet/wallet_rpc_server_commands_defs.h +++ b/src/wallet/wallet_rpc_server_commands_defs.h @@ -1934,6 +1934,39 @@ namespace wallet_rpc }; }; + struct COMMAND_RPC_GENERATE_FROM_KEYS + { + struct request + { + uint64_t restore_height; + std::string filename; + std::string address; + std::string spendkey; + std::string viewkey; + std::string password; + + BEGIN_KV_SERIALIZE_MAP() + KV_SERIALIZE_OPT(restore_height, (uint64_t)0) + KV_SERIALIZE(filename) + KV_SERIALIZE(address) + KV_SERIALIZE(spendkey) + KV_SERIALIZE(viewkey) + KV_SERIALIZE(password) + END_KV_SERIALIZE_MAP() + }; + + struct response + { + std::string address; + std::string info; + + BEGIN_KV_SERIALIZE_MAP() + KV_SERIALIZE(address) + KV_SERIALIZE(info) + END_KV_SERIALIZE_MAP() + }; + }; + struct COMMAND_RPC_RESTORE_DETERMINISTIC_WALLET { struct request |