From 4ff50519ffdb01a5d50084df77f21694c888fd2c Mon Sep 17 00:00:00 2001 From: Michael <68944931+michaelh-laine@users.noreply.github.com> Date: Wed, 15 Sep 2021 05:48:15 +0200 Subject: [PATCH] Add an info log to indicate the node has reached supermajority and print the active stake percentage (#19893) --- core/src/validator.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/src/validator.rs b/core/src/validator.rs index 7dd30aae1b..a64e37ca63 100644 --- a/core/src/validator.rs +++ b/core/src/validator.rs @@ -1472,6 +1472,10 @@ fn wait_for_supermajority( let gossip_stake_percent = get_stake_percent_in_gossip(bank, cluster_info, i % 10 == 0); if gossip_stake_percent >= WAIT_FOR_SUPERMAJORITY_THRESHOLD_PERCENT { + info!( + "Supermajority reached, {}% active stake detected, starting up now.", + gossip_stake_percent, + ); break; } // The normal RPC health checks don't apply as the node is waiting, so feign health to