From dd8e48d99e7695ec85768eacb09cd0deb0db406d Mon Sep 17 00:00:00 2001 From: Klimov Sergei Date: Fri, 19 Sep 2025 04:09:38 +0800 Subject: [PATCH] add ELECTRA in beacon knownForks --- beacon/params/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon/params/config.go b/beacon/params/config.go index 2f6ba082c5..85930dbe3b 100644 --- a/beacon/params/config.go +++ b/beacon/params/config.go @@ -37,7 +37,7 @@ import ( // across signing different data structures. const syncCommitteeDomain = 7 -var knownForks = []string{"GENESIS", "ALTAIR", "BELLATRIX", "CAPELLA", "DENEB"} +var knownForks = []string{"GENESIS", "ALTAIR", "BELLATRIX", "CAPELLA", "DENEB", "ELECTRA"} // ClientConfig contains beacon light client configuration. type ClientConfig struct {