diff --git a/internal/state/helpers_test.go b/internal/state/helpers_test.go index de5957f8d..e19b3ed89 100644 --- a/internal/state/helpers_test.go +++ b/internal/state/helpers_test.go @@ -185,9 +185,7 @@ func makeHeaderPartsResponsesValPowerChange( block, err := sf.MakeBlock(state, state.LastBlockHeight+1, new(types.Commit)) require.NoError(t, err) - abciResponses := &tmstate.ABCIResponses{ - FinalizeBlock: &abci.ResponseFinalizeBlock{}, - } + abciResponses := &tmstate.ABCIResponses{} // If the pubkey is new, remove the old and add the new. _, val := state.NextValidators.GetByIndex(0) diff --git a/node/node.go b/node/node.go index 39889230b..b37f80c9f 100644 --- a/node/node.go +++ b/node/node.go @@ -166,7 +166,7 @@ func makeNode( // EventBus and IndexerService must be started before the handshake because // we might need to index the txs of the replayed block as this might not have happened - // when the node stopped last time (i.e. the node stopped or crqashed after it saved the block + // when the node stopped last time (i.e. the node stopped or crashed after it saved the block // but before it indexed the txs) eventBus := eventbus.NewDefault(logger.With("module", "events")) if err := eventBus.Start(ctx); err != nil {