aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2017-08-07 15:12:42 +0200
committerRiccardo Spagni <ric@spagni.net>2017-08-07 15:12:42 +0200
commit9b3b7f050bf1443a5761bb5eb27631a1be6eb86b (patch)
tree2c0a0e490173d667cd8c7c94a53c42d3c424938b /src
parent5cc53c7e4937728879b56f2a494d950157cbf0e4 (diff)
parent5dd722beaa7716eb48d18c024dd4a7dddb4db38f (diff)
downloadmonzero-core-9b3b7f050bf1443a5761bb5eb27631a1be6eb86b.tar.gz
monzero-core-9b3b7f050bf1443a5761bb5eb27631a1be6eb86b.tar.xz
monzero-core-9b3b7f050bf1443a5761bb5eb27631a1be6eb86b.zip
Merge pull request #2230
5dd722be core: add a message when loading checkpoints at init time (moneromooo-monero)
Diffstat (limited to 'src')
-rw-r--r--src/cryptonote_core/cryptonote_core.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cryptonote_core/cryptonote_core.cpp b/src/cryptonote_core/cryptonote_core.cpp
index da8ec68dd..62e92ba30 100644
--- a/src/cryptonote_core/cryptonote_core.cpp
+++ b/src/cryptonote_core/cryptonote_core.cpp
@@ -414,6 +414,8 @@ namespace cryptonote
if (block_sync_size == 0)
block_sync_size = BLOCKS_SYNCHRONIZING_DEFAULT_COUNT;
+ MGINFO("Loading checkpoints");
+
// load json & DNS checkpoints, and verify them
// with respect to what blocks we already have
CHECK_AND_ASSERT_MES(update_checkpoints(), false, "One or more checkpoints loaded from json or dns conflicted with existing checkpoints.");