From 4f30cc548e9a06442837b44935182c955ef83332 Mon Sep 17 00:00:00 2001 From: Vadim Filin Date: Tue, 9 Jun 2026 11:44:51 +0200 Subject: [PATCH 1/2] Add fork-tolerance setting to eth chain configuration --- chains.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/chains.yaml b/chains.yaml index b825347..fa05982 100644 --- a/chains.yaml +++ b/chains.yaml @@ -2161,6 +2161,7 @@ chain-settings: settings: method-spec: "sei" expected-block-time: 200ms + fork-tolerance: 2 options: validate-peers: false validate-syncing: false # does not support eth_syncing From a08178dc2f74aee6beaf0676257acde54719748f Mon Sep 17 00:00:00 2001 From: Vadim Filin Date: Tue, 9 Jun 2026 11:47:29 +0200 Subject: [PATCH 2/2] Add fork-tolerance field to chains configuration --- chains.yamale.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/chains.yamale.yaml b/chains.yamale.yaml index a3394da..1788a8c 100644 --- a/chains.yamale.yaml +++ b/chains.yamale.yaml @@ -27,6 +27,7 @@ settings: fork-choice: regex('^quorum$|^height$', required=False) mev-critical: bool(required=False) disabled: bool(required=False) + fork-tolerance: int(required=False) --- lags: @@ -53,4 +54,4 @@ chain: net-version: int(required=False) settings: map(str(), any(), required=False) lower-bounds: map(str(), any(), required=False) - method-spec: str(required=False) \ No newline at end of file + method-spec: str(required=False)