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) {