aboutsummaryrefslogtreecommitdiff
path: root/src/blockchain_utilities/blockchain_prune.cpp
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2019-04-01 13:57:15 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2019-04-01 14:06:49 +0000
commiteda2661aa22402164fbcc4490f6ae09da3558bff (patch)
treea7419ca2d16269e405da9fda5ae9653a0c2c7046 /src/blockchain_utilities/blockchain_prune.cpp
parentMerge pull request #5359 (diff)
downloadmonero-eda2661aa22402164fbcc4490f6ae09da3558bff.tar.xz
Allow pruning before v10
This check is now not needed anymore, and would prevent people from using --prune-blockchain when starting a new sync
Diffstat (limited to 'src/blockchain_utilities/blockchain_prune.cpp')
-rw-r--r--src/blockchain_utilities/blockchain_prune.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/blockchain_utilities/blockchain_prune.cpp b/src/blockchain_utilities/blockchain_prune.cpp
index 36080aade..8e13f2c04 100644
--- a/src/blockchain_utilities/blockchain_prune.cpp
+++ b/src/blockchain_utilities/blockchain_prune.cpp
@@ -611,24 +611,6 @@ int main(int argc, char* argv[])
}
already_pruned = true;
}
- if (n == 0)
- {
- const uint64_t blockchain_height = core_storage[0]->get_current_blockchain_height();
- const crypto::hash hash = core_storage[0]->get_block_id_by_height(blockchain_height - 1);
- cryptonote::block block;
- if (core_storage[0]->get_block_by_hash(hash, block))
- {
- if (block.major_version < 10)
- {
- time_t now = time(NULL);
- if (now < 1555286400) // 15 april 2019
- {
- MERROR("Pruning before v10 will confuse peers. Wait for v10 first");
- return 1;
- }
- }
- }
- }
}
core_storage[0]->deinit();
core_storage[0].reset(NULL);