diff --git a/state/execution.go b/state/execution.go index 35f73a75ff..8a3e06664b 100644 --- a/state/execution.go +++ b/state/execution.go @@ -129,7 +129,8 @@ func (blockExec *BlockExecutor) CreateProposalBlock( preparedProposal, err := blockExec.proxyApp.PrepareProposalSync( abci.RequestPrepareProposal{ - BlockData: &tmproto.Data{Txs: txs.ToSliceOfBytes(), Evidence: *pevdData}, + // Hash will be set by celestia-app's PrepareProposal + BlockData: &tmproto.Data{Txs: txs.ToSliceOfBytes(), Evidence: *pevdData, Hash: nil}, BlockDataSize: maxDataBytes}, ) if err != nil {