Add RPC error code for non-deterministic wallet

This commit is contained in:
Michał Sałaban 2018-10-18 23:14:06 +02:00
parent 5c85da5a73
commit ade369f96f
2 changed files with 2 additions and 0 deletions

View file

@ -1577,6 +1577,7 @@ namespace tools
epee::wipeable_string seed;
if (!m_wallet->get_seed(seed))
{
er.code = WALLET_RPC_ERROR_CODE_NON_DETERMINISTIC;
er.message = "The wallet is non-deterministic. Cannot display seed.";
return false;
}