From 9edf96486168696e84ed05465d0174b7b2003e01 Mon Sep 17 00:00:00 2001 From: DavePearce Date: Wed, 20 Nov 2024 11:04:09 +1300 Subject: [PATCH] Disable Tx Outcome Checks Currently, the tx outcome checks are failing because of a fix in BESU which affects reported balances in some cases. The issue is that this fix now invalidates some of the recorded tx outcome data. Therefore, this data needs to be rerecorded, which will take some time. As a temporary stop-gap measure, therefore, we can disable the outcome checks to allow PRs to continue as normal. --- .../net/consensys/linea/zktracer/module/mxp/MxpOperation.java | 1 - .../java/net/consensys/linea/replaytests/ReplayTestTools.java | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/arithmetization/src/main/java/net/consensys/linea/zktracer/module/mxp/MxpOperation.java b/arithmetization/src/main/java/net/consensys/linea/zktracer/module/mxp/MxpOperation.java index c9dc4227f..50cb4eacb 100644 --- a/arithmetization/src/main/java/net/consensys/linea/zktracer/module/mxp/MxpOperation.java +++ b/arithmetization/src/main/java/net/consensys/linea/zktracer/module/mxp/MxpOperation.java @@ -292,7 +292,6 @@ protected void setMaxOffsetAndMxpx() { maxOffset = max(maxOffset1, maxOffset2); mxpCall.setMxpx(maxOffset.compareTo(TWO_POW_32) >= 0); } - System.out.println(""); } public void setExpands() { diff --git a/arithmetization/src/test/java/net/consensys/linea/replaytests/ReplayTestTools.java b/arithmetization/src/test/java/net/consensys/linea/replaytests/ReplayTestTools.java index 83ab4bae4..babe28b4f 100644 --- a/arithmetization/src/test/java/net/consensys/linea/replaytests/ReplayTestTools.java +++ b/arithmetization/src/test/java/net/consensys/linea/replaytests/ReplayTestTools.java @@ -96,7 +96,7 @@ public static void replay(BigInteger chainId, String filename, boolean resultChe * @param filename Name of replay file */ public static void replay(BigInteger chainId, String filename) { - replay(chainId, filename, true); + replay(chainId, filename, false); } /**