move genesis fields into RequestInitChain. some nullable=false

This commit is contained in:
Ethan Buchman
2018-05-31 23:58:02 -04:00
parent 512b3121a7
commit c681347ee3
3 changed files with 190 additions and 215 deletions
+1 -2
View File
@@ -33,7 +33,6 @@ func RandVals(cnt int) []types.Validator {
// don't make any tx that modify the validator state
func InitKVStore(app *PersistentKVStoreApplication) {
app.InitChain(types.RequestInitChain{
Validators: RandVals(1),
GenesisFile: types.GenesisFile{},
Validators: RandVals(1),
})
}