diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-11-09 10:59:41 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-12-20 10:22:29 +0000 |
commit | 5cbcf0aa2532f7123691c5ca414a4808fafbcf87 (patch) | |
tree | 89adec3720f143701cf356a7fffad96ab892cd77 /src/wallet/wallet_errors.h | |
parent | Merge pull request #2134 (diff) | |
download | monero-5cbcf0aa2532f7123691c5ca414a4808fafbcf87.tar.xz |
wallet: support for multisig seeds
They are hex rather than words, because they are a lot longer
than "normal" seeds, as they have to embed a lot more information
Diffstat (limited to '')
-rw-r--r-- | src/wallet/wallet_errors.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/wallet/wallet_errors.h b/src/wallet/wallet_errors.h index 234c22d85..023b53f28 100644 --- a/src/wallet/wallet_errors.h +++ b/src/wallet/wallet_errors.h @@ -60,6 +60,7 @@ namespace tools // file_save_error // invalid_password // invalid_priority + // invalid_multisig_seed // refresh_error * // acc_outs_lookup_error // block_parse_error @@ -266,6 +267,16 @@ namespace tools std::string to_string() const { return wallet_logic_error::to_string(); } }; + struct invalid_multisig_seed : public wallet_logic_error + { + explicit invalid_multisig_seed(std::string&& loc) + : wallet_logic_error(std::move(loc), "invalid multisig seed") + { + } + + std::string to_string() const { return wallet_logic_error::to_string(); } + }; + //---------------------------------------------------------------------------------------------------- struct invalid_pregenerated_random : public wallet_logic_error { |