diff --git a/app/genesis.go b/app/genesis.go index a10c85d4..04a1c634 100644 --- a/app/genesis.go +++ b/app/genesis.go @@ -101,7 +101,7 @@ func NewDefaultGenesisState() GenesisState { return gen } -// CloneGenesisState creates a deep clone of the provided GenesisState. +// cloneGenesisState creates a deep clone of the provided GenesisState. func cloneGenesisState(original GenesisState) GenesisState { clone := make(GenesisState, len(original)) for key, value := range original { diff --git a/e2e/ict/setup.go b/e2e/ict/setup.go index 71d7592c..c1cb3b89 100644 --- a/e2e/ict/setup.go +++ b/e2e/ict/setup.go @@ -100,7 +100,7 @@ func CreateChain(t *testing.T, numVals, numFull int, img ibc.DockerImage) []ibc. return CreateICTestBitsongChainCustomConfig(t, numVals, numFull, cfg) } -// CreateThisBranchWithValsAndFullNodes generates this branch's chain (ex: from the commit), with a set of validators and full nodes. +// CreateICTestBitsongChain creates a Bitsong chain for interchain testing with the specified number of validators and full nodes. func CreateICTestBitsongChain(t *testing.T, numVals, numFull int) []ibc.Chain { return CreateChain(t, numVals, numFull, BitsongImage) }