diff --git a/app/process_proposal.go b/app/process_proposal.go index 885e78a092..c8b140c28f 100644 --- a/app/process_proposal.go +++ b/app/process_proposal.go @@ -135,9 +135,8 @@ func (app *App) ProcessProposal(req abci.RequestProcessProposal) (resp abci.Resp // are identical and that square layout is consistent. This also means that the share commitment rules // have been followed and thus each blobs share commitment should be valid if !bytes.Equal(dah.Hash(), req.Header.DataHash) { - logInvalidPropBlock(app.Logger(), req.Header, "proposed data root differs from calculated data root") + logInvalidPropBlock(app.Logger(), req.Header, fmt.Sprintf("proposed data root %X differs from calculated data root %X", req.Header.DataHash, dah.Hash())) fmt.Println("square at height", req.Header.Height) - fmt.Println("proposed data root", req.Header.DataHash, "calculated data root", dah.Hash()) fmt.Println(eds.Flattened()) return reject() }