remove a stale comment

This commit is contained in:
Ethan Buchman
2017-10-10 10:52:26 -04:00
parent aae4e94998
commit 9fb45c5b5a

View File

@ -84,7 +84,6 @@ func Validators(heightPtr *int) (*ctypes.ResultValidators, error) {
func DumpConsensusState() (*ctypes.ResultDumpConsensusState, error) { func DumpConsensusState() (*ctypes.ResultDumpConsensusState, error) {
peerRoundStates := make(map[string]*cstypes.PeerRoundState) peerRoundStates := make(map[string]*cstypes.PeerRoundState)
for _, peer := range p2pSwitch.Peers().List() { for _, peer := range p2pSwitch.Peers().List() {
// TODO: clean this up?
peerState := peer.Get(types.PeerStateKey).(*cm.PeerState) peerState := peer.Get(types.PeerStateKey).(*cm.PeerState)
peerRoundState := peerState.GetRoundState() peerRoundState := peerState.GetRoundState()
peerRoundStates[peer.Key()] = peerRoundState peerRoundStates[peer.Key()] = peerRoundState