mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
p2p: failure to load p2pstate.bin is not fatal anymore
Clear any partially loaded data, and start with a default config
This commit is contained in:
parent
0252ffc37b
commit
34e388949d
@ -134,8 +134,17 @@ namespace nodetool
|
||||
p2p_data.open( state_file_path , std::ios_base::binary | std::ios_base::in);
|
||||
if(!p2p_data.fail())
|
||||
{
|
||||
boost::archive::binary_iarchive a(p2p_data);
|
||||
a >> *this;
|
||||
try
|
||||
{
|
||||
boost::archive::binary_iarchive a(p2p_data);
|
||||
a >> *this;
|
||||
}
|
||||
catch (const std::exception &e)
|
||||
{
|
||||
LOG_ERROR("Failed to load p2p config file, falling back to default config");
|
||||
m_peerlist = peerlist_manager(); // it was probably half clobbered by the failed load
|
||||
make_default_config();
|
||||
}
|
||||
}else
|
||||
{
|
||||
make_default_config();
|
||||
|
Loading…
Reference in New Issue
Block a user