Merge pull request #201
9b7e0a0
wallet2::load correctly initialize m_blockchain for wallet loaded without bin file (warptangent)
This commit is contained in:
commit
c1bf8fb94b
|
@ -734,14 +734,16 @@ void wallet2::load(const std::string& wallet_, const std::string& password)
|
||||||
{
|
{
|
||||||
LOG_PRINT_L0("file not found: " << m_wallet_file << ", starting with empty blockchain");
|
LOG_PRINT_L0("file not found: " << m_wallet_file << ", starting with empty blockchain");
|
||||||
m_account_public_address = m_account.get_keys().m_account_address;
|
m_account_public_address = m_account.get_keys().m_account_address;
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
bool r = tools::unserialize_obj_from_file(*this, m_wallet_file);
|
else
|
||||||
THROW_WALLET_EXCEPTION_IF(!r, error::file_read_error, m_wallet_file);
|
{
|
||||||
THROW_WALLET_EXCEPTION_IF(
|
bool r = tools::unserialize_obj_from_file(*this, m_wallet_file);
|
||||||
m_account_public_address.m_spend_public_key != m_account.get_keys().m_account_address.m_spend_public_key ||
|
THROW_WALLET_EXCEPTION_IF(!r, error::file_read_error, m_wallet_file);
|
||||||
m_account_public_address.m_view_public_key != m_account.get_keys().m_account_address.m_view_public_key,
|
THROW_WALLET_EXCEPTION_IF(
|
||||||
error::wallet_files_doesnt_correspond, m_keys_file, m_wallet_file);
|
m_account_public_address.m_spend_public_key != m_account.get_keys().m_account_address.m_spend_public_key ||
|
||||||
|
m_account_public_address.m_view_public_key != m_account.get_keys().m_account_address.m_view_public_key,
|
||||||
|
error::wallet_files_doesnt_correspond, m_keys_file, m_wallet_file);
|
||||||
|
}
|
||||||
|
|
||||||
cryptonote::block genesis;
|
cryptonote::block genesis;
|
||||||
generate_genesis(genesis);
|
generate_genesis(genesis);
|
||||||
|
|
Loading…
Reference in New Issue