From c90a58cd7141a943a0ab74510d80bd82bbc14131 Mon Sep 17 00:00:00 2001 From: thedarkjester Date: Tue, 22 Oct 2024 13:37:04 +0100 Subject: [PATCH] Use new error code in Coordinator --- config/common/smart-contract-errors.toml | 3 ++- .../zkevm/coordinator/app/config/CoordinatorConfigTest.kt | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/config/common/smart-contract-errors.toml b/config/common/smart-contract-errors.toml index eaa68c18bc..bb7b79b2e4 100644 --- a/config/common/smart-contract-errors.toml +++ b/config/common/smart-contract-errors.toml @@ -41,9 +41,10 @@ "b015579f" = "IsNotPaused" "3b174434" = "MessageHashesListLengthHigherThanOneHundred" "ca389c44" = "InvalidProofOrProofVerificationRanOutOfGas" +"42ab979d" = "ParentBlobNotSubmitted" +"edeae83c" = "FinalBlockNotSubmitted" # L2 Message Service "6446cc9c" = "MessageHashesListLengthIsZero" "d39e75f9" = "L1MessageNumberSynchronizationWrong" "7557a60a" = "L1RollingHashSynchronizationWrong" "36a4bb94" = "FinalRollingHashIsZero" -"42ab979d" = "ParentBlobNotSubmitted" diff --git a/coordinator/app/src/test/kotlin/net/consensys/zkevm/coordinator/app/config/CoordinatorConfigTest.kt b/coordinator/app/src/test/kotlin/net/consensys/zkevm/coordinator/app/config/CoordinatorConfigTest.kt index 60ecf2e2a4..422b9f0077 100644 --- a/coordinator/app/src/test/kotlin/net/consensys/zkevm/coordinator/app/config/CoordinatorConfigTest.kt +++ b/coordinator/app/src/test/kotlin/net/consensys/zkevm/coordinator/app/config/CoordinatorConfigTest.kt @@ -181,6 +181,7 @@ class CoordinatorConfigTest { "3b174434" to "MessageHashesListLengthHigherThanOneHundred", "ca389c44" to "InvalidProofOrProofVerificationRanOutOfGas", "42ab979d" to "ParentBlobNotSubmitted", + "edeae83c" to "FinalBlobNotSubmitted", // L2 Message Service "6446cc9c" to "MessageHashesListLengthIsZero", "d39e75f9" to "L1MessageNumberSynchronizationWrong",