Browse Source

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

Fixes #2951
pull/2983/head
Leo Wang 6 years ago
committed by Anton Kaliaev
parent
commit
2f64717bb5
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      consensus/replay.go

+ 6
- 0
consensus/replay.go 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)
}


Loading…
Cancel
Save