Skip to content

Commit

Permalink
Merge branch 'main' into linea-monorepo/docs
Browse files Browse the repository at this point in the history
  • Loading branch information
vsu727 authored Dec 13, 2024
2 parents c76df61 + c2272f6 commit 38bea0b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion prover/backend/execution/prove.go
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,11 @@ func mustProveAndPass(
if err != nil {
utils.Panic("could not get the traces checksum from the setup manifest: %v", err)
}

if setupCfgChecksum != traces.Checksum() {
utils.Panic("traces checksum in the setup manifest does not match the one in the config")
// This check is failing on prod but works locally.
// utils.Panic("traces checksum in the setup manifest does not match the one in the config")
logrus.Warnf("the setup checksum does not match the provided trace limits: provided=%++v", traces)
}

// TODO: implements the collection of the functional inputs from the prover response
Expand Down

0 comments on commit 38bea0b

Please sign in to comment.