diff --git a/server/v2/cometbft/abci.go b/server/v2/cometbft/abci.go index 0e01028e17c8..b1a0afeb038c 100644 --- a/server/v2/cometbft/abci.go +++ b/server/v2/cometbft/abci.go @@ -233,7 +233,7 @@ func (c *Consensus[T]) InitChain(ctx context.Context, req *abciproto.InitChainRe } // populate hash with empty byte slice instead of nil - bz := sha256.Sum256([]byte("")) + bz := sha256.Sum256([]byte{}) br := &coreappmgr.BlockRequest[T]{ Height: uint64(req.InitialHeight - 1),