update changelog; fixes from rebase

This commit is contained in:
Ethan Buchman
2017-10-23 11:05:20 -04:00
parent 819f81f702
commit c2803b80e8
3 changed files with 3 additions and 11 deletions

View File

@ -279,13 +279,6 @@ func (s *State) GetValidators() (last *types.ValidatorSet, current *types.Valida
return s.LastValidators, s.Validators
}
// Params returns the consensus parameters used for validating blocks
func (s *State) Params() types.ConsensusParams {
// TODO: this should move into the State proper
// when we allow the app to change it
return *s.GenesisDoc.ConsensusParams
}
//------------------------------------------------------------------------
// ABCIResponses retains the responses of the various ABCI calls during block processing.