From 7512217ad765d759e3ec3815d2ef0ceb1e6aa95f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?nina=20/=20=E1=83=9C=E1=83=98=E1=83=9C=E1=83=90?= Date: Mon, 10 Jun 2024 16:28:27 +0200 Subject: [PATCH] Update test/util/test_app.go Co-authored-by: Rootul P --- test/util/test_app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/util/test_app.go b/test/util/test_app.go index 951d81e424..5805db9d8c 100644 --- a/test/util/test_app.go +++ b/test/util/test_app.go @@ -166,7 +166,7 @@ func ApplyGenesisState(testApp *app.App, pubKeys []cryptotypes.PubKey, balance i return gen.Keyring(), gen.Accounts(), nil } -// NewTestAppWithGenesisSet initializes a new app with a validator set and genesis accounts. +// NewTestAppWithGenesisSet initializes a new app with genesis accounts and returns the testApp, validator set and keyring. func NewTestAppWithGenesisSet(cparams *tmproto.ConsensusParams, genAccounts ...string) (*app.App, *tmtypes.ValidatorSet, keyring.Keyring) { testApp := NewTestApp() genesisState, valSet, kr := GenesisStateWithSingleValidator(testApp, genAccounts...)