From 306783c6613e3c6b631a1aa42f81ed5fa038edd5 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Mon, 2 Mar 2020 18:58:53 -0700 Subject: [PATCH] Don't advertise the snapshot that the node was loaded from snapshot_packager_service will remove this snapshot hash from gossip when it starts --- core/src/validator.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/core/src/validator.rs b/core/src/validator.rs index 821bd0d0ac..57989d82d4 100644 --- a/core/src/validator.rs +++ b/core/src/validator.rs @@ -376,12 +376,6 @@ impl Validator { process::exit(1); } } - - // If the node was loaded from a snapshot, advertise it in gossip - cluster_info - .write() - .unwrap() - .push_snapshot_hashes(vec![snapshot_hash]); } wait_for_supermajority(config, &bank, &cluster_info);