Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/common_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ func NewInMemoryTendermintNodeProto(t *testing.T, genesisState []byte) (tendermi
return NewInMemoryTendermintNodeProtoWithValidators(t, genesisState, nil)
}

// NewInMemoryTendermintNodeWithValidators will create a TM node with 'n' "validators".
// NewInMemoryTendermintNodeProtoWithValidators will create a TM node with 'n' "validators".
// If "validators" is nil, this creates a pre-leanpokt TM node, else it will enable lean pocket
func NewInMemoryTendermintNodeProtoWithValidators(t *testing.T, genesisState []byte, validators []crypto.PrivateKey) (tendermintNode *node.Node, keybase keys.Keybase, cleanup func()) {
// create the in memory tendermint node and keybase
Expand Down
4 changes: 2 additions & 2 deletions baseapp/baseapp.go
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ func (app *BaseApp) setCheckState(header abci.Header) { // todo <- modified here
}
}

// setCheckState sets checkState with the cached multistore and
// setDeliverState sets checkState with the cached multistore and
// the context wrapping it.
// It is called by InitChain() and BeginBlock(),
// and deliverState is set nil on Commit().
Expand All @@ -373,7 +373,7 @@ func (app *BaseApp) setConsensusParams(consensusParams *abci.ConsensusParams) {
app.consensusParams = consensusParams
}

// setConsensusParams stores the consensus params to the main store.
// storeConsensusParams stores the consensus params to the main store.
func (app *BaseApp) storeConsensusParams(consensusParams *abci.ConsensusParams) {
consensusParamsBz, err := proto.Marshal(consensusParams)
if err != nil {
Expand Down