return an error if validator set is empty in genesis file and after InitChain (#2971)

Fixes #2951
This commit is contained in:
Leo Wang
2018-12-07 16:30:58 +08:00
committed by Anton Kaliaev
parent c4a1cfc5c2
commit 2f64717bb5

View File

@@ -303,7 +303,13 @@ func (h *Handshaker) ReplayBlocks(
}
state.Validators = types.NewValidatorSet(vals)
state.NextValidators = types.NewValidatorSet(vals)
} else {
// If validator set is not set in genesis and still empty after InitChain, exit.
if len(h.genDoc.Validators) == 0 {
return nil, fmt.Errorf("Validator set is nil in genesis and still empty after InitChain")
}
}
if res.ConsensusParams != nil {
state.ConsensusParams = types.PB2TM.ConsensusParams(res.ConsensusParams)
}