Browse Source

Initialize a new server connection from seedphrase when restoring from seed

pull/125/head
Duke 1 year ago
parent
commit
c7e0f0fae6
  1. 3
      src/firsttimewizard.cpp

3
src/firsttimewizard.cpp

@ -777,7 +777,8 @@ bool RestoreSeedPage::validatePage() {
qDebug() << __func__ << ": new server is " << parent->server;
// make a new connection to the new server
char* resp = litelib_initialize_new(parent->dangerous,parent->server.toStdString().c_str());
char* resp = litelib_initialize_new_from_phrase(parent->dangerous, parent->server.toStdString().c_str(),
seed.toStdString().c_str(), birthday, number);
reply = litelib_process_response(resp);
// retry with the new server

Loading…
Cancel
Save