From 8df4cf289543f152ec703f9fb841e5e3c5aab70d 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 d718a93ab0..9e0bd7b3ce 100644 --- a/core/src/validator.rs +++ b/core/src/validator.rs @@ -381,12 +381,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);