From 9439306f0fbd5927b3a9f36dc4e721757b5dc423 Mon Sep 17 00:00:00 2001 From: Adrian Brink Date: Sun, 13 May 2018 20:05:45 -0400 Subject: [PATCH] Change last instance of AppStateBytes to GenesisBytes --- example/dummy/helpers.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/dummy/helpers.go b/example/dummy/helpers.go index 927319867..1dc1e235b 100644 --- a/example/dummy/helpers.go +++ b/example/dummy/helpers.go @@ -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("[]"), }) }