From 84304cb0fcee0a2313e654921c08665bfc5d543c Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Fri, 16 Aug 2019 15:56:06 -0700 Subject: [PATCH] Display vote pubkey at startup (#5548) --- core/src/validator.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/validator.rs b/core/src/validator.rs index 27d0707f35..877a91a6b9 100644 --- a/core/src/validator.rs +++ b/core/src/validator.rs @@ -96,6 +96,7 @@ impl Validator { assert_eq!(id, node.info.id); warn!("identity pubkey: {:?}", id); + warn!("vote pubkey: {:?}", vote_account); warn!("CUDA is {}abled", if cfg!(cuda) { "en" } else { "dis" }); info!("entrypoint: {:?}", entrypoint_info_option); info!("{:?}", node.info);