From d34770e3b34c9a90a0663e8ce01985a0c691cae6 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Sat, 30 Jan 2021 09:39:10 -0800 Subject: [PATCH] Log each validator's identity/vote/baseline/bonus address for easier issue triage --- stake-o-matic/src/main.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/stake-o-matic/src/main.rs b/stake-o-matic/src/main.rs index d974c287b2..1171245c67 100644 --- a/stake-o-matic/src/main.rs +++ b/stake-o-matic/src/main.rs @@ -707,6 +707,11 @@ fn main() -> Result<(), Box> { ) .unwrap(); + debug!( + "\nidentity: {}\n - vote address: {}\n - baseline stake: {}\n - bonus stake: {}", + node_pubkey, vote_pubkey, baseline_stake_address, bonus_stake_address + ); + // Transactions to create the baseline and bonus stake accounts if let Ok((balance, stake_state)) = get_stake_account(&rpc_client, &baseline_stake_address) {