Browse Source

Change last instance of AppStateBytes to GenesisBytes

pull/1780/head
Adrian Brink 6 years ago
parent
commit
9439306f0f
No known key found for this signature in database GPG Key ID: F61053D3FBD06353
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      example/dummy/helpers.go

+ 2
- 2
example/dummy/helpers.go View File

@ -30,7 +30,7 @@ func RandVals(cnt int) []types.Validator {
// don't make any tx that modify the validator state
func InitDummy(app *PersistentDummyApplication) {
app.InitChain(types.RequestInitChain{
Validators: RandVals(1),
AppStateBytes: []byte("[]"),
Validators: RandVals(1),
GenesisBytes: []byte("[]"),
})
}

Loading…
Cancel
Save