Browse Source

consensus: log private validator address and not struct (#6144)

ref: https://github.com/tendermint/tendermint/pull/6140#discussion_r578635756
pull/6151/head
Aleksandr Bezobchuk 4 years ago
committed by GitHub
parent
commit
27eb10a2e7
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 2 deletions
  1. +0
    -2
      consensus/state.go

+ 0
- 2
consensus/state.go View File

@ -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,
)
}
}


Loading…
Cancel
Save