Merge pull request #8914

45b52de wallet-rpc: restore from multisig seed (jeffro256)
This commit is contained in:
luigi1111 2023-08-17 10:20:20 -05:00
commit 3b67d5fc5b
No known key found for this signature in database
GPG key ID: F4ACA0183641E010
7 changed files with 217 additions and 35 deletions

View file

@ -2262,6 +2262,7 @@ namespace wallet_rpc
std::string password;
std::string language;
bool autosave_current;
bool enable_multisig_experimental;
BEGIN_KV_SERIALIZE_MAP()
KV_SERIALIZE_OPT(restore_height, (uint64_t)0)
@ -2271,6 +2272,7 @@ namespace wallet_rpc
KV_SERIALIZE(password)
KV_SERIALIZE(language)
KV_SERIALIZE_OPT(autosave_current, true)
KV_SERIALIZE_OPT(enable_multisig_experimental, false)
END_KV_SERIALIZE_MAP()
};
typedef epee::misc_utils::struct_init<request_t> request;