Send InitChain message from ABCI to Core on Genesis

InitChain is send from the ABCI to the Core node when the ABCI
app has no blocks stored.
This commit is contained in:
Adrian Brink
2017-04-27 20:22:11 +02:00
parent 1310c72647
commit 842609ddcb
2 changed files with 14 additions and 0 deletions
+8
View File
@@ -42,3 +42,11 @@ func (tm2pb) Validator(val *Validator) *types.Validator {
Power: uint64(val.VotingPower),
}
}
func (tm2pb) Validators(vals *ValidatorSet) []*types.Validator {
validators := make([]*types.Validator, len(vals.Validators))
for i, val := range vals.Validators {
validators[i] = TM2PB.Validator(val)
}
return validators
}