wallet api: when restoring from EnglishOld, set language to English
This commit is contained in:
parent
421ab3119c
commit
71bff546d3
|
@ -40,6 +40,7 @@
|
||||||
#include "common/util.h"
|
#include "common/util.h"
|
||||||
|
|
||||||
#include "mnemonics/electrum-words.h"
|
#include "mnemonics/electrum-words.h"
|
||||||
|
#include "mnemonics/english.h"
|
||||||
#include <boost/format.hpp>
|
#include <boost/format.hpp>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
|
@ -603,6 +604,9 @@ bool WalletImpl::recover(const std::string &path, const std::string &password, c
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (old_language == crypto::ElectrumWords::old_language_name)
|
||||||
|
old_language = Language::English().get_language_name();
|
||||||
|
|
||||||
try {
|
try {
|
||||||
m_wallet->set_seed_language(old_language);
|
m_wallet->set_seed_language(old_language);
|
||||||
m_wallet->generate(path, password, recovery_key, true, false);
|
m_wallet->generate(path, password, recovery_key, true, false);
|
||||||
|
|
Loading…
Reference in New Issue