mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-14 07:03:29 +01:00
Merge pull request #5577
f950517a
core: update pruning if using --prune-blockchain on a pruned blockchain (moneromooo-monero)
This commit is contained in:
commit
62d32e955a
@ -675,9 +675,15 @@ namespace cryptonote
|
|||||||
{
|
{
|
||||||
// display a message if the blockchain is not pruned yet
|
// display a message if the blockchain is not pruned yet
|
||||||
if (m_blockchain_storage.get_current_blockchain_height() > 1 && !m_blockchain_storage.get_blockchain_pruning_seed())
|
if (m_blockchain_storage.get_current_blockchain_height() > 1 && !m_blockchain_storage.get_blockchain_pruning_seed())
|
||||||
|
{
|
||||||
MGINFO("Pruning blockchain...");
|
MGINFO("Pruning blockchain...");
|
||||||
CHECK_AND_ASSERT_MES(m_blockchain_storage.prune_blockchain(), false, "Failed to prune blockchain");
|
CHECK_AND_ASSERT_MES(m_blockchain_storage.prune_blockchain(), false, "Failed to prune blockchain");
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
CHECK_AND_ASSERT_MES(m_blockchain_storage.update_blockchain_pruning(), false, "Failed to update blockchain pruning");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return load_state_data();
|
return load_state_data();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user