From 27eb10a2e74dfd5308375957d75c7024d2bdd5b1 Mon Sep 17 00:00:00 2001 From: Aleksandr Bezobchuk Date: Thu, 18 Feb 2021 14:02:36 -0500 Subject: [PATCH] consensus: log private validator address and not struct (#6144) ref: https://github.com/tendermint/tendermint/pull/6140#discussion_r578635756 --- consensus/state.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/consensus/state.go b/consensus/state.go index 6cab36a06..07c03dcd6 100644 --- a/consensus/state.go +++ b/consensus/state.go @@ -1095,7 +1095,6 @@ func (cs *State) enterPropose(height int64, round int32) { logger.Debug( "propose step; our turn to propose", "proposer", address, - "priv_validator", cs.privValidator, ) cs.decideProposal(height, round) @@ -1103,7 +1102,6 @@ func (cs *State) enterPropose(height int64, round int32) { logger.Debug( "propose step; not our turn to propose", "proposer", cs.Validators.GetProposer().Address, - "priv_validator", cs.privValidator, ) } }