mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Speed up new wallet refresh
Use the current blockchain height as the refresh_from_block_height.
This commit is contained in:
parent
b7140daea2
commit
b6e42c3276
1 changed files with 6 additions and 0 deletions
|
@ -1410,6 +1410,12 @@ bool simple_wallet::new_wallet(const std::string &wallet_file, const std::string
|
||||||
}
|
}
|
||||||
|
|
||||||
m_wallet->init(m_daemon_address);
|
m_wallet->init(m_daemon_address);
|
||||||
|
// for a totally new account, we don't care about older blocks.
|
||||||
|
if (!m_restore_deterministic_wallet)
|
||||||
|
{
|
||||||
|
std::string err;
|
||||||
|
m_wallet->set_refresh_from_block_height(get_daemon_blockchain_height(err));
|
||||||
|
}
|
||||||
|
|
||||||
// convert rng value to electrum-style word list
|
// convert rng value to electrum-style word list
|
||||||
std::string electrum_words;
|
std::string electrum_words;
|
||||||
|
|
Loading…
Reference in a new issue