1
0
Fork 0
forked from lthn/blockchain

fixed minro bug in UI wallet

This commit is contained in:
cryptozoidberg 2023-07-26 14:37:25 +02:00
parent 54396e8aeb
commit 2375d0fbc1
No known key found for this signature in database
GPG key ID: 22DEB97A54C6FDEC

View file

@ -1160,7 +1160,7 @@ std::string wallets_manager::generate_wallet(const std::wstring& path, const std
try
{
w->generate(path, password, false);
w->set_minimum_height(m_last_daemon_height);
w->set_minimum_height(m_last_daemon_height-1);
//owr.seed = w->get_account().get_seed_phrase();
}
catch (const tools::error::file_exists&)