From d2e89cad2da6a847b438f10df9c03d81a4a86cce Mon Sep 17 00:00:00 2001 From: Karrenbelt Date: Wed, 4 Sep 2024 11:37:28 +0200 Subject: [PATCH 01/31] feat: add tracing crates --- Cargo.lock | 117 ++++++++++++++++++++++++++++++++++++++++--- Cargo.toml | 2 + grandine/Cargo.toml | 1 + grandine/src/main.rs | 5 +- logging/Cargo.toml | 3 ++ logging/src/lib.rs | 23 +++++++++ 6 files changed, 142 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2f74cc6f..b41e5503 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1018,7 +1018,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "05efc5cfd9110c8416e471df0e96702d58690178e206e61b7173706673c93706" dependencies = [ "memchr", - "regex-automata", + "regex-automata 0.4.7", "serde", ] @@ -3077,6 +3077,7 @@ dependencies = [ "thiserror", "tokio", "tower-http", + "tracing", "types", "validator", "validator_key_cache", @@ -4371,7 +4372,7 @@ dependencies = [ "petgraph", "pico-args", "regex", - "regex-syntax", + "regex-syntax 0.8.4", "string_cache", "term", "tiny-keccak", @@ -4385,7 +4386,7 @@ version = "0.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "507460a910eb7b32ee961886ff48539633b788a36b65692b95f225b844c82553" dependencies = [ - "regex-automata", + "regex-automata 0.4.7", ] [[package]] @@ -5024,6 +5025,9 @@ name = "logging" version = "0.0.0" dependencies = [ "derive_more", + "tracing", + "tracing-appender", + "tracing-subscriber", ] [[package]] @@ -5059,6 +5063,15 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" +[[package]] +name = "matchers" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" +dependencies = [ + "regex-automata 0.1.10", +] + [[package]] name = "matchit" version = "0.7.3" @@ -5348,6 +5361,16 @@ dependencies = [ "winapi", ] +[[package]] +name = "nu-ansi-term" +version = "0.46.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" +dependencies = [ + "overload", + "winapi", +] + [[package]] name = "num-bigint" version = "0.4.6" @@ -5566,6 +5589,12 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" +[[package]] +name = "overload" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" + [[package]] name = "p256" version = "0.13.2" @@ -5730,7 +5759,7 @@ checksum = "914a1c2265c98e2446911282c6ac86d8524f495792c38c5bd884f80499c7538a" dependencies = [ "parse-display-derive", "regex", - "regex-syntax", + "regex-syntax 0.8.4", ] [[package]] @@ -5742,7 +5771,7 @@ dependencies = [ "proc-macro2 1.0.86", "quote 1.0.36", "regex", - "regex-syntax", + "regex-syntax 0.8.4", "structmeta", "syn 2.0.68", ] @@ -6493,8 +6522,17 @@ checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f" dependencies = [ "aho-corasick", "memchr", - "regex-automata", - "regex-syntax", + "regex-automata 0.4.7", + "regex-syntax 0.8.4", +] + +[[package]] +name = "regex-automata" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" +dependencies = [ + "regex-syntax 0.6.29", ] [[package]] @@ -6505,9 +6543,15 @@ checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df" dependencies = [ "aho-corasick", "memchr", - "regex-syntax", + "regex-syntax 0.8.4", ] +[[package]] +name = "regex-syntax" +version = "0.6.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" + [[package]] name = "regex-syntax" version = "0.8.4" @@ -7229,6 +7273,15 @@ dependencies = [ "keccak", ] +[[package]] +name = "sharded-slab" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" +dependencies = [ + "lazy_static", +] + [[package]] name = "shlex" version = "1.3.0" @@ -8213,6 +8266,18 @@ dependencies = [ "tracing-core", ] +[[package]] +name = "tracing-appender" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3566e8ce28cc0a3fe42519fc80e6b4c943cc4c8cef275620eb8dac2d3d4e06cf" +dependencies = [ + "crossbeam-channel", + "thiserror", + "time", + "tracing-subscriber", +] + [[package]] name = "tracing-attributes" version = "0.1.27" @@ -8231,6 +8296,36 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" dependencies = [ "once_cell", + "valuable", +] + +[[package]] +name = "tracing-log" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" +dependencies = [ + "log", + "once_cell", + "tracing-core", +] + +[[package]] +name = "tracing-subscriber" +version = "0.3.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" +dependencies = [ + "matchers", + "nu-ansi-term", + "once_cell", + "regex", + "sharded-slab", + "smallvec", + "thread_local", + "tracing", + "tracing-core", + "tracing-log", ] [[package]] @@ -8568,6 +8663,12 @@ dependencies = [ "zeroize", ] +[[package]] +name = "valuable" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" + [[package]] name = "value-bag" version = "1.9.0" diff --git a/Cargo.toml b/Cargo.toml index d17c38d1..658b142c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -414,6 +414,8 @@ tokio-util = { version = '0.7', features = ['codec', 'compat', 'time'] } tower = { version = '0.4.13', features = ['timeout'] } tower-http = { version = '0.5.2', features = ['cors', 'trace'] } tracing = '0.1.40' +tracing-appender = "0.2.3" +tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } triomphe = '0.1.13' tynm = '0.1.10' typenum = '1.17.0' diff --git a/grandine/Cargo.toml b/grandine/Cargo.toml index e5cde9ae..2b5d3fa9 100644 --- a/grandine/Cargo.toml +++ b/grandine/Cargo.toml @@ -59,6 +59,7 @@ tap = { workspace = true } thiserror = { workspace = true } tokio = { workspace = true } tower-http = { workspace = true } +tracing = {workspace = true} types = { workspace = true } validator = { workspace = true } validator_key_cache = { workspace = true } diff --git a/grandine/src/main.rs b/grandine/src/main.rs index aa6e2d75..f12f7a4f 100644 --- a/grandine/src/main.rs +++ b/grandine/src/main.rs @@ -5,7 +5,8 @@ use std::{ process::ExitCode, sync::Arc, }; - +use logging::setup_tracing; +use tracing::{info as tracing_info}; use allocator as _; use anyhow::{bail, ensure, Context as _, Result}; use builder_api::BuilderConfig; @@ -308,6 +309,8 @@ enum Error { } fn main() -> ExitCode { + let _guard = setup_tracing(); + tracing_info!("This is an info message."); if let Err(error) = try_main() { error.downcast_ref().map(ClapError::exit); error!("{error:?}"); diff --git a/logging/Cargo.toml b/logging/Cargo.toml index 52c5fdfa..50dd4b5d 100644 --- a/logging/Cargo.toml +++ b/logging/Cargo.toml @@ -8,3 +8,6 @@ workspace = true [dependencies] derive_more = { workspace = true } +tracing = { workspace = true } +tracing-subscriber = { workspace = true } +tracing-appender = { workspace = true } diff --git a/logging/src/lib.rs b/logging/src/lib.rs index 662ae421..c7d21820 100644 --- a/logging/src/lib.rs +++ b/logging/src/lib.rs @@ -1,6 +1,10 @@ use core::sync::atomic::{AtomicUsize, Ordering}; use derive_more::Display; +use tracing::info; +use tracing_appender::non_blocking::NonBlocking; +use tracing_appender::rolling::{RollingFileAppender, Rotation}; +use tracing_subscriber::{fmt, layer::SubscriberExt, util::SubscriberInitExt, EnvFilter}; pub static PEER_LOG_METRICS: PeerLogMetrics = PeerLogMetrics::new(0); @@ -30,3 +34,22 @@ impl PeerLogMetrics { .store(target_peer_count, Ordering::Relaxed) } } + +pub fn setup_tracing() -> impl Drop { + let log_path = "logs/testing.log"; + let log_appender = RollingFileAppender::new(Rotation::DAILY, "", log_path); + let (log_non_blocking, guard) = NonBlocking::new(log_appender); + + let env_filter = EnvFilter::try_from_default_env() + .or_else(|_| EnvFilter::try_new("info")) + .expect("Failed to create EnvFilter"); + + tracing_subscriber::registry() + .with(env_filter) + .with(fmt::layer().with_writer(log_non_blocking).with_ansi(false)) + .try_init() + .expect("Failed to initialize tracing subscriber"); + info!("This is a message from lib.rs."); + println!("Tracing initialized successfully."); + guard +} From 66d053aa38f64673dca554eb830ec217025fba68 Mon Sep 17 00:00:00 2001 From: Karrenbelt Date: Wed, 4 Sep 2024 11:56:00 +0200 Subject: [PATCH 02/31] feat: replace `log` with `tracing` crate in grandine/src/main.rs --- grandine/src/main.rs | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/grandine/src/main.rs b/grandine/src/main.rs index f12f7a4f..c637b35b 100644 --- a/grandine/src/main.rs +++ b/grandine/src/main.rs @@ -5,8 +5,7 @@ use std::{ process::ExitCode, sync::Arc, }; -use logging::setup_tracing; -use tracing::{info as tracing_info}; + use allocator as _; use anyhow::{bail, ensure, Context as _, Result}; use builder_api::BuilderConfig; @@ -20,8 +19,7 @@ use fork_choice_store::StoreConfig; use genesis::AnchorCheckpointProvider; use grandine_version::APPLICATION_VERSION_WITH_PLATFORM; use http_api::HttpApiConfig; -use log::{error, info, warn}; -use logging::PEER_LOG_METRICS; +use logging::{PEER_LOG_METRICS, setup_tracing}; use metrics::MetricsServerConfig; use p2p::{ListenAddr, NetworkConfig}; use reqwest::{Client, ClientBuilder, Url}; @@ -33,6 +31,7 @@ use ssz::SszRead as _; use std_ext::ArcExt as _; use thiserror::Error; use tokio::runtime::Builder; +use tracing::{error, info, warn}; use types::{ config::Config as ChainConfig, phase0::primitives::{ExecutionBlockNumber, Slot}, @@ -310,7 +309,7 @@ enum Error { fn main() -> ExitCode { let _guard = setup_tracing(); - tracing_info!("This is an info message."); + info!("Gradine firing up..."); if let Err(error) = try_main() { error.downcast_ref().map(ClapError::exit); error!("{error:?}"); From 558b6aee244d26fec3055ca13a01898b98d616d3 Mon Sep 17 00:00:00 2001 From: Karrenbelt Date: Wed, 4 Sep 2024 12:14:01 +0200 Subject: [PATCH 03/31] feat: improve tracing setup and add stdout writer --- logging/src/lib.rs | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/logging/src/lib.rs b/logging/src/lib.rs index c7d21820..fc8fd047 100644 --- a/logging/src/lib.rs +++ b/logging/src/lib.rs @@ -38,18 +38,24 @@ impl PeerLogMetrics { pub fn setup_tracing() -> impl Drop { let log_path = "logs/testing.log"; let log_appender = RollingFileAppender::new(Rotation::DAILY, "", log_path); - let (log_non_blocking, guard) = NonBlocking::new(log_appender); + let (file_non_blocking, file_guard) = NonBlocking::new(log_appender); + + let stdout_layer = fmt::layer().with_writer(std::io::stdout).with_ansi(true); + + let file_layer = fmt::layer().with_writer(file_non_blocking).with_ansi(false); let env_filter = EnvFilter::try_from_default_env() .or_else(|_| EnvFilter::try_new("info")) .expect("Failed to create EnvFilter"); - tracing_subscriber::registry() + let subscriber = tracing_subscriber::registry() .with(env_filter) - .with(fmt::layer().with_writer(log_non_blocking).with_ansi(false)) - .try_init() + .with(stdout_layer) + .with(file_layer); + + tracing::subscriber::set_global_default(subscriber) .expect("Failed to initialize tracing subscriber"); - info!("This is a message from lib.rs."); - println!("Tracing initialized successfully."); - guard + + info!("Tracing initialized successfully."); + file_guard } From b14b17b8fff8e20b52fd61c522caf601893aa7ff Mon Sep 17 00:00:00 2001 From: Karrenbelt Date: Wed, 4 Sep 2024 12:49:51 +0200 Subject: [PATCH 04/31] feat: replace all log with tracing in grandine module --- grandine/src/grandine_args.rs | 2 +- grandine/src/grandine_config.rs | 8 ++++---- grandine/src/predefined_network.rs | 2 +- grandine/src/validators.rs | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/grandine/src/grandine_args.rs b/grandine/src/grandine_args.rs index fe8b00b4..bc1300a9 100644 --- a/grandine/src/grandine_args.rs +++ b/grandine/src/grandine_args.rs @@ -30,7 +30,7 @@ use fork_choice_store::{StoreConfig, DEFAULT_CACHE_LOCK_TIMEOUT_MILLIS}; use grandine_version::{APPLICATION_NAME, APPLICATION_NAME_AND_VERSION, APPLICATION_VERSION}; use http_api::HttpApiConfig; use itertools::{EitherOrBoth, Itertools as _}; -use log::warn; +use tracing::warn; use metrics::{MetricsServerConfig, MetricsServiceConfig}; use p2p::{Enr, Multiaddr, NetworkConfig}; use prometheus_metrics::{Metrics, METRICS}; diff --git a/grandine/src/grandine_config.rs b/grandine/src/grandine_config.rs index 0f257764..968587eb 100644 --- a/grandine/src/grandine_config.rs +++ b/grandine/src/grandine_config.rs @@ -6,11 +6,11 @@ use eth1_api::AuthOptions; use features::Feature; use http_api::HttpApiConfig; use itertools::Itertools as _; -use log::info; use p2p::NetworkConfig; use reqwest::Url; use runtime::{MetricsConfig, StorageConfig}; use signer::Web3SignerConfig; +use tracing::info; use types::{ config::Config as ChainConfig, phase0::primitives::{ExecutionAddress, ExecutionBlockNumber, Slot, H256}, @@ -110,7 +110,7 @@ impl GrandineConfig { storage_config.eth1_db_size.to_string_as(true), ); - info!("Eth1 RPC URLs: [{}]", eth1_rpc_urls.iter().format(", ")); + info!("Eth1 RPC URLs: {:?}", eth1_rpc_urls); info!("graffiti: {graffiti:?}"); info!("HTTP API address: {}", http_api_config.address); @@ -151,8 +151,8 @@ impl GrandineConfig { if !web3signer_config.urls.is_empty() { info!( - "using Web3Signer API to sign validator messages (API URLs: [{}])", - web3signer_config.urls.iter().format(", "), + "using Web3Signer API to sign validator messages (API URLs: {:?})", + web3signer_config.urls, ); } diff --git a/grandine/src/predefined_network.rs b/grandine/src/predefined_network.rs index d1e62e05..8595434e 100644 --- a/grandine/src/predefined_network.rs +++ b/grandine/src/predefined_network.rs @@ -5,7 +5,7 @@ use anyhow::{bail, Context as _, Result}; use deposit_tree::DepositTree; use fork_choice_control::checkpoint_sync; use genesis::AnchorCheckpointProvider; -use log::info; +use tracing::info; use p2p::{Enr, NetworkConfig}; use reqwest::{Client, Url}; use ssz::SszRead as _; diff --git a/grandine/src/validators.rs b/grandine/src/validators.rs index 54fcffe1..bae4bde7 100644 --- a/grandine/src/validators.rs +++ b/grandine/src/validators.rs @@ -3,7 +3,7 @@ use std::{collections::HashMap, path::PathBuf, sync::Arc}; use anyhow::{Error, Result}; use bls::{PublicKeyBytes, SecretKey}; use eip_2335::Keystore; -use log::{info, warn}; +use tracing::{info, warn}; use rayon::iter::{IntoParallelIterator as _, ParallelIterator as _}; use signer::KeyOrigin; use std_ext::ArcExt; From 9596fa0ce8f932489c5372f3b540a1100d8dcc3b Mon Sep 17 00:00:00 2001 From: Karrenbelt Date: Wed, 4 Sep 2024 12:50:43 +0200 Subject: [PATCH 05/31] chore: cleanup unused imports --- Cargo.lock | 1 - grandine/Cargo.toml | 1 - grandine/src/grandine_config.rs | 1 - grandine/src/main.rs | 4 ++-- logging/src/lib.rs | 2 +- 5 files changed, 3 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b41e5503..912bcc8a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3052,7 +3052,6 @@ dependencies = [ "http_api", "itertools 0.13.0", "keymanager", - "log", "logging", "metrics", "p2p", diff --git a/grandine/Cargo.toml b/grandine/Cargo.toml index 2b5d3fa9..7b187d38 100644 --- a/grandine/Cargo.toml +++ b/grandine/Cargo.toml @@ -36,7 +36,6 @@ hex-literal = { workspace = true } http_api = { workspace = true } itertools = { workspace = true } keymanager = { workspace = true } -log = { workspace = true } logging = { workspace = true } metrics = { workspace = true } p2p = { workspace = true } diff --git a/grandine/src/grandine_config.rs b/grandine/src/grandine_config.rs index 968587eb..32139021 100644 --- a/grandine/src/grandine_config.rs +++ b/grandine/src/grandine_config.rs @@ -5,7 +5,6 @@ use builder_api::BuilderConfig; use eth1_api::AuthOptions; use features::Feature; use http_api::HttpApiConfig; -use itertools::Itertools as _; use p2p::NetworkConfig; use reqwest::Url; use runtime::{MetricsConfig, StorageConfig}; diff --git a/grandine/src/main.rs b/grandine/src/main.rs index c637b35b..95035f3f 100644 --- a/grandine/src/main.rs +++ b/grandine/src/main.rs @@ -19,7 +19,7 @@ use fork_choice_store::StoreConfig; use genesis::AnchorCheckpointProvider; use grandine_version::APPLICATION_VERSION_WITH_PLATFORM; use http_api::HttpApiConfig; -use logging::{PEER_LOG_METRICS, setup_tracing}; +use logging::{setup_tracing, PEER_LOG_METRICS}; use metrics::MetricsServerConfig; use p2p::{ListenAddr, NetworkConfig}; use reqwest::{Client, ClientBuilder, Url}; @@ -309,7 +309,7 @@ enum Error { fn main() -> ExitCode { let _guard = setup_tracing(); - info!("Gradine firing up..."); + info!("Grandine firing up..."); if let Err(error) = try_main() { error.downcast_ref().map(ClapError::exit); error!("{error:?}"); diff --git a/logging/src/lib.rs b/logging/src/lib.rs index fc8fd047..fb95544f 100644 --- a/logging/src/lib.rs +++ b/logging/src/lib.rs @@ -4,7 +4,7 @@ use derive_more::Display; use tracing::info; use tracing_appender::non_blocking::NonBlocking; use tracing_appender::rolling::{RollingFileAppender, Rotation}; -use tracing_subscriber::{fmt, layer::SubscriberExt, util::SubscriberInitExt, EnvFilter}; +use tracing_subscriber::{fmt, layer::SubscriberExt, EnvFilter}; pub static PEER_LOG_METRICS: PeerLogMetrics = PeerLogMetrics::new(0); From eff1618604bc68457d75622ab433b86f960e8d0c Mon Sep 17 00:00:00 2001 From: Karrenbelt Date: Wed, 4 Sep 2024 16:15:19 +0200 Subject: [PATCH 06/31] feat: replace all log with tracing in attestation_verifier module --- Cargo.lock | 2 +- attestation_verifier/Cargo.toml | 2 +- attestation_verifier/src/attestation_verifier.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 912bcc8a..79c7425c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -565,10 +565,10 @@ dependencies = [ "futures", "helper_functions", "itertools 0.13.0", - "log", "prometheus_metrics", "rayon", "std_ext", + "tracing", "types", ] diff --git a/attestation_verifier/Cargo.toml b/attestation_verifier/Cargo.toml index 79399df9..52fb54e3 100644 --- a/attestation_verifier/Cargo.toml +++ b/attestation_verifier/Cargo.toml @@ -17,8 +17,8 @@ fork_choice_store = { workspace = true } futures = { workspace = true } helper_functions = { workspace = true } itertools = { workspace = true } -log = { workspace = true } prometheus_metrics = { workspace = true } rayon = { workspace = true } std_ext = { workspace = true } +tracing = {workspace = true } types = { workspace = true } diff --git a/attestation_verifier/src/attestation_verifier.rs b/attestation_verifier/src/attestation_verifier.rs index dd21abb7..f6c90fa9 100644 --- a/attestation_verifier/src/attestation_verifier.rs +++ b/attestation_verifier/src/attestation_verifier.rs @@ -22,7 +22,7 @@ use helper_functions::{ verifier::{MultiVerifier, Triple, Verifier}, }; use itertools::Either; -use log::{debug, warn}; +use tracing::{debug, warn}; use prometheus_metrics::Metrics; use rayon::iter::{IntoParallelIterator as _, ParallelBridge as _, ParallelIterator as _}; use std_ext::ArcExt as _; From 6e387dd3b4a4b6c9a7308f046a594792d94cce07 Mon Sep 17 00:00:00 2001 From: Karrenbelt Date: Wed, 4 Sep 2024 16:20:06 +0200 Subject: [PATCH 07/31] feat: replace all log with tracing in ad_hoc_bench module --- Cargo.lock | 2 +- ad_hoc_bench/Cargo.toml | 2 +- ad_hoc_bench/src/main.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 79c7425c..9504fedb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -16,8 +16,8 @@ dependencies = [ "fork_choice_store", "futures", "jemalloc-ctl", - "log", "rand", + "tracing", "types", ] diff --git a/ad_hoc_bench/Cargo.toml b/ad_hoc_bench/Cargo.toml index f5ea5c3b..d583e9d7 100644 --- a/ad_hoc_bench/Cargo.toml +++ b/ad_hoc_bench/Cargo.toml @@ -17,6 +17,6 @@ fork_choice_control = { workspace = true } fork_choice_store = { workspace = true } futures = { workspace = true } jemalloc-ctl = { workspace = true } -log = { workspace = true } rand = { workspace = true } +tracing = { workspace = true } types = { workspace = true } diff --git a/ad_hoc_bench/src/main.rs b/ad_hoc_bench/src/main.rs index 3254d347..1dd38310 100644 --- a/ad_hoc_bench/src/main.rs +++ b/ad_hoc_bench/src/main.rs @@ -9,7 +9,7 @@ use eth2_cache_utils::{goerli, holesky, holesky_devnet, mainnet, medalla, withdr use fork_choice_control::AdHocBenchController; use fork_choice_store::StoreConfig; use jemalloc_ctl::Result as JemallocResult; -use log::info; +use tracing::info; use rand::seq::SliceRandom as _; use types::{ combined::{BeaconState, SignedBeaconBlock}, From 1292575b6780794a346a592788fd0e7ed2333ddb Mon Sep 17 00:00:00 2001 From: Karrenbelt Date: Wed, 4 Sep 2024 16:24:49 +0200 Subject: [PATCH 08/31] feat: replace all log with tracing in block_producer module --- Cargo.lock | 2 +- block_producer/Cargo.toml | 2 +- block_producer/src/block_producer.rs | 2 +- block_producer/src/eth1_storage.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9504fedb..671381be 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -935,7 +935,6 @@ dependencies = [ "interop", "itertools 0.13.0", "keymanager", - "log", "nonzero_ext", "operation_pools", "prometheus_metrics", @@ -946,6 +945,7 @@ dependencies = [ "tap", "thiserror", "tokio", + "tracing", "transition_functions", "try_from_iterator", "tynm", diff --git a/block_producer/Cargo.toml b/block_producer/Cargo.toml index 26d169e1..97903119 100644 --- a/block_producer/Cargo.toml +++ b/block_producer/Cargo.toml @@ -25,7 +25,6 @@ futures = { workspace = true } helper_functions = { workspace = true } itertools = { workspace = true } keymanager = { workspace = true } -log = { workspace = true } nonzero_ext = { workspace = true } operation_pools = { workspace = true } prometheus_metrics = { workspace = true } @@ -36,6 +35,7 @@ std_ext = { workspace = true } tap = { workspace = true } thiserror = { workspace = true } tokio = { workspace = true } +tracing = { workspace = true } transition_functions = { workspace = true } try_from_iterator = { workspace = true } tynm = { workspace = true } diff --git a/block_producer/src/block_producer.rs b/block_producer/src/block_producer.rs index 83caf5cc..50ad8055 100644 --- a/block_producer/src/block_producer.rs +++ b/block_producer/src/block_producer.rs @@ -23,7 +23,7 @@ use futures::{ use helper_functions::{accessors, misc, predicates}; use itertools::{Either, Itertools as _}; use keymanager::ProposerConfigs; -use log::{error, info, warn}; +use tracing::{error, info, warn}; use nonzero_ext::nonzero; use operation_pools::{ AttestationAggPool, BlsToExecutionChangePool, PoolAdditionOutcome, PoolRejectionReason, diff --git a/block_producer/src/eth1_storage.rs b/block_producer/src/eth1_storage.rs index e1f1ec1b..8517e767 100644 --- a/block_producer/src/eth1_storage.rs +++ b/block_producer/src/eth1_storage.rs @@ -13,7 +13,7 @@ use deposit_tree::DepositTree; use eth1::{DepositEvent, Eth1Block, Eth1Chain}; use helper_functions::misc::compute_timestamp_at_slot; use itertools::Itertools as _; -use log::{error, warn}; +use tracing::{error, warn}; use prometheus_metrics::Metrics; use ssz::ContiguousList; use thiserror::Error; From f4e4cfa078df00388e6c6bd9dcb880a8c404e153 Mon Sep 17 00:00:00 2001 From: Karrenbelt Date: Wed, 4 Sep 2024 16:26:53 +0200 Subject: [PATCH 09/31] feat: replace all log with tracing in builder_api module --- Cargo.lock | 2 +- builder_api/Cargo.toml | 2 +- builder_api/src/api.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 671381be..4c00b65a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1046,7 +1046,6 @@ dependencies = [ "helper_functions", "hex-literal", "itertools 0.13.0", - "log", "prometheus_metrics", "reqwest", "serde", @@ -1055,6 +1054,7 @@ dependencies = [ "ssz", "test-case", "thiserror", + "tracing", "typenum", "types", ] diff --git a/builder_api/Cargo.toml b/builder_api/Cargo.toml index acd4f9cc..2b9ebc2d 100644 --- a/builder_api/Cargo.toml +++ b/builder_api/Cargo.toml @@ -14,13 +14,13 @@ derive_more = { workspace = true } helper_functions = { workspace = true } hex-literal = { workspace = true } itertools = { workspace = true } -log = { workspace = true } prometheus_metrics = { workspace = true } reqwest = { workspace = true } serde = { workspace = true } serde_utils = { workspace = true } ssz = { workspace = true } thiserror = { workspace = true } +tracing = { workspace = true } typenum = { workspace = true } types = { workspace = true } diff --git a/builder_api/src/api.rs b/builder_api/src/api.rs index 75ec3012..03aaf68c 100644 --- a/builder_api/src/api.rs +++ b/builder_api/src/api.rs @@ -6,7 +6,7 @@ use bls::PublicKeyBytes; use derive_more::Constructor; use helper_functions::signing::SignForAllForks; use itertools::Itertools as _; -use log::{debug, info}; +use tracing::{debug, info}; use prometheus_metrics::Metrics; use reqwest::{Client, Response, StatusCode, Url}; use ssz::SszHash as _; From 8ccce1c14edf2ff1b18aa46cba74f12651b4dd01 Mon Sep 17 00:00:00 2001 From: Karrenbelt Date: Wed, 4 Sep 2024 16:29:36 +0200 Subject: [PATCH 10/31] feat: replace all log with tracing in database module --- Cargo.lock | 2 +- database/Cargo.toml | 2 +- database/src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4c00b65a..aac38815 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1710,7 +1710,6 @@ dependencies = [ "fs-err", "im", "itertools 0.13.0", - "log", "reth-libmdbx", "snap", "std_ext", @@ -1718,6 +1717,7 @@ dependencies = [ "tempfile", "test-case", "thiserror", + "tracing", "unwrap_none", ] diff --git a/database/Cargo.toml b/database/Cargo.toml index b08f2c1e..ada89495 100644 --- a/database/Cargo.toml +++ b/database/Cargo.toml @@ -13,11 +13,11 @@ fs-err = { workspace = true } im = { workspace = true } itertools = { workspace = true } libmdbx = { workspace = true } -log = { workspace = true } snap = { workspace = true } std_ext = { workspace = true } tap = { workspace = true } thiserror = { workspace = true } +tracing = { workspace = true } unwrap_none = { workspace = true } [dev-dependencies] diff --git a/database/src/lib.rs b/database/src/lib.rs index 54eace92..7c65bfd6 100644 --- a/database/src/lib.rs +++ b/database/src/lib.rs @@ -10,7 +10,7 @@ use bytesize::ByteSize; use im::OrdMap; use itertools::Either; use libmdbx::{DatabaseFlags, Environment, Geometry, WriteFlags}; -use log::info; +use tracing::info; use snap::raw::{Decoder, Encoder}; use std_ext::ArcExt as _; use tap::Pipe as _; From 69f3fd58a51cfbf65a9c0a63574a5c5eebf230bd Mon Sep 17 00:00:00 2001 From: Karrenbelt Date: Wed, 4 Sep 2024 16:40:40 +0200 Subject: [PATCH 11/31] feat: replace all log with tracing in eth1 module --- Cargo.lock | 2 +- eth1/Cargo.toml | 2 +- eth1/src/download_manager.rs | 2 +- eth1/src/eth1_chain.rs | 2 +- eth1/src/genesis.rs | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index aac38815..1ece93d0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2253,7 +2253,6 @@ dependencies = [ "futures", "genesis", "itertools 0.13.0", - "log", "prometheus_metrics", "reqwest", "ssz", @@ -2261,6 +2260,7 @@ dependencies = [ "thiserror", "tokio", "tokio-stream", + "tracing", "tynm", "types", "url", diff --git a/eth1/Cargo.toml b/eth1/Cargo.toml index f1a48c48..31ae8d81 100644 --- a/eth1/Cargo.toml +++ b/eth1/Cargo.toml @@ -17,7 +17,6 @@ fs-err = { workspace = true } futures = { workspace = true } genesis = { workspace = true } itertools = { workspace = true } -log = { workspace = true } prometheus_metrics = { workspace = true } reqwest = { workspace = true } ssz = { workspace = true } @@ -25,6 +24,7 @@ std_ext = { workspace = true } thiserror = { workspace = true } tokio = { workspace = true } tokio-stream = { workspace = true } +tracing = { workspace = true } tynm = { workspace = true } types = { workspace = true } url = { workspace = true } diff --git a/eth1/src/download_manager.rs b/eth1/src/download_manager.rs index da5f8778..fe8a87e7 100644 --- a/eth1/src/download_manager.rs +++ b/eth1/src/download_manager.rs @@ -3,7 +3,7 @@ use std::sync::Arc; use anyhow::{Context as _, Result}; use eth1_api::{Eth1Api, Eth1ApiToMetrics, Eth1Block}; use futures::channel::mpsc::UnboundedSender; -use log::{info, warn}; +use tracing::{info, warn}; use prometheus_metrics::Metrics; use reqwest::Client; use std_ext::ArcExt as _; diff --git a/eth1/src/eth1_chain.rs b/eth1/src/eth1_chain.rs index b328f896..462a97f6 100644 --- a/eth1/src/eth1_chain.rs +++ b/eth1/src/eth1_chain.rs @@ -8,7 +8,7 @@ use futures::{ channel::mpsc::UnboundedSender, stream::{Stream, TryStreamExt as _}, }; -use log::{error, info}; +use tracing::{error, info}; use prometheus_metrics::Metrics; use reqwest::Client; use std_ext::ArcExt as _; diff --git a/eth1/src/genesis.rs b/eth1/src/genesis.rs index f515044d..86cc232a 100644 --- a/eth1/src/genesis.rs +++ b/eth1/src/genesis.rs @@ -5,7 +5,7 @@ use chrono::{Local, TimeZone as _}; use eth1_api::{DepositEvent, Eth1Block}; use futures::stream::{Stream, TryStreamExt as _}; use genesis::Incremental; -use log::info; +use tracing::info; use ssz::{SszRead as _, SszWrite as _}; use thiserror::Error; use types::{ From bc412e24035efccb367156c19557a3021eb7a91f Mon Sep 17 00:00:00 2001 From: Karrenbelt Date: Wed, 4 Sep 2024 16:42:58 +0200 Subject: [PATCH 12/31] feat: replace all log with tracing in eth1_api module --- Cargo.lock | 2 +- eth1_api/Cargo.toml | 2 +- eth1_api/src/eth1_api.rs | 2 +- eth1_api/src/eth1_execution_engine.rs | 2 +- eth1_api/src/execution_service.rs | 2 +- eth1_api/src/messages.rs | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1ece93d0..458df680 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2285,7 +2285,6 @@ dependencies = [ "hex-literal", "httpmock", "jwt-simple", - "log", "memoffset", "panics", "prometheus_metrics", @@ -2299,6 +2298,7 @@ dependencies = [ "test-case", "thiserror", "tokio", + "tracing", "typenum", "types", "unwrap_none", diff --git a/eth1_api/Cargo.toml b/eth1_api/Cargo.toml index 6431d57a..71deffa0 100644 --- a/eth1_api/Cargo.toml +++ b/eth1_api/Cargo.toml @@ -21,7 +21,6 @@ futures = { workspace = true } hex = { workspace = true } hex-literal = { workspace = true } jwt-simple = { workspace = true } -log = { workspace = true } memoffset = { workspace = true } panics = { workspace = true } prometheus_metrics = { workspace = true } @@ -33,6 +32,7 @@ static_assertions = { workspace = true } std_ext = { workspace = true } thiserror = { workspace = true } tokio = { workspace = true } +tracing = { workspace = true } typenum = { workspace = true } types = { workspace = true } web3 = { workspace = true } diff --git a/eth1_api/src/eth1_api.rs b/eth1_api/src/eth1_api.rs index 476b7c3c..de9acdb6 100644 --- a/eth1_api/src/eth1_api.rs +++ b/eth1_api/src/eth1_api.rs @@ -11,7 +11,7 @@ use execution_engine::{ ForkChoiceUpdatedResponse, PayloadAttributes, PayloadId, PayloadStatusV1, }; use futures::{channel::mpsc::UnboundedSender, lock::Mutex, Future}; -use log::warn; +use tracing::warn; use prometheus_metrics::Metrics; use reqwest::{header::HeaderMap, Client, Url}; use serde::{de::DeserializeOwned, Deserialize}; diff --git a/eth1_api/src/eth1_execution_engine.rs b/eth1_api/src/eth1_execution_engine.rs index c07390c1..0df9d8aa 100644 --- a/eth1_api/src/eth1_execution_engine.rs +++ b/eth1_api/src/eth1_execution_engine.rs @@ -5,7 +5,7 @@ use derive_more::Constructor; use either::Either; use execution_engine::{ExecutionEngine, PayloadAttributes, PayloadId, PayloadStatusV1}; use futures::channel::{mpsc::UnboundedSender, oneshot::Sender}; -use log::{info, warn}; +use tracing::{info, warn}; use tokio::runtime::{Builder, Handle}; use types::{ combined::{ExecutionPayload, ExecutionPayloadParams}, diff --git a/eth1_api/src/execution_service.rs b/eth1_api/src/execution_service.rs index 0827d89e..c77425de 100644 --- a/eth1_api/src/execution_service.rs +++ b/eth1_api/src/execution_service.rs @@ -6,7 +6,7 @@ use either::Either; use execution_engine::{ForkChoiceUpdatedResponse, PayloadAttributes, PayloadStatusV1}; use fork_choice_control::Wait; use futures::{channel::mpsc::UnboundedReceiver, StreamExt as _}; -use log::warn; +use tracing::warn; use types::{ combined::{ExecutionPayload, ExecutionPayloadParams}, nonstandard::Phase, diff --git a/eth1_api/src/messages.rs b/eth1_api/src/messages.rs index 02f02764..da433efd 100644 --- a/eth1_api/src/messages.rs +++ b/eth1_api/src/messages.rs @@ -2,7 +2,7 @@ use anyhow::Result; use either::Either; use execution_engine::{PayloadAttributes, PayloadId, PayloadStatusV1}; use futures::channel::{mpsc::UnboundedSender, oneshot::Sender}; -use log::debug; +use tracing::debug; use types::{ combined::{ExecutionPayload, ExecutionPayloadParams}, nonstandard::Phase, From a84660cf869c9401c513c35d9fee43e03290a488 Mon Sep 17 00:00:00 2001 From: Karrenbelt Date: Wed, 4 Sep 2024 17:17:32 +0200 Subject: [PATCH 13/31] feat: replace all log with tracing in fork_choice_control module --- Cargo.lock | 2 +- fork_choice_control/Cargo.toml | 2 +- fork_choice_control/src/checkpoint_sync.rs | 2 +- fork_choice_control/src/messages.rs | 2 +- fork_choice_control/src/mutator.rs | 2 +- fork_choice_control/src/storage.rs | 2 +- fork_choice_control/src/storage_back_sync.rs | 2 +- fork_choice_control/src/storage_tool.rs | 2 +- fork_choice_control/src/tasks.rs | 2 +- fork_choice_control/src/thread_pool.rs | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 458df680..0de4f157 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2620,7 +2620,6 @@ dependencies = [ "helper_functions", "http_api_utils", "itertools 0.13.0", - "log", "mime", "nonzero_ext", "num_cpus", @@ -2639,6 +2638,7 @@ dependencies = [ "tap", "test-generator", "thiserror", + "tracing", "transition_functions", "tynm", "types", diff --git a/fork_choice_control/Cargo.toml b/fork_choice_control/Cargo.toml index 0f12d8d2..4b706869 100644 --- a/fork_choice_control/Cargo.toml +++ b/fork_choice_control/Cargo.toml @@ -26,7 +26,6 @@ genesis = { workspace = true } helper_functions = { workspace = true } http_api_utils = { workspace = true } itertools = { workspace = true } -log = { workspace = true } mime = { workspace = true } nonzero_ext = { workspace = true } num_cpus = { workspace = true } @@ -42,6 +41,7 @@ std_ext = { workspace = true } strum = { workspace = true } tap = { workspace = true } thiserror = { workspace = true } +tracing = { workspace = true } transition_functions = { workspace = true } tynm = { workspace = true } types = { workspace = true } diff --git a/fork_choice_control/src/checkpoint_sync.rs b/fork_choice_control/src/checkpoint_sync.rs index 3957dacc..b35bffa6 100644 --- a/fork_choice_control/src/checkpoint_sync.rs +++ b/fork_choice_control/src/checkpoint_sync.rs @@ -4,7 +4,7 @@ use std::sync::Arc; use anyhow::{bail, Result}; use helper_functions::misc; use http_api_utils::{BlockId, StateId}; -use log::info; +use tracing::info; use mime::APPLICATION_OCTET_STREAM; use reqwest::{header::ACCEPT, Client, StatusCode, Url}; use ssz::SszRead; diff --git a/fork_choice_control/src/messages.rs b/fork_choice_control/src/messages.rs index 5dbd459c..65e14532 100644 --- a/fork_choice_control/src/messages.rs +++ b/fork_choice_control/src/messages.rs @@ -13,7 +13,7 @@ use fork_choice_store::{ ChainLink, Store, }; use helper_functions::{accessors, misc}; -use log::debug; +use tracing::debug; use serde::Serialize; use tap::Pipe as _; use types::{ diff --git a/fork_choice_control/src/mutator.rs b/fork_choice_control/src/mutator.rs index ea781c8d..41a13432 100644 --- a/fork_choice_control/src/mutator.rs +++ b/fork_choice_control/src/mutator.rs @@ -39,7 +39,7 @@ use fork_choice_store::{ use futures::channel::{mpsc::Sender as MultiSender, oneshot::Sender as OneshotSender}; use helper_functions::{accessors, misc, predicates, verifier::NullVerifier}; use itertools::{Either, Itertools as _}; -use log::{debug, error, info, warn}; +use tracing::{debug, error, info, warn}; use prometheus_metrics::Metrics; use ssz::SszHash as _; use std_ext::ArcExt as _; diff --git a/fork_choice_control/src/storage.rs b/fork_choice_control/src/storage.rs index e3f76670..91f92fc8 100644 --- a/fork_choice_control/src/storage.rs +++ b/fork_choice_control/src/storage.rs @@ -9,7 +9,7 @@ use fork_choice_store::{ChainLink, Store}; use genesis::AnchorCheckpointProvider; use helper_functions::{accessors, misc}; use itertools::Itertools as _; -use log::{debug, info, warn}; +use tracing::{debug, info, warn}; use nonzero_ext::nonzero; use reqwest::{Client, Url}; use ssz::{Ssz, SszRead, SszReadDefault as _, SszWrite}; diff --git a/fork_choice_control/src/storage_back_sync.rs b/fork_choice_control/src/storage_back_sync.rs index 28681161..560b11e2 100644 --- a/fork_choice_control/src/storage_back_sync.rs +++ b/fork_choice_control/src/storage_back_sync.rs @@ -5,7 +5,7 @@ use arithmetic::U64Ext as _; use features::Feature; use genesis::AnchorCheckpointProvider; use helper_functions::misc; -use log::{info, warn}; +use tracing::{info, warn}; use ssz::SszHash as _; use std_ext::ArcExt as _; use transition_functions::combined; diff --git a/fork_choice_control/src/storage_tool.rs b/fork_choice_control/src/storage_tool.rs index 549bed87..6df66e2f 100644 --- a/fork_choice_control/src/storage_tool.rs +++ b/fork_choice_control/src/storage_tool.rs @@ -2,7 +2,7 @@ use std::path::{Path, PathBuf}; use anyhow::Result; use genesis::AnchorCheckpointProvider; -use log::info; +use tracing::info; use ssz::{SszHash as _, SszRead, SszWrite as _}; use std_ext::ArcExt as _; use thiserror::Error; diff --git a/fork_choice_control/src/tasks.rs b/fork_choice_control/src/tasks.rs index 35292c5e..812d977a 100644 --- a/fork_choice_control/src/tasks.rs +++ b/fork_choice_control/src/tasks.rs @@ -17,7 +17,7 @@ use helper_functions::{ accessors, misc, verifier::{MultiVerifier, NullVerifier}, }; -use log::{debug, warn}; +use tracing::{debug, warn}; use prometheus_metrics::Metrics; use types::{ combined::SignedBeaconBlock, diff --git a/fork_choice_control/src/thread_pool.rs b/fork_choice_control/src/thread_pool.rs index f091cc2f..3a6cbd4c 100644 --- a/fork_choice_control/src/thread_pool.rs +++ b/fork_choice_control/src/thread_pool.rs @@ -17,7 +17,7 @@ use anyhow::Result; use derivative::Derivative; use derive_more::From; use execution_engine::ExecutionEngine; -use log::debug; +use tracing::debug; use parking_lot::{Condvar, Mutex}; use std_ext::ArcExt as _; use types::preset::Preset; From 50af7a764c2eaca64b0d5465c47c2c5865405d57 Mon Sep 17 00:00:00 2001 From: Karrenbelt Date: Wed, 4 Sep 2024 17:34:36 +0200 Subject: [PATCH 14/31] feat: replace all log with tracing in http_api module --- Cargo.lock | 2 +- http_api/Cargo.toml | 2 +- http_api/src/standard.rs | 2 +- http_api/src/task.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0de4f157..5ce7e3c8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3550,7 +3550,6 @@ dependencies = [ "itertools 0.13.0", "keymanager", "liveness_tracker", - "log", "mediatype", "metrics", "mime", @@ -3582,6 +3581,7 @@ dependencies = [ "tokio", "tokio-stream", "tower-http", + "tracing", "transition_functions", "try_from_iterator", "typenum", diff --git a/http_api/Cargo.toml b/http_api/Cargo.toml index bcf7d6a2..4df98e00 100644 --- a/http_api/Cargo.toml +++ b/http_api/Cargo.toml @@ -26,7 +26,6 @@ helper_functions = { workspace = true } http_api_utils = { workspace = true } itertools = { workspace = true } liveness_tracker = { workspace = true } -log = { workspace = true } mediatype = { workspace = true } metrics = { workspace = true } mime = { workspace = true } @@ -49,6 +48,7 @@ thiserror = { workspace = true } tokio = { workspace = true } tokio-stream = { workspace = true } tower-http = { workspace = true } +tracing = { workspace = true } transition_functions = { workspace = true } try_from_iterator = { workspace = true } typenum = { workspace = true } diff --git a/http_api/src/standard.rs b/http_api/src/standard.rs index f39d9d82..e46d36ff 100644 --- a/http_api/src/standard.rs +++ b/http_api/src/standard.rs @@ -33,7 +33,7 @@ use helper_functions::{accessors, misc}; use http_api_utils::{BlockId, StateId}; use itertools::{izip, Either, Itertools as _}; use liveness_tracker::ApiToLiveness; -use log::{debug, info, warn}; +use tracing::{debug, info, warn}; use operation_pools::{ AttestationAggPool, BlsToExecutionChangePool, Origin, PoolAdditionOutcome, SyncCommitteeAggPool, }; diff --git a/http_api/src/task.rs b/http_api/src/task.rs index 42078ac0..ed5ba7c5 100644 --- a/http_api/src/task.rs +++ b/http_api/src/task.rs @@ -16,7 +16,7 @@ use futures::{ use genesis::AnchorCheckpointProvider; use http_api_utils::ApiMetrics; use liveness_tracker::ApiToLiveness; -use log::{debug, info}; +use tracing::{debug, info}; use metrics::ApiToMetrics; use operation_pools::{ AttestationAggPool, BlsToExecutionChangePool, PoolToApiMessage, SyncCommitteeAggPool, From 0b63a361ee2c04d6a8c4177f1ad5972617add2b0 Mon Sep 17 00:00:00 2001 From: Karrenbelt Date: Wed, 4 Sep 2024 17:38:26 +0200 Subject: [PATCH 15/31] feat: replace all log with tracing in http_api_utils module --- Cargo.lock | 1 - http_api_utils/Cargo.toml | 1 - http_api_utils/src/logging.rs | 2 +- http_api_utils/src/middleware.rs | 2 +- 4 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5ce7e3c8..41693075 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3600,7 +3600,6 @@ dependencies = [ "hex-literal", "http-body-util", "itertools 0.13.0", - "log", "mime", "parse-display", "prometheus_metrics", diff --git a/http_api_utils/Cargo.toml b/http_api_utils/Cargo.toml index dae1daba..c785016f 100644 --- a/http_api_utils/Cargo.toml +++ b/http_api_utils/Cargo.toml @@ -12,7 +12,6 @@ axum = { workspace = true } features = { workspace = true } http-body-util = { workspace = true } itertools = { workspace = true } -log = { workspace = true } mime = { workspace = true } parse-display = { workspace = true } prometheus_metrics = { workspace = true } diff --git a/http_api_utils/src/logging.rs b/http_api_utils/src/logging.rs index 4fa94028..7e7dd2ad 100644 --- a/http_api_utils/src/logging.rs +++ b/http_api_utils/src/logging.rs @@ -8,7 +8,7 @@ use axum::{ response::Response, }; use features::Feature; -use log::{info, warn}; +use tracing::{info, warn}; use tracing::Span; use crate::{misc::ApiMetrics, ApiError}; diff --git a/http_api_utils/src/middleware.rs b/http_api_utils/src/middleware.rs index 810d3a6f..2374f9aa 100644 --- a/http_api_utils/src/middleware.rs +++ b/http_api_utils/src/middleware.rs @@ -13,7 +13,7 @@ use axum::{ Extension, }; use http_body_util::BodyExt as _; -use log::info; +use tracing::info; use mime::{APPLICATION_JSON, TEXT_EVENT_STREAM}; use crate::{error::Error, misc::Direction}; From 27229c59bf9185bfcd2e24b13f4ca0a41658fa74 Mon Sep 17 00:00:00 2001 From: Karrenbelt Date: Wed, 4 Sep 2024 17:42:04 +0200 Subject: [PATCH 16/31] feat: replace all log with tracing in keymanager module --- Cargo.lock | 2 +- keymanager/Cargo.toml | 2 +- keymanager/src/keystores.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 41693075..f326fa58 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4305,7 +4305,6 @@ dependencies = [ "futures", "hex-literal", "itertools 0.13.0", - "log", "reqwest", "serde", "serde_json", @@ -4316,6 +4315,7 @@ dependencies = [ "tempfile", "thiserror", "tokio", + "tracing", "types", "uuid", "validator_key_cache", diff --git a/keymanager/Cargo.toml b/keymanager/Cargo.toml index 35ec2189..798a8861 100644 --- a/keymanager/Cargo.toml +++ b/keymanager/Cargo.toml @@ -15,7 +15,6 @@ eip_2335 = { workspace = true } fs-err = { workspace = true } futures = { workspace = true } itertools = { workspace = true } -log = { workspace = true } reqwest = { workspace = true } serde = { workspace = true } serde_json = { workspace = true } @@ -25,6 +24,7 @@ std_ext = { workspace = true } tap = { workspace = true } thiserror = { workspace = true } tokio = { workspace = true } +tracing = { workspace = true } types = { workspace = true } uuid = { workspace = true } validator_key_cache = { workspace = true } diff --git a/keymanager/src/keystores.rs b/keymanager/src/keystores.rs index 626ee9b6..878aad05 100644 --- a/keymanager/src/keystores.rs +++ b/keymanager/src/keystores.rs @@ -9,7 +9,7 @@ use bls::{PublicKeyBytes, SecretKey}; use eip_2335::Keystore; use futures::lock::{MappedMutexGuard, Mutex, MutexGuard}; use itertools::Itertools as _; -use log::{info, warn}; +use tracing::{info, warn}; use serde::Serialize; use signer::{KeyOrigin, Signer}; use slashing_protection::{interchange_format::InterchangeFormat, SlashingProtector}; From 682d74f908039c6a8fd1e390c6215bb52c9a3dc5 Mon Sep 17 00:00:00 2001 From: Karrenbelt Date: Wed, 4 Sep 2024 19:27:07 +0200 Subject: [PATCH 17/31] feat: replace all log with tracing in liveness_tracker module --- Cargo.lock | 2 +- liveness_tracker/Cargo.toml | 2 +- liveness_tracker/src/lib.rs | 2 +- liveness_tracker/src/messages.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f326fa58..2033eb70 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4991,9 +4991,9 @@ dependencies = [ "futures", "helper_functions", "itertools 0.13.0", - "log", "operation_pools", "prometheus_metrics", + "tracing", "tynm", "types", "validator", diff --git a/liveness_tracker/Cargo.toml b/liveness_tracker/Cargo.toml index 7bf0d410..b0445e32 100644 --- a/liveness_tracker/Cargo.toml +++ b/liveness_tracker/Cargo.toml @@ -14,9 +14,9 @@ fork_choice_control = { workspace = true } futures = { workspace = true } helper_functions = { workspace = true } itertools = { workspace = true } -log = { workspace = true } operation_pools = { workspace = true } prometheus_metrics = { workspace = true } +tracing = { workspace = true } tynm = { workspace = true } types = { workspace = true } validator = { workspace = true } diff --git a/liveness_tracker/src/lib.rs b/liveness_tracker/src/lib.rs index 71e0e31c..84b636ab 100644 --- a/liveness_tracker/src/lib.rs +++ b/liveness_tracker/src/lib.rs @@ -7,7 +7,7 @@ use fork_choice_control::Wait; use futures::{channel::mpsc::UnboundedReceiver, select, StreamExt as _}; use helper_functions::{accessors, misc}; use itertools::Itertools as _; -use log::{debug, warn}; +use tracing::{debug, warn}; use operation_pools::PoolToLivenessMessage; use prometheus_metrics::Metrics; use types::{ diff --git a/liveness_tracker/src/messages.rs b/liveness_tracker/src/messages.rs index 7be12ed0..f97a918c 100644 --- a/liveness_tracker/src/messages.rs +++ b/liveness_tracker/src/messages.rs @@ -1,6 +1,6 @@ use anyhow::Result; use futures::channel::{mpsc::UnboundedSender, oneshot::Sender}; -use log::debug; +use tracing::debug; use types::phase0::primitives::{Epoch, ValidatorIndex}; pub enum ApiToLiveness { From afb5bcb83d630d1d8c4722da228eb6e1744fcc97 Mon Sep 17 00:00:00 2001 From: Karrenbelt Date: Wed, 4 Sep 2024 19:32:49 +0200 Subject: [PATCH 18/31] feat: replace all log with tracing in metrics module --- Cargo.lock | 2 +- metrics/Cargo.toml | 2 +- metrics/src/beaconchain.rs | 2 +- metrics/src/messages.rs | 2 +- metrics/src/server.rs | 2 +- metrics/src/service.rs | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2033eb70..ce09b4c3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5115,7 +5115,6 @@ dependencies = [ "helper_functions", "http_api_utils", "jemalloc-ctl", - "log", "num_threads", "p2p", "prometheus", @@ -5131,6 +5130,7 @@ dependencies = [ "tokio", "tokio-stream", "tower-http", + "tracing", "transition_functions", "types", ] diff --git a/metrics/Cargo.toml b/metrics/Cargo.toml index 69be48e3..340d28da 100644 --- a/metrics/Cargo.toml +++ b/metrics/Cargo.toml @@ -21,7 +21,6 @@ grandine_version = { workspace = true } helper_functions = { workspace = true } http_api_utils = { workspace = true } jemalloc-ctl = { workspace = true } -log = { workspace = true } num_threads = { workspace = true } p2p = { workspace = true } prometheus = { workspace = true } @@ -37,6 +36,7 @@ thiserror = { workspace = true } tokio = { workspace = true } tokio-stream = { workspace = true } tower-http = { workspace = true } +tracing = { workspace = true } transition_functions = { workspace = true } types = { workspace = true } diff --git a/metrics/src/beaconchain.rs b/metrics/src/beaconchain.rs index 4d2a3cc0..f3a590e3 100644 --- a/metrics/src/beaconchain.rs +++ b/metrics/src/beaconchain.rs @@ -12,7 +12,7 @@ use chrono::DateTime; use eth1_api::{Eth1ConnectionData, Eth1Metrics}; use grandine_version::{APPLICATION_NAME, APPLICATION_VERSION}; use helper_functions::{accessors, predicates}; -use log::warn; +use tracing::warn; use p2p::metrics::PEERS_CONNECTED; use prometheus::IntGauge; use psutil::{cpu::CpuTimes, process::Process}; diff --git a/metrics/src/messages.rs b/metrics/src/messages.rs index f5a1c6f2..6c858df6 100644 --- a/metrics/src/messages.rs +++ b/metrics/src/messages.rs @@ -1,6 +1,6 @@ use anyhow::Result; use futures::channel::{mpsc::UnboundedSender, oneshot::Sender}; -use log::debug; +use tracing::debug; use types::nonstandard::SystemStats; pub enum ApiToMetrics { diff --git a/metrics/src/server.rs b/metrics/src/server.rs index 85f6f8ef..ee089e22 100644 --- a/metrics/src/server.rs +++ b/metrics/src/server.rs @@ -21,7 +21,7 @@ use fork_choice_control::Wait; use futures::channel::mpsc::UnboundedSender; use helper_functions::misc; use http_api_utils::ApiError; -use log::{info, warn}; +use tracing::{info, warn}; use prometheus::TextEncoder; use prometheus_client::registry::Registry; use prometheus_metrics::Metrics; diff --git a/metrics/src/service.rs b/metrics/src/service.rs index 87315612..edf011d0 100644 --- a/metrics/src/service.rs +++ b/metrics/src/service.rs @@ -6,7 +6,7 @@ use bls::PublicKeyBytes; use directories::Directories; use eth1_api::{Eth1ApiToMetrics, Eth1Metrics, RealController}; use futures::{channel::mpsc::UnboundedReceiver, future::Either, select, StreamExt as _}; -use log::{debug, info, warn}; +use tracing::{debug, info, warn}; use p2p::SyncToMetrics; use reqwest::{Client, StatusCode, Url}; use serde::Deserialize; From dbd466dff37005ce0fd9e570bb96859c22dd030f Mon Sep 17 00:00:00 2001 From: Karrenbelt Date: Wed, 4 Sep 2024 19:35:52 +0200 Subject: [PATCH 19/31] feat: replace all log with tracing in operation_pools module --- Cargo.lock | 4 ++-- operation_pools/Cargo.toml | 2 +- operation_pools/src/bls_to_execution_change_pool.rs | 2 +- operation_pools/src/messages.rs | 2 +- operation_pools/src/sync_committee_agg_pool/pool.rs | 2 +- operation_pools/src/sync_committee_agg_pool/tasks.rs | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ce09b4c3..71470e86 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5565,7 +5565,6 @@ dependencies = [ "good_lp", "helper_functions", "itertools 0.13.0", - "log", "prometheus_metrics", "rayon", "serde", @@ -5574,6 +5573,7 @@ dependencies = [ "strum", "tap", "tokio", + "tracing", "transition_functions", "try_from_iterator", "tynm", @@ -5626,7 +5626,6 @@ dependencies = [ "helper_functions", "igd-next", "itertools 0.13.0", - "log", "logging", "operation_pools", "prometheus-client", @@ -5644,6 +5643,7 @@ dependencies = [ "thiserror", "tokio", "tokio-stream", + "tracing", "tynm", "typenum", "types", diff --git a/operation_pools/Cargo.toml b/operation_pools/Cargo.toml index cc819cee..cc02e88f 100644 --- a/operation_pools/Cargo.toml +++ b/operation_pools/Cargo.toml @@ -21,7 +21,6 @@ futures = { workspace = true } good_lp = { workspace = true } helper_functions = { workspace = true } itertools = { workspace = true } -log = { workspace = true } prometheus_metrics = { workspace = true } rayon = { workspace = true } serde = { workspace = true } @@ -30,6 +29,7 @@ std_ext = { workspace = true } strum = { workspace = true } tap = { workspace = true } tokio = { workspace = true } +tracing = { workspace = true } transition_functions = { workspace = true } try_from_iterator = { workspace = true } tynm = { workspace = true } diff --git a/operation_pools/src/bls_to_execution_change_pool.rs b/operation_pools/src/bls_to_execution_change_pool.rs index 98cb7028..f52effeb 100644 --- a/operation_pools/src/bls_to_execution_change_pool.rs +++ b/operation_pools/src/bls_to_execution_change_pool.rs @@ -12,7 +12,7 @@ use futures::{ }; use helper_functions::predicates; use itertools::Itertools as _; -use log::{debug, warn}; +use tracing::{debug, warn}; use prometheus_metrics::Metrics; use transition_functions::capella; use types::{ diff --git a/operation_pools/src/messages.rs b/operation_pools/src/messages.rs index aa82fd37..121a30e8 100644 --- a/operation_pools/src/messages.rs +++ b/operation_pools/src/messages.rs @@ -1,6 +1,6 @@ use eth2_libp2p::GossipId; use futures::channel::mpsc::UnboundedSender; -use log::debug; +use tracing::debug; use serde::Serialize; use types::{ altair::containers::SyncCommitteeMessage, capella::containers::SignedBlsToExecutionChange, diff --git a/operation_pools/src/sync_committee_agg_pool/pool.rs b/operation_pools/src/sync_committee_agg_pool/pool.rs index 68e51f59..1bb15ebd 100644 --- a/operation_pools/src/sync_committee_agg_pool/pool.rs +++ b/operation_pools/src/sync_committee_agg_pool/pool.rs @@ -3,7 +3,7 @@ use std::{collections::HashSet, sync::Arc}; use anyhow::{anyhow, Result}; use helper_functions::accessors; use itertools::Itertools as _; -use log::debug; +use tracing::debug; use prometheus_metrics::Metrics; use std_ext::ArcExt as _; use tokio::sync::RwLock; diff --git a/operation_pools/src/sync_committee_agg_pool/tasks.rs b/operation_pools/src/sync_committee_agg_pool/tasks.rs index c69517eb..b9f2edef 100644 --- a/operation_pools/src/sync_committee_agg_pool/tasks.rs +++ b/operation_pools/src/sync_committee_agg_pool/tasks.rs @@ -11,7 +11,7 @@ use helper_functions::{ signing::{SignForSingleFork as _, SignForSingleForkAtSlot as _}, verifier::{MultiVerifier, Verifier as _}, }; -use log::{debug, warn}; +use tracing::{debug, warn}; use prometheus_metrics::Metrics; use typenum::Unsigned as _; use types::{ From 34dd77d685456c1b29c52c7e91373a4f4ddc5c3f Mon Sep 17 00:00:00 2001 From: Karrenbelt Date: Wed, 4 Sep 2024 21:10:56 +0200 Subject: [PATCH 20/31] feat: replace all log with tracing in prometheus_metrics module --- Cargo.lock | 4 ++-- prometheus_metrics/Cargo.toml | 2 +- prometheus_metrics/src/helpers.rs | 2 +- prometheus_metrics/src/metrics.rs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 71470e86..79bfbf1e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5626,6 +5626,7 @@ dependencies = [ "helper_functions", "igd-next", "itertools 0.13.0", + "log", "logging", "operation_pools", "prometheus-client", @@ -5643,7 +5644,6 @@ dependencies = [ "thiserror", "tokio", "tokio-stream", - "tracing", "tynm", "typenum", "types", @@ -6191,11 +6191,11 @@ dependencies = [ "anyhow", "features", "futures", - "log", "once_cell", "prometheus", "tokio", "tokio-stream", + "tracing", "types", ] diff --git a/prometheus_metrics/Cargo.toml b/prometheus_metrics/Cargo.toml index 5aff72e8..c765aeed 100644 --- a/prometheus_metrics/Cargo.toml +++ b/prometheus_metrics/Cargo.toml @@ -8,9 +8,9 @@ authors = ["Grandine "] anyhow = { workspace = true } features = { workspace = true } futures = { workspace = true } -log = { workspace = true } once_cell = { workspace = true } prometheus = { workspace = true } tokio = { workspace = true } tokio-stream = { workspace = true } +tracing = { workspace = true } types = { workspace = true } diff --git a/prometheus_metrics/src/helpers.rs b/prometheus_metrics/src/helpers.rs index b0cd16b7..3476ad70 100644 --- a/prometheus_metrics/src/helpers.rs +++ b/prometheus_metrics/src/helpers.rs @@ -1,7 +1,7 @@ use std::time::{Duration, SystemTime}; use anyhow::Result; -use log::warn; +use tracing::warn; use prometheus::{Histogram, HistogramTimer, HistogramVec}; use types::phase0::primitives::UnixSeconds; diff --git a/prometheus_metrics/src/metrics.rs b/prometheus_metrics/src/metrics.rs index 1e5e1965..33ac364f 100644 --- a/prometheus_metrics/src/metrics.rs +++ b/prometheus_metrics/src/metrics.rs @@ -2,7 +2,7 @@ use core::time::Duration; use std::sync::Arc; use anyhow::Result; -use log::warn; +use tracing::warn; use once_cell::sync::OnceCell; use prometheus::{ histogram_opts, opts, Gauge, GaugeVec, Histogram, HistogramVec, IntCounter, IntCounterVec, From 5fb013da5e0c389c630961b07a897aa16ab9baa6 Mon Sep 17 00:00:00 2001 From: Karrenbelt Date: Wed, 4 Sep 2024 21:19:28 +0200 Subject: [PATCH 21/31] feat: replace all log with tracing in runtime module --- Cargo.lock | 2 +- runtime/Cargo.toml | 2 +- runtime/src/runtime.rs | 2 +- runtime/src/schema.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 79bfbf1e..00884455 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6751,7 +6751,6 @@ dependencies = [ "http_api", "keymanager", "liveness_tracker", - "log", "metrics", "nonzero_ext", "num_cpus", @@ -6768,6 +6767,7 @@ dependencies = [ "std_ext", "thiserror", "tokio", + "tracing", "types", "validator", ] diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index c669dd6a..870c083f 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -27,7 +27,6 @@ grandine_version = { workspace = true } http_api = { workspace = true } keymanager = { workspace = true } liveness_tracker = { workspace = true } -log = { workspace = true } metrics = { workspace = true } nonzero_ext = { workspace = true } num_cpus = { workspace = true } @@ -44,5 +43,6 @@ slashing_protection = { workspace = true } std_ext = { workspace = true } thiserror = { workspace = true } tokio = { workspace = true } +tracing = { workspace = true } types = { workspace = true } validator = { workspace = true } diff --git a/runtime/src/runtime.rs b/runtime/src/runtime.rs index 7cca34be..8cf9c644 100644 --- a/runtime/src/runtime.rs +++ b/runtime/src/runtime.rs @@ -26,7 +26,7 @@ use genesis::AnchorCheckpointProvider; use http_api::{Channels as HttpApiChannels, HttpApi, HttpApiConfig}; use keymanager::KeyManager; use liveness_tracker::LivenessTracker; -use log::{info, warn}; +use tracing::{info, warn}; use metrics::{run_metrics_server, MetricsChannels, MetricsService}; use operation_pools::{ AttestationAggPool, BlsToExecutionChangePool, Manager, SyncCommitteeAggPool, diff --git a/runtime/src/schema.rs b/runtime/src/schema.rs index 198e1ede..325a5627 100644 --- a/runtime/src/schema.rs +++ b/runtime/src/schema.rs @@ -2,7 +2,7 @@ use std::{io::ErrorKind, path::Path}; use anyhow::{bail, ensure, Result}; use grandine_version::APPLICATION_NAME; -use log::info; +use tracing::info; use semver::{Version, VersionReq}; use serde::{Deserialize, Serialize}; use thiserror::Error; From 4bc3bc2158c07206d966463d00fff5151e1a1e68 Mon Sep 17 00:00:00 2001 From: Karrenbelt Date: Wed, 4 Sep 2024 21:22:09 +0200 Subject: [PATCH 22/31] feat: replace all log with tracing in signer module --- Cargo.lock | 2 +- signer/Cargo.toml | 2 +- signer/src/signer.rs | 2 +- signer/src/web3signer/api.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 00884455..c045e49a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7333,7 +7333,6 @@ dependencies = [ "hex-literal", "httpmock", "itertools 0.13.0", - "log", "prometheus_metrics", "rayon", "reqwest", @@ -7345,6 +7344,7 @@ dependencies = [ "std_ext", "thiserror", "tokio", + "tracing", "types", ] diff --git a/signer/Cargo.toml b/signer/Cargo.toml index 787506b7..9736a3de 100644 --- a/signer/Cargo.toml +++ b/signer/Cargo.toml @@ -14,7 +14,6 @@ builder_api = { workspace = true } futures = { workspace = true } helper_functions = { workspace = true } itertools = { workspace = true } -log = { workspace = true } prometheus_metrics = { workspace = true } rayon = { workspace = true } reqwest = { workspace = true } @@ -24,6 +23,7 @@ slashing_protection = { workspace = true } std_ext = { workspace = true } thiserror = { workspace = true } tokio = { workspace = true } +tracing = { workspace = true } types = { workspace = true } [dev-dependencies] diff --git a/signer/src/signer.rs b/signer/src/signer.rs index cd7d07eb..5446a91a 100644 --- a/signer/src/signer.rs +++ b/signer/src/signer.rs @@ -13,7 +13,7 @@ use futures::{ }; use helper_functions::misc; use itertools::{izip, Itertools as _}; -use log::{info, warn}; +use tracing::{info, warn}; use prometheus_metrics::Metrics; use rayon::iter::{IntoParallelIterator as _, ParallelIterator as _}; use reqwest::{Client, Url}; diff --git a/signer/src/web3signer/api.rs b/signer/src/web3signer/api.rs index 02978926..d6ec58fb 100644 --- a/signer/src/web3signer/api.rs +++ b/signer/src/web3signer/api.rs @@ -5,7 +5,7 @@ use std::{ use anyhow::Result; use bls::{PublicKeyBytes, SignatureBytes}; -use log::warn; +use tracing::warn; use prometheus_metrics::Metrics; use reqwest::{Client, Url}; use types::{phase0::primitives::H256, preset::Preset}; From cde29c06b1a3c2fd6d6994299a6ecf7c07caac47 Mon Sep 17 00:00:00 2001 From: Karrenbelt Date: Wed, 4 Sep 2024 21:24:04 +0200 Subject: [PATCH 23/31] feat: replace all log with tracing in slasher module --- Cargo.lock | 2 +- slasher/Cargo.toml | 2 +- slasher/src/messages.rs | 2 +- slasher/src/slasher.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c045e49a..b6515b2d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7399,11 +7399,11 @@ dependencies = [ "features", "futures", "helper_functions", - "log", "p2p", "serde", "ssz", "thiserror", + "tracing", "types", "unwrap_none", ] diff --git a/slasher/Cargo.toml b/slasher/Cargo.toml index aab5dd38..095fd74c 100644 --- a/slasher/Cargo.toml +++ b/slasher/Cargo.toml @@ -17,11 +17,11 @@ eth1_api = { workspace = true } features = { workspace = true } futures = { workspace = true } helper_functions = { workspace = true } -log = { workspace = true } p2p = { workspace = true } serde = { workspace = true } ssz = { workspace = true } thiserror = { workspace = true } +tracing = { workspace = true } types = { workspace = true } [dev-dependencies] diff --git a/slasher/src/messages.rs b/slasher/src/messages.rs index 880c48ff..b55ca361 100644 --- a/slasher/src/messages.rs +++ b/slasher/src/messages.rs @@ -1,5 +1,5 @@ use futures::channel::mpsc::UnboundedSender; -use log::warn; +use tracing::warn; use types::{ phase0::{ containers::{AttesterSlashing, ProposerSlashing}, diff --git a/slasher/src/slasher.rs b/slasher/src/slasher.rs index b0ceb702..6124437a 100644 --- a/slasher/src/slasher.rs +++ b/slasher/src/slasher.rs @@ -11,7 +11,7 @@ use futures::{ stream::StreamExt, }; use helper_functions::{accessors, misc}; -use log::{debug, info, warn}; +use tracing::{debug, info, warn}; use p2p::P2pToSlasher; use thiserror::Error; use types::{ From d8f8f7e5aa2e79fa0f03b5b990a7e71a4c3f47ff Mon Sep 17 00:00:00 2001 From: Karrenbelt Date: Wed, 4 Sep 2024 21:26:37 +0200 Subject: [PATCH 24/31] feat: replace all log with tracing in slashing_protection module --- Cargo.lock | 2 +- slashing_protection/Cargo.toml | 2 +- slashing_protection/src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b6515b2d..eaa68089 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7423,7 +7423,6 @@ dependencies = [ "helper_functions", "hex-literal", "itertools 0.13.0", - "log", "refinery", "rusqlite", "serde", @@ -7434,6 +7433,7 @@ dependencies = [ "test-case", "test-generator", "thiserror", + "tracing", "types", ] diff --git a/slashing_protection/Cargo.toml b/slashing_protection/Cargo.toml index 5752600c..8109a3b4 100644 --- a/slashing_protection/Cargo.toml +++ b/slashing_protection/Cargo.toml @@ -15,7 +15,6 @@ fs-err = { workspace = true } glob = { workspace = true } helper_functions = { workspace = true } itertools = { workspace = true } -log = { workspace = true } refinery = { workspace = true } rusqlite = { workspace = true } serde = { workspace = true } @@ -23,6 +22,7 @@ serde_json = { workspace = true } serde_utils = { workspace = true } ssz = { workspace = true } thiserror = { workspace = true } +tracing = { workspace = true } types = { workspace = true } [dev-dependencies] diff --git a/slashing_protection/src/lib.rs b/slashing_protection/src/lib.rs index 3a456536..1e016b07 100644 --- a/slashing_protection/src/lib.rs +++ b/slashing_protection/src/lib.rs @@ -7,7 +7,7 @@ use derivative::Derivative; use fs_err::File; use helper_functions::{accessors, misc}; use itertools::Itertools as _; -use log::{debug, info, warn}; +use tracing::{debug, info, warn}; use rusqlite::{Connection, OptionalExtension, Rows, Transaction, TransactionBehavior}; use ssz::{SszReadDefault as _, SszWrite as _}; use thiserror::Error; From 99390a4b0e86593e21ddaaaaf8d88efedea8f0b8 Mon Sep 17 00:00:00 2001 From: Karrenbelt Date: Wed, 4 Sep 2024 21:28:36 +0200 Subject: [PATCH 25/31] feat: replace all log with tracing in state_cache module --- Cargo.lock | 2 +- state_cache/Cargo.toml | 2 +- state_cache/src/state_cache.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index eaa68089..5e94a025 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7674,11 +7674,11 @@ version = "0.1.0" dependencies = [ "anyhow", "im", - "log", "parking_lot 0.12.3", "std_ext", "tap", "thiserror", + "tracing", "types", ] diff --git a/state_cache/Cargo.toml b/state_cache/Cargo.toml index 5cca36f1..c3793c9b 100644 --- a/state_cache/Cargo.toml +++ b/state_cache/Cargo.toml @@ -10,9 +10,9 @@ workspace = true [dependencies] anyhow = { workspace = true } im = { workspace = true } -log = { workspace = true } parking_lot = { workspace = true } std_ext = { workspace = true } tap = { workspace = true } thiserror = { workspace = true } +tracing = { workspace = true } types = { workspace = true } diff --git a/state_cache/src/state_cache.rs b/state_cache/src/state_cache.rs index d2879b3f..a5146ffa 100644 --- a/state_cache/src/state_cache.rs +++ b/state_cache/src/state_cache.rs @@ -3,7 +3,7 @@ use std::sync::Arc; use anyhow::{anyhow, Result}; use im::{HashMap, OrdMap}; -use log::{info, warn}; +use tracing::{info, warn}; use parking_lot::{Mutex, MutexGuard}; use std_ext::ArcExt as _; use tap::Pipe as _; From 41a7309c7e524d4fc57c86a86f9adc7745384bcd Mon Sep 17 00:00:00 2001 From: Mercy Boma Naps Nkari Date: Sat, 7 Sep 2024 11:23:33 +0000 Subject: [PATCH 26/31] draft tracing --- logs/testing.log.2024-09-07 | 169 ++++++++++++++++++++++++++++++++++++ metrics/Cargo.toml | 1 + metrics/src/lib.rs | 5 ++ metrics/src/server.rs | 1 + metrics/src/service.rs | 3 + 5 files changed, 179 insertions(+) create mode 100644 logs/testing.log.2024-09-07 diff --git a/logs/testing.log.2024-09-07 b/logs/testing.log.2024-09-07 new file mode 100644 index 00000000..c7827c47 --- /dev/null +++ b/logs/testing.log.2024-09-07 @@ -0,0 +1,169 @@ +2024-09-07T11:14:37.473981Z INFO logging: Tracing initialized successfully. +2024-09-07T11:14:37.474180Z INFO grandine: Grandine firing up... +2024-09-07T11:14:37.515494Z INFO grandine: starting beacon node +2024-09-07T11:14:37.515604Z INFO grandine::grandine_config: network: mainnet +2024-09-07T11:14:37.515672Z INFO grandine::grandine_config: data directory: "/home/gitpod/.grandine/mainnet" +2024-09-07T11:14:37.515727Z INFO grandine::grandine_config: Eth2 database upper limit: 256.0 GiB +2024-09-07T11:14:37.515773Z INFO grandine::grandine_config: Eth1 database upper limit: 16.0 GiB +2024-09-07T11:14:37.515840Z INFO grandine::grandine_config: Eth1 RPC URLs: [] +2024-09-07T11:14:37.515934Z INFO grandine::grandine_config: graffiti: [0x4772616e64696e652f302e342e312d3939333930613400000000000000000000] +2024-09-07T11:14:37.515976Z INFO grandine::grandine_config: HTTP API address: 127.0.0.1:5052 +2024-09-07T11:14:37.516007Z INFO grandine::grandine_config: validator API disabled +2024-09-07T11:14:37.516033Z INFO grandine::grandine_config: archival interval: 32 epochs +2024-09-07T11:14:37.516082Z INFO grandine::grandine_config: slasher enabled: false +2024-09-07T11:14:37.516116Z INFO grandine::grandine_config: client version: Grandine/0.4.1-99390a4/x86_64-linux +2024-09-07T11:14:37.516155Z INFO grandine::grandine_config: suggested fee recipient: 0xe7cf…1f1b +2024-09-07T11:14:37.516193Z INFO grandine::grandine_config: back sync enabled: false +2024-09-07T11:14:37.517612Z INFO runtime::schema: initialized data directory with schema version 0.2.3 +2024-09-07T11:14:37.707915Z INFO database: database: /home/gitpod/.grandine/mainnet/beacon/eth1_cache with name eth1 +2024-09-07T11:14:39.860526Z INFO database: database: /home/gitpod/.grandine/mainnet/beacon/beacon_fork_choice with name beacon_fork_choice +2024-09-07T11:14:39.861706Z INFO fork_choice_control::storage: latest state checkpoint was not found; attempting to find stored state by iteration +2024-09-07T11:14:39.862167Z INFO fork_choice_control::storage: loaded state at slot 0 +2024-09-07T11:14:40.092087Z INFO database: database: /home/gitpod/.grandine/mainnet/beacon/sync with name sync +2024-09-07T11:14:40.095561Z INFO database: database: /home/gitpod/.grandine/mainnet/validator with name proposer-configs +2024-09-07T11:14:40.112864Z INFO discv5::service: Discv5 Service started mode=Ip4 +2024-09-07T11:14:40.120070Z INFO libp2p_swarm: local_peer_id=16Uiu2HAkvZSwAzk9pYp5vd8duNWWow6D36NuAULJJnVP7ZsFRPRA +2024-09-07T11:14:50.206968Z INFO http_api::task: HTTP server listening on 127.0.0.1:5052 +2024-09-07T11:15:07.005044Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 96) +2024-09-07T11:15:08.454103Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 2, root: 0xace2240dfe1fd056fba17e84e617578c5ec2dd96f6190009b32116dc7b9aae67, head slot: 121, head root: 0x53dab559e4382a2e196d256e70cbc566147406cbad2461d2145d05ed2b3f1f62) +2024-09-07T11:15:09.076906Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 128) +2024-09-07T11:15:11.831592Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 96 +2024-09-07T11:15:11.833274Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 3, root: 0xd924a743f197bde8672015aac88fcad90aa599b0a3a2076740d062c05f536600, head slot: 154, head root: 0x8cff0e1339949127df4c2f1a1331498840f899efb663307e47be800da574c655) +2024-09-07T11:15:11.962757Z INFO fork_choice_control::storage: saving state in slot 0 +2024-09-07T11:15:14.940971Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 4, root: 0x944b198acd9cb2defa4a717736166ed6219a6b110b080c85c021c219a7a9a0dc, head slot: 185, head root: 0xb889263cda93241c37fa18a734e48036170210558c125d5f0b9305a901ee87a6) +2024-09-07T11:15:15.239718Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 128 +2024-09-07T11:15:15.542586Z INFO runtime::runtime: saving current chain before exit… +2024-09-07T11:15:15.684126Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 192) +2024-09-07T11:15:16.131274Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 128 +2024-09-07T11:15:16.418620Z INFO fork_choice_control::mutator: chain saved (finalized blocks: 1, unfinalized blocks: 52) +2024-09-07T11:20:26.116616Z INFO logging: Tracing initialized successfully. +2024-09-07T11:20:26.116787Z INFO grandine: Grandine firing up... +2024-09-07T11:20:26.156175Z INFO grandine: starting beacon node +2024-09-07T11:20:26.156252Z INFO grandine::grandine_config: network: mainnet +2024-09-07T11:20:26.156297Z INFO grandine::grandine_config: data directory: "/home/gitpod/.grandine/mainnet" +2024-09-07T11:20:26.156338Z INFO grandine::grandine_config: Eth2 database upper limit: 256.0 GiB +2024-09-07T11:20:26.156374Z INFO grandine::grandine_config: Eth1 database upper limit: 16.0 GiB +2024-09-07T11:20:26.156439Z INFO grandine::grandine_config: Eth1 RPC URLs: [] +2024-09-07T11:20:26.156548Z INFO grandine::grandine_config: graffiti: [0x4772616e64696e652f302e342e312d3939333930613400000000000000000000] +2024-09-07T11:20:26.156597Z INFO grandine::grandine_config: HTTP API address: 127.0.0.1:5052 +2024-09-07T11:20:26.156626Z INFO grandine::grandine_config: validator API disabled +2024-09-07T11:20:26.156658Z INFO grandine::grandine_config: archival interval: 32 epochs +2024-09-07T11:20:26.156713Z INFO grandine::grandine_config: slasher enabled: false +2024-09-07T11:20:26.156747Z INFO grandine::grandine_config: client version: Grandine/0.4.1-99390a4/x86_64-linux +2024-09-07T11:20:26.156788Z INFO grandine::grandine_config: suggested fee recipient: 0xe7cf…1f1b +2024-09-07T11:20:26.156812Z INFO grandine::grandine_config: back sync enabled: false +2024-09-07T11:20:26.179968Z INFO database: database: /home/gitpod/.grandine/mainnet/beacon/eth1_cache with name eth1 +2024-09-07T11:20:28.079054Z INFO database: database: /home/gitpod/.grandine/mainnet/beacon/beacon_fork_choice with name beacon_fork_choice +2024-09-07T11:20:28.233843Z INFO fork_choice_control::storage: loaded state at slot 128 +2024-09-07T11:20:30.656126Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 128) +2024-09-07T11:20:30.873694Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 128) +2024-09-07T11:20:30.979894Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 128) +2024-09-07T11:20:31.000633Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 128) +2024-09-07T11:20:31.023890Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 128) +2024-09-07T11:20:31.047316Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 128) +2024-09-07T11:20:31.090439Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 128) +2024-09-07T11:20:31.118503Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 128) +2024-09-07T11:20:31.140456Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 128) +2024-09-07T11:20:31.165866Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 128) +2024-09-07T11:20:31.190145Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 128) +2024-09-07T11:20:31.230793Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 128) +2024-09-07T11:20:31.255878Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 128) +2024-09-07T11:20:31.297419Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 128) +2024-09-07T11:20:31.321385Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 128) +2024-09-07T11:20:31.346046Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 128) +2024-09-07T11:20:31.370306Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 128) +2024-09-07T11:20:31.404208Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 128) +2024-09-07T11:20:31.429512Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 128) +2024-09-07T11:20:32.339209Z INFO database: database: /home/gitpod/.grandine/mainnet/beacon/sync with name sync +2024-09-07T11:20:32.341678Z INFO database: database: /home/gitpod/.grandine/mainnet/validator with name proposer-configs +2024-09-07T11:20:32.359900Z INFO discv5::service: Discv5 Service started mode=Ip4 +2024-09-07T11:20:32.367151Z INFO libp2p_swarm: local_peer_id=16Uiu2HAkvZSwAzk9pYp5vd8duNWWow6D36NuAULJJnVP7ZsFRPRA +2024-09-07T11:20:32.638982Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 192) +2024-09-07T11:20:42.454119Z INFO http_api::task: HTTP server listening on 127.0.0.1:5052 +2024-09-07T11:20:54.568877Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 5, root: 0x54ef28a8a9f863d5b4ee91a1defd2879f4029862e25b3a7d33019fc43fb76e23, head slot: 217, head root: 0x0e42e7ffe65473f142dde4030841b9afd890bfda3cf228ad7a7f1ec66f9b5c97) +2024-09-07T11:20:55.021458Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 224) +2024-09-07T11:20:56.352986Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 6, root: 0x922728a1a20301e518d41f09884a34fc50c9f0d2fcf8894c7db654f0aea0f328, head slot: 249, head root: 0x4e122c95ee0480277462c7f3f69856bec77c11b3b5ec1aa1778cf65979f86c7b) +2024-09-07T11:20:56.543011Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 192 +2024-09-07T11:20:57.148940Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 256) +2024-09-07T11:20:58.357505Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 7, root: 0x298771e7ee0af390393a7c354de1b625c7407a9cc8f29ff4687c8495c601ec92, head slot: 282, head root: 0xffd35c38df4193161238128a2271aef6e1fa5e1f41ed2889df094f2dff7e1e1d) +2024-09-07T11:20:58.570342Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 224 +2024-09-07T11:20:58.937445Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 288) +2024-09-07T11:21:00.250524Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 8, root: 0x9cd3a9048a8e37e21f67485421edc4b95b73077eba1621cb446b0ce1ab5f1f57, head slot: 313, head root: 0xca7900fea0b946241846d24a2b49d2020dfb0b84521bf31c9202c731fd5217f9) +2024-09-07T11:21:00.524309Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 256 +2024-09-07T11:21:01.043328Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 320) +2024-09-07T11:21:02.888953Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 9, root: 0x1e69b805836952b1b79e0a12cf94f3495ea59ca4a632a3c5997999cb5f9cd5d0, head slot: 346, head root: 0x04b94dd297a640b926f6c762e16ab8b303e54543e1b97407ae32c18d7f68f205) +2024-09-07T11:21:03.215386Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 288 +2024-09-07T11:21:03.488906Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 352) +2024-09-07T11:21:05.421468Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 10, root: 0x76ed0a81c6bf78152015153137a8c037d628022b5b4c258c52ae92ba2b6bc54d, head slot: 377, head root: 0x96c9842f81880741d3c5965524d1c8f0d3d1d4380a3af6fa61207d74f9ee44a3) +2024-09-07T11:21:05.719865Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 320 +2024-09-07T11:21:06.063992Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 384) +2024-09-07T11:21:07.481333Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 11, root: 0x03409dd1ea96a11296515cdf319c2b1c939c99af8de9fec56165f05e1217651e, head slot: 409, head root: 0xdbaa1e690576380834238bac0578f7ff95b708d822e62e8c3d6f403fd347956c) +2024-09-07T11:21:07.758095Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 352 +2024-09-07T11:21:09.054129Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 12, root: 0x9d09d82044ff765c193b0d787a38a595b1fcc47f4a5e9b5b13a656b5aee18e21, head slot: 442, head root: 0xdd71740b61c7739990cc8e3ae2c7cb36cca77cd091904421247d9158218820cb) +2024-09-07T11:21:09.242300Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 384 +2024-09-07T11:21:09.377346Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 448) +2024-09-07T11:21:10.622999Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 13, root: 0xc6b7c41c87b4bf0fc24e4d744312d82e0fe88a4c1ecccac923332eeb9bfe33c5, head slot: 472, head root: 0xf0e3dc342f6c2c92c41c06a250221d5974c505256fcbfc3c7d9cdcf78f4399f8) +2024-09-07T11:21:12.938085Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 14, root: 0x47744037077ef657a36539aecf2dd179ff7f150b879a2ec29b4e21e69c6e7e50, head slot: 504, head root: 0xe31d6c6ef6e6938d4e2b10c3a25947e34e6446c0f9d0de06576d3bdb44630401) +2024-09-07T11:21:13.421136Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 448 +2024-09-07T11:21:15.261458Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 15, root: 0x4cb9f72cef82a2799d7b6ca8724e23f95e597b7b67331955d203885a4394c8e6, head slot: 536, head root: 0xcd8adc55b1024f77261d3b6c8713f217750507b008ab08a9ff054698f8a84f24) +2024-09-07T11:21:15.816194Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 544) +2024-09-07T11:21:17.650540Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 16, root: 0xdf6c026f30ebc81ce3bd5add17fab099f95912658f4e0212895ab7c8cf7f6140, head slot: 568, head root: 0x50f39e4f0717125f4723e2e9ed467b194fd597abe3bf915309f46af41dc67567) +2024-09-07T11:21:19.798303Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 17, root: 0x3b6b52e4ea17c263a57f4aa4feba38694f7d7ff820e582aa78d666e9b7ce09ce, head slot: 600, head root: 0xeb5df8615825482d6b824049a867045e46f7b19e135fcecb959ec4fcb45e5563) +2024-09-07T11:21:20.056135Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 544 +2024-09-07T11:21:20.652858Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 608) +2024-09-07T11:21:22.244873Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 18, root: 0x98bcae964aff154e72864af77e792fd187e573c57246b3494c1339490f4f87ac, head slot: 633, head root: 0x7dff19ae41cec51639c33bd4feb325e68894a5a5b35effce1e6a7c0c6e3d233c) +2024-09-07T11:21:22.727207Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 640) +2024-09-07T11:21:23.798189Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 19, root: 0xa854c641facc238c22b16b5722d8678e271d788a2d3cd5015429192066b0273b, head slot: 663, head root: 0xfbdaa65657f82bea07055d32f0f4e766df18f872312a3df14c08a2f49edbf4c9) +2024-09-07T11:21:23.977227Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 608 +2024-09-07T11:21:24.285785Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 672) +2024-09-07T11:21:25.067611Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 20, root: 0x23bbcc5e453f5b13e86904d7cc831aea21c24c9375e1e7e4bc21f53c82216672, head slot: 695, head root: 0x13d6ee13baf9aa775be7b868639abd19611de9e22b2d960454fcae14b83bdca9) +2024-09-07T11:21:25.274045Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 640 +2024-09-07T11:21:25.721969Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 704) +2024-09-07T11:21:27.728910Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 21, root: 0x95c53600001676b34a3e615a0c71fc272b6fd9d5a8e8bd9b8d248399d30b4e7f, head slot: 729, head root: 0xb480edf3335a15f56f4cb7498279ccb28abc3f4590718ba4d28b6c862cc1ea68) +2024-09-07T11:21:27.968364Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 672 +2024-09-07T11:21:28.233060Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 736) +2024-09-07T11:21:29.205492Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 22, root: 0x2c0e1109cff8c127f59eeae5c692590301980424312ffff65531daa669618dcf, head slot: 760, head root: 0xb8758b2a9f8e5d975761ca6521b5963097f11881c23c65bcba480ccad1b69731) +2024-09-07T11:21:29.675843Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 704 +2024-09-07T11:21:31.414180Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 23, root: 0x872392b690517caba6916e476b5c74f9f80cf4f1c0a1038644a3a7d0b71256b5, head slot: 791, head root: 0x0511fc6cb26cf9d22f07cafe472e03cadd5ac2fdac1b14b42067b1623c38e764) +2024-09-07T11:21:31.616653Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 736 +2024-09-07T11:21:33.037750Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 24, root: 0x6af78144624a2401b75d3fc89254ad05d2fbfa652fa8ad930f6d0a1601f9abc4, head slot: 823, head root: 0xe25eda53d1f9aec46ac4748e623abc4544a800dd791d6116eae3cc883745d881) +2024-09-07T11:21:33.588076Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 832) +2024-09-07T11:21:34.602078Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 25, root: 0x425c52e1cacda7e5bdbf080e7b95a522259fc08bdc9df4e61b23c0b6ed8da1f0, head slot: 855, head root: 0xdc2cbe24aba5eb51d7abdb98030587d047330c1b0d2a949e6258105c9cf81332) +2024-09-07T11:21:34.984902Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 864) +2024-09-07T11:21:36.217926Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 26, root: 0x4c0bc9b664d1199aac7bb8659cd850dd57b782bfaca1fdabfc750bf8c5c8f343, head slot: 888, head root: 0xb2434f99ddf46b0c58cbd2e45a0dab931e47f7b5f136891faa208c8efef87c5f) +2024-09-07T11:21:36.642155Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 832 +2024-09-07T11:21:37.139954Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 896) +2024-09-07T11:21:38.329550Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 27, root: 0x4720242331dff12985febad2704bebd454294f3ff8c0d9fc90a3d50ceb8d80f2, head slot: 920, head root: 0x85e4db6a98c42e856fa6b4cd9b761c48621e6200a99c60bae7ef2e424701ad62) +2024-09-07T11:21:38.624200Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 864 +2024-09-07T11:21:40.071398Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 28, root: 0xd23b46b4496c07f99efdaaeaff2bac9df250bfe30acc9bf34ebff678caa17df0, head slot: 951, head root: 0xb6d9ded6993390fdf043a5ca869cb0570459cb90bec93968f1875959bc1a31dd) +2024-09-07T11:21:40.325323Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 896 +2024-09-07T11:21:40.931778Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 960) +2024-09-07T11:21:41.846507Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 29, root: 0xeb1ab0e965b482ccc772274fd4cb8b8545547e4ff40661a07d48f33958d18437, head slot: 983, head root: 0x0dfe0d9d3a9a2c4fcc83cf3da4d6aa17d759d46a54cf88751794be08be70aa09) +2024-09-07T11:21:42.240492Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 992) +2024-09-07T11:21:43.306562Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 30, root: 0xd75c5bb2b2ddc7425511051f59d2480ab6f55a8c0ff8459c291289dea7092214, head slot: 1015, head root: 0x5c17a136d3e527b4352ced0be25e6a6249701e9f2aea1953a28712c87a981ccb) +2024-09-07T11:21:43.474977Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 960 +2024-09-07T11:21:43.833155Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 1024) +2024-09-07T11:21:44.949748Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 31, root: 0xe1ac1ef51acf1c82e6eae33c724767fc6d6cd684b7170a7e1dc6f9f24e746eea, head slot: 1047, head root: 0x28abb44f0572388eede7c73ec63a0ad35600fb5cdb054bc89034794ad30704e0) +2024-09-07T11:21:45.169283Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 992 +2024-09-07T11:21:47.275638Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 32, root: 0x2622c3026b6617667c59692d14f20249d43ff842b0f15f863e48af9487dc3a23, head slot: 1079, head root: 0xac61dcb808551e9b1a4578a3163907c21f4930fc12d859a700e9e22077e3a33b) +2024-09-07T11:21:47.526367Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 1024 +2024-09-07T11:21:47.666043Z INFO fork_choice_control::storage: saving state in slot 1024 +2024-09-07T11:21:47.923846Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 1088) +2024-09-07T11:21:50.232987Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 33, root: 0x952851d8c8bb216796b7ebb0e6048194650a08c46894f25cab97b0db1f25ceac, head slot: 1111, head root: 0x8b1201efe87739697c1150f93324da0e861822888a00c5ac395368854ce1f811) +2024-09-07T11:21:51.841876Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 1120) +2024-09-07T11:21:55.737804Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 34, root: 0x946dd56127121d321043e906927b5eb6556267c6eb9db6b1b7450f23e52eff33, head slot: 1143, head root: 0x186f6fa9a5fbcf28f95a30d261a9c70d5cb6440aabb4712f68a4cf2965de8f00) +2024-09-07T11:21:56.639544Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 1088 +2024-09-07T11:21:57.125062Z INFO fork_choice_control::storage: saving state in slot 1024 +2024-09-07T11:21:58.145464Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 1152) +2024-09-07T11:22:02.027943Z WARN discv5::handler: Authentication response already sent. Dropping session. Node: Node: 0xedf4..b1ff, addr: 34.31.2.184:5050 +2024-09-07T11:22:02.031492Z WARN discv5::service: RPC Request failed: id: 054e2fa7edff9e09, error InvalidRemotePacket +2024-09-07T11:22:02.031855Z WARN discv5::service: RPC Request failed: id: 34fe6193a48372e1, error InvalidRemotePacket +2024-09-07T11:22:02.033471Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 35, root: 0x2f2c7a323b7bdb02417b7fa41ad617e9de1bfd36d6173770a899ee4b01720151, head slot: 1175, head root: 0x4ed4960085a70c1f4c1ecd71230e364fddd347e88327a3aa7fd7bc56864b6ba0) +2024-09-07T11:22:02.728807Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 1120 +2024-09-07T11:22:03.920277Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 1184) +2024-09-07T11:22:06.617474Z INFO runtime::runtime: saving current chain before exit… +2024-09-07T11:22:06.634644Z WARN discv5::handler: Failed to inform of response channel closed +2024-09-07T11:22:06.641257Z WARN discv5::handler: Failed to inform of response channel closed +2024-09-07T11:22:06.721862Z WARN discv5::handler: Failed to inform of response channel closed +2024-09-07T11:22:07.231485Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 1120 +2024-09-07T11:22:07.556818Z INFO fork_choice_control::mutator: chain saved (finalized blocks: 1, unfinalized blocks: 78) diff --git a/metrics/Cargo.toml b/metrics/Cargo.toml index 340d28da..f28a9e18 100644 --- a/metrics/Cargo.toml +++ b/metrics/Cargo.toml @@ -37,6 +37,7 @@ tokio = { workspace = true } tokio-stream = { workspace = true } tower-http = { workspace = true } tracing = { workspace = true } +tracing-subscriber = { workspace = true } transition_functions = { workspace = true } types = { workspace = true } diff --git a/metrics/src/lib.rs b/metrics/src/lib.rs index 891cd4cb..4977373f 100644 --- a/metrics/src/lib.rs +++ b/metrics/src/lib.rs @@ -3,6 +3,11 @@ pub use crate::{ server::{run_metrics_server, MetricsServerConfig}, service::{MetricsChannels, MetricsService, MetricsServiceConfig}, }; +pub fn initialize_metrics_module() { + tracing_subscriber::fmt() + .with_max_level(tracing::Level::INFO) // Adjust log level as needed + .init(); +} mod beaconchain; mod gui; diff --git a/metrics/src/server.rs b/metrics/src/server.rs index ee089e22..1186a24f 100644 --- a/metrics/src/server.rs +++ b/metrics/src/server.rs @@ -22,6 +22,7 @@ use futures::channel::mpsc::UnboundedSender; use helper_functions::misc; use http_api_utils::ApiError; use tracing::{info, warn}; +use tracing_subscriber::{fmt, EnvFilter}; use prometheus::TextEncoder; use prometheus_client::registry::Registry; use prometheus_metrics::Metrics; diff --git a/metrics/src/service.rs b/metrics/src/service.rs index edf011d0..70636139 100644 --- a/metrics/src/service.rs +++ b/metrics/src/service.rs @@ -63,6 +63,9 @@ impl MetricsService

{ validator_keys: Arc>, channels: MetricsChannels, ) -> Self { + tracing_subscriber::fmt() + .with_max_level(tracing::Level::DEBUG) // More detailed logging + .init(); Self { config, controller, From b3b38fa8c283c6c7cc19d3ada190e833004f29d2 Mon Sep 17 00:00:00 2001 From: Mercy Boma Naps Nkari Date: Sat, 7 Sep 2024 18:53:26 +0000 Subject: [PATCH 27/31] Tracing draft --- Cargo.lock | 1 + logs/testing.log.2024-09-07 | 232 +++++++++++++++++++++++++++++++++ metrics/src/lib.rs | 2 +- metrics/src/server.rs | 2 +- p2p/src/attestation_subnets.rs | 48 ++++--- 5 files changed, 267 insertions(+), 18 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5e94a025..3562ad6b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5131,6 +5131,7 @@ dependencies = [ "tokio-stream", "tower-http", "tracing", + "tracing-subscriber", "transition_functions", "types", ] diff --git a/logs/testing.log.2024-09-07 b/logs/testing.log.2024-09-07 index c7827c47..7585f71e 100644 --- a/logs/testing.log.2024-09-07 +++ b/logs/testing.log.2024-09-07 @@ -1,3 +1,4 @@ +git push --set-upstream origin Tracing_Events:feat/tracing 2024-09-07T11:14:37.473981Z INFO logging: Tracing initialized successfully. 2024-09-07T11:14:37.474180Z INFO grandine: Grandine firing up... 2024-09-07T11:14:37.515494Z INFO grandine: starting beacon node @@ -167,3 +168,234 @@ 2024-09-07T11:22:06.721862Z WARN discv5::handler: Failed to inform of response channel closed 2024-09-07T11:22:07.231485Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 1120 2024-09-07T11:22:07.556818Z INFO fork_choice_control::mutator: chain saved (finalized blocks: 1, unfinalized blocks: 78) +2024-09-07T18:46:30.561235Z INFO logging: Tracing initialized successfully. +2024-09-07T18:46:30.561349Z INFO grandine: Grandine firing up... +2024-09-07T18:46:30.602722Z INFO grandine: starting beacon node +2024-09-07T18:46:30.602773Z INFO grandine::grandine_config: network: mainnet +2024-09-07T18:46:30.602798Z INFO grandine::grandine_config: data directory: "/home/gitpod/.grandine/mainnet" +2024-09-07T18:46:30.602826Z INFO grandine::grandine_config: Eth2 database upper limit: 256.0 GiB +2024-09-07T18:46:30.602857Z INFO grandine::grandine_config: Eth1 database upper limit: 16.0 GiB +2024-09-07T18:46:30.602941Z INFO grandine::grandine_config: Eth1 RPC URLs: [] +2024-09-07T18:46:30.603054Z INFO grandine::grandine_config: graffiti: [0x4772616e64696e652f302e342e312d3939333930613400000000000000000000] +2024-09-07T18:46:30.603114Z INFO grandine::grandine_config: HTTP API address: 127.0.0.1:5052 +2024-09-07T18:46:30.603153Z INFO grandine::grandine_config: validator API disabled +2024-09-07T18:46:30.603198Z INFO grandine::grandine_config: archival interval: 32 epochs +2024-09-07T18:46:30.603261Z INFO grandine::grandine_config: slasher enabled: false +2024-09-07T18:46:30.603313Z INFO grandine::grandine_config: client version: Grandine/0.4.1-99390a4/x86_64-linux +2024-09-07T18:46:30.603363Z INFO grandine::grandine_config: suggested fee recipient: 0xe7cf…1f1b +2024-09-07T18:46:30.603397Z INFO grandine::grandine_config: back sync enabled: false +2024-09-07T18:46:30.604515Z INFO runtime::schema: initialized data directory with schema version 0.2.3 +2024-09-07T18:46:30.619617Z INFO database: database: /home/gitpod/.grandine/mainnet/beacon/eth1_cache with name eth1 +2024-09-07T18:46:32.546782Z INFO database: database: /home/gitpod/.grandine/mainnet/beacon/beacon_fork_choice with name beacon_fork_choice +2024-09-07T18:46:32.547988Z INFO fork_choice_control::storage: latest state checkpoint was not found; attempting to find stored state by iteration +2024-09-07T18:46:32.548338Z INFO fork_choice_control::storage: loaded state at slot 0 +2024-09-07T18:46:32.759432Z INFO database: database: /home/gitpod/.grandine/mainnet/beacon/sync with name sync +2024-09-07T18:46:32.762400Z INFO database: database: /home/gitpod/.grandine/mainnet/validator with name proposer-configs +2024-09-07T18:46:32.777047Z INFO discv5::service: Discv5 Service started mode=Ip4 +2024-09-07T18:46:32.783844Z INFO libp2p_swarm: local_peer_id=16Uiu2HAmQUDAiAF97QrXgUHiYavRn7T6jNditSMphiywvHCdMpdR +2024-09-07T18:46:42.907438Z INFO http_api::task: HTTP server listening on 127.0.0.1:5052 +2024-09-07T18:46:58.635511Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 96) +2024-09-07T18:46:59.529921Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 2, root: 0xace2240dfe1fd056fba17e84e617578c5ec2dd96f6190009b32116dc7b9aae67, head slot: 121, head root: 0x53dab559e4382a2e196d256e70cbc566147406cbad2461d2145d05ed2b3f1f62) +2024-09-07T18:46:59.826335Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 128) +2024-09-07T18:47:00.550708Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 96 +2024-09-07T18:47:00.553044Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 3, root: 0xd924a743f197bde8672015aac88fcad90aa599b0a3a2076740d062c05f536600, head slot: 154, head root: 0x8cff0e1339949127df4c2f1a1331498840f899efb663307e47be800da574c655) +2024-09-07T18:47:00.632049Z INFO fork_choice_control::storage: saving state in slot 0 +2024-09-07T18:47:01.873143Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 4, root: 0x944b198acd9cb2defa4a717736166ed6219a6b110b080c85c021c219a7a9a0dc, head slot: 185, head root: 0xb889263cda93241c37fa18a734e48036170210558c125d5f0b9305a901ee87a6) +2024-09-07T18:47:02.074292Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 128 +2024-09-07T18:47:02.182468Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 192) +2024-09-07T18:47:14.032451Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 5, root: 0x54ef28a8a9f863d5b4ee91a1defd2879f4029862e25b3a7d33019fc43fb76e23, head slot: 217, head root: 0x0e42e7ffe65473f142dde4030841b9afd890bfda3cf228ad7a7f1ec66f9b5c97) +2024-09-07T18:47:14.409370Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 224) +2024-09-07T18:47:20.763100Z WARN discv5::service: ENRs received of unsolicited distances. Blacklisting node_id=0x07d6..d95a addr=103.161.224.134:30306 +2024-09-07T18:47:26.983600Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 6, root: 0x922728a1a20301e518d41f09884a34fc50c9f0d2fcf8894c7db654f0aea0f328, head slot: 249, head root: 0x4e122c95ee0480277462c7f3f69856bec77c11b3b5ec1aa1778cf65979f86c7b) +2024-09-07T18:47:27.128747Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 192 +2024-09-07T18:47:27.312265Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 256) +2024-09-07T18:47:28.812617Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 7, root: 0x298771e7ee0af390393a7c354de1b625c7407a9cc8f29ff4687c8495c601ec92, head slot: 282, head root: 0xffd35c38df4193161238128a2271aef6e1fa5e1f41ed2889df094f2dff7e1e1d) +2024-09-07T18:47:29.018632Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 224 +2024-09-07T18:47:29.135720Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 288) +2024-09-07T18:47:29.886010Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 8, root: 0x9cd3a9048a8e37e21f67485421edc4b95b73077eba1621cb446b0ce1ab5f1f57, head slot: 313, head root: 0xca7900fea0b946241846d24a2b49d2020dfb0b84521bf31c9202c731fd5217f9) +2024-09-07T18:47:30.046217Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 256 +2024-09-07T18:47:30.178109Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 320) +2024-09-07T18:47:30.845290Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 9, root: 0x1e69b805836952b1b79e0a12cf94f3495ea59ca4a632a3c5997999cb5f9cd5d0, head slot: 346, head root: 0x04b94dd297a640b926f6c762e16ab8b303e54543e1b97407ae32c18d7f68f205) +2024-09-07T18:47:30.988891Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 288 +2024-09-07T18:47:31.074084Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 352) +2024-09-07T18:47:31.859823Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 10, root: 0x76ed0a81c6bf78152015153137a8c037d628022b5b4c258c52ae92ba2b6bc54d, head slot: 377, head root: 0x96c9842f81880741d3c5965524d1c8f0d3d1d4380a3af6fa61207d74f9ee44a3) +2024-09-07T18:47:32.004246Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 320 +2024-09-07T18:47:32.141031Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 384) +2024-09-07T18:47:33.038929Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 11, root: 0x03409dd1ea96a11296515cdf319c2b1c939c99af8de9fec56165f05e1217651e, head slot: 409, head root: 0xdbaa1e690576380834238bac0578f7ff95b708d822e62e8c3d6f403fd347956c) +2024-09-07T18:47:33.228470Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 352 +2024-09-07T18:47:34.382952Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 12, root: 0x9d09d82044ff765c193b0d787a38a595b1fcc47f4a5e9b5b13a656b5aee18e21, head slot: 442, head root: 0xdd71740b61c7739990cc8e3ae2c7cb36cca77cd091904421247d9158218820cb) +2024-09-07T18:47:34.562087Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 384 +2024-09-07T18:47:34.703798Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 448) +2024-09-07T18:47:35.658319Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 13, root: 0xc6b7c41c87b4bf0fc24e4d744312d82e0fe88a4c1ecccac923332eeb9bfe33c5, head slot: 472, head root: 0xf0e3dc342f6c2c92c41c06a250221d5974c505256fcbfc3c7d9cdcf78f4399f8) +2024-09-07T18:47:36.996012Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 14, root: 0x47744037077ef657a36539aecf2dd179ff7f150b879a2ec29b4e21e69c6e7e50, head slot: 504, head root: 0xe31d6c6ef6e6938d4e2b10c3a25947e34e6446c0f9d0de06576d3bdb44630401) +2024-09-07T18:47:37.307261Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 448 +2024-09-07T18:47:39.402433Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 15, root: 0x4cb9f72cef82a2799d7b6ca8724e23f95e597b7b67331955d203885a4394c8e6, head slot: 536, head root: 0xcd8adc55b1024f77261d3b6c8713f217750507b008ab08a9ff054698f8a84f24) +2024-09-07T18:47:39.886151Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 544) +2024-09-07T18:47:40.600066Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 16, root: 0xdf6c026f30ebc81ce3bd5add17fab099f95912658f4e0212895ab7c8cf7f6140, head slot: 568, head root: 0x50f39e4f0717125f4723e2e9ed467b194fd597abe3bf915309f46af41dc67567) +2024-09-07T18:47:41.686303Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 17, root: 0x3b6b52e4ea17c263a57f4aa4feba38694f7d7ff820e582aa78d666e9b7ce09ce, head slot: 600, head root: 0xeb5df8615825482d6b824049a867045e46f7b19e135fcecb959ec4fcb45e5563) +2024-09-07T18:47:41.838967Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 544 +2024-09-07T18:47:42.021908Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 608) +2024-09-07T18:47:42.777135Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 18, root: 0x98bcae964aff154e72864af77e792fd187e573c57246b3494c1339490f4f87ac, head slot: 633, head root: 0x7dff19ae41cec51639c33bd4feb325e68894a5a5b35effce1e6a7c0c6e3d233c) +2024-09-07T18:47:43.257632Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 640) +2024-09-07T18:47:44.002416Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 19, root: 0xa854c641facc238c22b16b5722d8678e271d788a2d3cd5015429192066b0273b, head slot: 663, head root: 0xfbdaa65657f82bea07055d32f0f4e766df18f872312a3df14c08a2f49edbf4c9) +2024-09-07T18:47:44.167519Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 608 +2024-09-07T18:47:44.354286Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 672) +2024-09-07T18:47:45.008588Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 20, root: 0x23bbcc5e453f5b13e86904d7cc831aea21c24c9375e1e7e4bc21f53c82216672, head slot: 695, head root: 0x13d6ee13baf9aa775be7b868639abd19611de9e22b2d960454fcae14b83bdca9) +2024-09-07T18:47:45.162574Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 640 +2024-09-07T18:47:45.318296Z WARN quinn_udp: sendmsg error: Os { code: 101, kind: NetworkUnreachable, message: "Network is unreachable" }, Transmit: { destination: [2a01:4f8:1c1c:e264::1]:9001, src_ip: None, enc: Some(Ect0), len: 1200, segment_size: None } +2024-09-07T18:47:45.382456Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 704) +2024-09-07T18:47:46.082645Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 21, root: 0x95c53600001676b34a3e615a0c71fc272b6fd9d5a8e8bd9b8d248399d30b4e7f, head slot: 729, head root: 0xb480edf3335a15f56f4cb7498279ccb28abc3f4590718ba4d28b6c862cc1ea68) +2024-09-07T18:47:46.235479Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 672 +2024-09-07T18:47:46.396694Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 736) +2024-09-07T18:47:47.144997Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 22, root: 0x2c0e1109cff8c127f59eeae5c692590301980424312ffff65531daa669618dcf, head slot: 760, head root: 0xb8758b2a9f8e5d975761ca6521b5963097f11881c23c65bcba480ccad1b69731) +2024-09-07T18:47:47.327777Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 704 +2024-09-07T18:47:47.470526Z WARN discv5::handler: Authentication response already sent. Dropping session. Node: Node: 0xc77f..dc0b, addr: 95.43.68.156:30304 +2024-09-07T18:47:47.471077Z WARN discv5::service: RPC Request failed: id: e1c8013c07d2caeb, error InvalidRemotePacket +2024-09-07T18:47:47.471340Z WARN discv5::service: RPC Request failed: id: 585e7507fe6c4afb, error InvalidRemotePacket +2024-09-07T18:47:48.823081Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 23, root: 0x872392b690517caba6916e476b5c74f9f80cf4f1c0a1038644a3a7d0b71256b5, head slot: 791, head root: 0x0511fc6cb26cf9d22f07cafe472e03cadd5ac2fdac1b14b42067b1623c38e764) +2024-09-07T18:47:49.103355Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 736 +2024-09-07T18:47:50.398562Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 24, root: 0x6af78144624a2401b75d3fc89254ad05d2fbfa652fa8ad930f6d0a1601f9abc4, head slot: 823, head root: 0xe25eda53d1f9aec46ac4748e623abc4544a800dd791d6116eae3cc883745d881) +2024-09-07T18:47:50.701540Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 832) +2024-09-07T18:48:12.010975Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 25, root: 0x425c52e1cacda7e5bdbf080e7b95a522259fc08bdc9df4e61b23c0b6ed8da1f0, head slot: 855, head root: 0xdc2cbe24aba5eb51d7abdb98030587d047330c1b0d2a949e6258105c9cf81332) +2024-09-07T18:48:12.364227Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 864) +2024-09-07T18:48:13.337640Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 26, root: 0x4c0bc9b664d1199aac7bb8659cd850dd57b782bfaca1fdabfc750bf8c5c8f343, head slot: 888, head root: 0xb2434f99ddf46b0c58cbd2e45a0dab931e47f7b5f136891faa208c8efef87c5f) +2024-09-07T18:48:13.708407Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 832 +2024-09-07T18:48:14.132309Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 896) +2024-09-07T18:48:15.326142Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 27, root: 0x4720242331dff12985febad2704bebd454294f3ff8c0d9fc90a3d50ceb8d80f2, head slot: 920, head root: 0x85e4db6a98c42e856fa6b4cd9b761c48621e6200a99c60bae7ef2e424701ad62) +2024-09-07T18:48:15.721032Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 864 +2024-09-07T18:48:16.495194Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 28, root: 0xd23b46b4496c07f99efdaaeaff2bac9df250bfe30acc9bf34ebff678caa17df0, head slot: 951, head root: 0xb6d9ded6993390fdf043a5ca869cb0570459cb90bec93968f1875959bc1a31dd) +2024-09-07T18:48:16.654288Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 896 +2024-09-07T18:48:17.015999Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 960) +2024-09-07T18:48:17.780912Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 29, root: 0xeb1ab0e965b482ccc772274fd4cb8b8545547e4ff40661a07d48f33958d18437, head slot: 983, head root: 0x0dfe0d9d3a9a2c4fcc83cf3da4d6aa17d759d46a54cf88751794be08be70aa09) +2024-09-07T18:48:18.340263Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 992) +2024-09-07T18:48:19.324953Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 30, root: 0xd75c5bb2b2ddc7425511051f59d2480ab6f55a8c0ff8459c291289dea7092214, head slot: 1015, head root: 0x5c17a136d3e527b4352ced0be25e6a6249701e9f2aea1953a28712c87a981ccb) +2024-09-07T18:48:19.516461Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 960 +2024-09-07T18:48:19.725380Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 1024) +2024-09-07T18:48:20.441259Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 31, root: 0xe1ac1ef51acf1c82e6eae33c724767fc6d6cd684b7170a7e1dc6f9f24e746eea, head slot: 1047, head root: 0x28abb44f0572388eede7c73ec63a0ad35600fb5cdb054bc89034794ad30704e0) +2024-09-07T18:48:20.587991Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 992 +2024-09-07T18:48:21.815786Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 32, root: 0x2622c3026b6617667c59692d14f20249d43ff842b0f15f863e48af9487dc3a23, head slot: 1079, head root: 0xac61dcb808551e9b1a4578a3163907c21f4930fc12d859a700e9e22077e3a33b) +2024-09-07T18:48:22.021712Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 1024 +2024-09-07T18:48:22.114187Z INFO fork_choice_control::storage: saving state in slot 1024 +2024-09-07T18:48:22.252501Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 1088) +2024-09-07T18:48:23.606058Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 33, root: 0x952851d8c8bb216796b7ebb0e6048194650a08c46894f25cab97b0db1f25ceac, head slot: 1111, head root: 0x8b1201efe87739697c1150f93324da0e861822888a00c5ac395368854ce1f811) +2024-09-07T18:48:23.974899Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 1120) +2024-09-07T18:48:25.136392Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 34, root: 0x946dd56127121d321043e906927b5eb6556267c6eb9db6b1b7450f23e52eff33, head slot: 1143, head root: 0x186f6fa9a5fbcf28f95a30d261a9c70d5cb6440aabb4712f68a4cf2965de8f00) +2024-09-07T18:48:25.348126Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 1088 +2024-09-07T18:48:25.440285Z INFO fork_choice_control::storage: saving state in slot 1024 +2024-09-07T18:48:25.815561Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 1152) +2024-09-07T18:48:27.137870Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 35, root: 0x2f2c7a323b7bdb02417b7fa41ad617e9de1bfd36d6173770a899ee4b01720151, head slot: 1175, head root: 0x4ed4960085a70c1f4c1ecd71230e364fddd347e88327a3aa7fd7bc56864b6ba0) +2024-09-07T18:48:27.499458Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 1120 +2024-09-07T18:48:28.354527Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 1184) +2024-09-07T18:48:29.435535Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 36, root: 0x919850bf1ff8941ca331f6b5b914085c07c81b87b1e6c5228ed9b29d19ca64de, head slot: 1207, head root: 0xa6b600b9f572834524e4184d9dda23904ec56667f7efd70929ec6af5da6baeae) +2024-09-07T18:48:29.580386Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 1152 +2024-09-07T18:48:30.814663Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 37, root: 0x6642f12e389957ac9662ff61d4113c3b85f9bf24a2eb34e1272bff27189736f8, head slot: 1239, head root: 0x98849c13543d8f5c07f87ac0485bf8ca757bdf9ec2f402271f0a336f6c509982) +2024-09-07T18:48:30.974318Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 1184 +2024-09-07T18:48:32.962948Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 38, root: 0x70c7fa9e71a17ce905a4c2da68b47a39c49b9178001cb07da7c0c76e81d1e77e, head slot: 1271, head root: 0x20b0c3f1dddbb8ba277e7c1fe4ec66d7e100fbb5737f18a2c41c431e541d6c26) +2024-09-07T18:48:33.581855Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 1280) +2024-09-07T18:48:35.333444Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 39, root: 0xef06c18fb968d745f8aa62360f89edae7a1aa8ca8125f13e8752681cf94980ae, head slot: 1303, head root: 0x4bc51da88b753a75f448203d29a14450d71ab16506dbd82beaa3161612ec2dcc) +2024-09-07T18:48:36.022550Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 1312) +2024-09-07T18:48:37.009371Z WARN discv5::service: FINDNODE request failed with partial results node_id=0x29bf..bf7e addr=3.64.117.223:9100 error=Timeout received=6 expected=3 +2024-09-07T18:48:38.401476Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 40, root: 0x5f7466ff5c3ec3084485903c02c7fe701d77bb0214731873124416d4cc1b7330, head slot: 1335, head root: 0x910c4a998c9286fdf234ebe6257ebcd668c454d2de6967d3be5c45b5e01a184f) +2024-09-07T18:48:38.634578Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 1280 +2024-09-07T18:48:42.001545Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 41, root: 0x09c36b794dac18b8dcae17b815e4bc7a45582d50e30db9761253cd4bdd55941d, head slot: 1367, head root: 0x1164dbbdadb06df9b422883f113d63e46c1de690ccbb5de8b587203d905a9139) +2024-09-07T18:48:42.161207Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 1312 +2024-09-07T18:48:42.624734Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 1376) +2024-09-07T18:48:44.209195Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 42, root: 0x19d20e293b7e6c29a4b09fbc15cf44b039bcf7702b75c237b51c55c1618b5114, head slot: 1399, head root: 0x19cdefcf6093504a8ecded0e418efeb72b37deb289af2f5da5019f11792ea1d9) +2024-09-07T18:48:44.742835Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 1408) +2024-09-07T18:48:45.769146Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 43, root: 0x1c6b0e854533f7824c8de6e8747567dd0737637f4170c08dd8437e18f7ba71d1, head slot: 1431, head root: 0xedac6acc7f65396aa497db50638b5fe21fb44ec0465056a0caa30f4c27bbf98e) +2024-09-07T18:48:45.925504Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 1376 +2024-09-07T18:48:47.271778Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 44, root: 0x9a790dd0acc27f40fa61d3e45393590d21a7a841ce7fa08d3d3c78b4b68a6e75, head slot: 1463, head root: 0xe0e8f658d3aa702a8519e4c95c6809be546dcaa177006c1a528be87d254fc7dd) +2024-09-07T18:48:47.448915Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 1408 +2024-09-07T18:48:47.819351Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 1472) +2024-09-07T18:48:49.197397Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 45, root: 0xa35e75bf8bc3316d4c33fda7fadec35c363774467455def4591aa283511af52c, head slot: 1495, head root: 0xdbf81c78db833280d1e4e7ea2a1c56fae628f166baade1440dee596da9b85f26) +2024-09-07T18:48:49.711311Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 1504) +2024-09-07T18:48:51.206765Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 46, root: 0x8ae4f19959486b4d4ca791a5dd451af639391a39df0675c3e0aec8a3c402ed51, head slot: 1527, head root: 0xeae26952b0aeb7b2dc0a8e6c6c7b4df948a38a2e6a84a4fef17f069e1eb2ff11) +2024-09-07T18:48:51.922877Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 1472 +2024-09-07T18:48:53.535673Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 1536) +2024-09-07T18:48:55.061192Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 47, root: 0xecac42e531570d287eb945ff901fa27e4d778aa5b60e27410192ac5434e4b4dc, head slot: 1559, head root: 0xb42239dc3ca2cdbe7d29507b0aad48f6b2126c39889d9243eaab0cfd47853515) +2024-09-07T18:48:55.228988Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 1504 +2024-09-07T18:48:56.625539Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 48, root: 0xd7e8bc18fd978e6ae3b5f85a5ad7df5ed1f3bb2464ae0e52e9e053a27389770d, head slot: 1591, head root: 0x69ce848326ed1f62e1e660bff5938f36ae53a1d07b580250a73d01938c5a6fa9) +2024-09-07T18:48:57.115641Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 1536 +2024-09-07T18:48:57.680340Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 1600) +2024-09-07T18:48:58.949906Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 49, root: 0x84e5a1e32b6d7773a68442ff7870f5a4c1bf1774b4ad6e6b1fe975cbddd6a050, head slot: 1623, head root: 0xdc97b390b9571b699270cc007353e4bcbbb89528fe324b95cc01b393aec64159) +2024-09-07T18:48:59.513101Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 1632) +2024-09-07T18:49:00.624092Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 50, root: 0x9c5f9c2d42586cf3a2849f93c9d280f3d6f9c92d9dd3254f390066492dc9f89a, head slot: 1655, head root: 0x70f3334a6d798ef48bf295a23a640dc43706f4fe4fec0bcf95edde7bfae5c9c6) +2024-09-07T18:49:00.803211Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 1600 +2024-09-07T18:49:01.064771Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 1664) +2024-09-07T18:49:21.130748Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 51, root: 0x42d74d7105116e1ba23ff724d530bc670ae74481df551047dda03a3fcaddd55e, head slot: 1688, head root: 0xc2ed9aba06ea8c726eb12f65966a13f85d3e058163b1fe992d4d733b62da57c8) +2024-09-07T18:49:21.329604Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 1632 +2024-09-07T18:49:21.529712Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 1696) +2024-09-07T18:49:22.549131Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 52, root: 0x0ffe314d7304761899f25bb4f8697dc5178c0be5cdea8e846ba4670accb3788b, head slot: 1719, head root: 0xb7136efbf1d9d7d061fb51585ba28e4f1c111cb4e0bbb50d9589c149e48afd8d) +2024-09-07T18:49:22.820844Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 1664 +2024-09-07T18:49:23.307293Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 1728) +2024-09-07T18:49:24.418283Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 53, root: 0x6c46590297190c58f7b6580f4989d32c71137d46e73ad53bd8b9a01f75b142ed, head slot: 1751, head root: 0xbf54fe5062402221638fa3c7c7a2f963f518a0b2de0af9340a380168abb8cfdd) +2024-09-07T18:49:24.632539Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 1696 +2024-09-07T18:49:24.897622Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 1760) +2024-09-07T18:49:25.834665Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 54, root: 0xddee7300a71be5d5a91924f3bafbf68af47f7602f214f6400040b0f15facdb97, head slot: 1784, head root: 0x99a3167692ff0c2db4f718a30494ffabcbc8decccbec7a998b657d445178fffb) +2024-09-07T18:49:26.145112Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 1728 +2024-09-07T18:49:26.397995Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 1792) +2024-09-07T18:49:27.826526Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 55, root: 0x7b237795f893267820ecd911a9b43e05c485b5c15b6d42996cc3242c5454319d, head slot: 1816, head root: 0xfb82f7fae0152729ed7d9533111a79185cac0e87bd283c08bd452802fafdd8ee) +2024-09-07T18:49:28.298575Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 1760 +2024-09-07T18:49:28.467450Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 1824) +2024-09-07T18:49:29.742170Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 56, root: 0x6da65a40d5e9beee83d246979b6d96164230845595e9b5cd8cc83630d1fb6bd5, head slot: 1847, head root: 0x06556edc57bb024eeaeb10fb336f38d7d00b77b4ed8d1730f15b871979444e4f) +2024-09-07T18:49:29.963653Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 1792 +2024-09-07T18:49:30.142637Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 1856) +2024-09-07T18:49:30.829592Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 57, root: 0xd99bbeb3e1e577de91692eafde5adb348268515ac34070f9e721198b443e74cb, head slot: 1879, head root: 0x72c2505617e0f7f6e369b708e8e92af41fab9f1c3d7945e01bf986909ec1d284) +2024-09-07T18:49:31.007740Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 1824 +2024-09-07T18:49:31.193476Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 1888) +2024-09-07T18:49:31.818173Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 58, root: 0xb3a6c4367e809e01b9cd5c1724cfa47e44a1689dd95bc59b2484a8dfdd63c9e6, head slot: 1911, head root: 0x02b99f8bc5c227baf4125e2e8c7bbf6b5ccb7fda2ac41559159f87185e76c20a) +2024-09-07T18:49:31.992443Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 1856 +2024-09-07T18:49:32.167606Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 1920) +2024-09-07T18:49:32.936332Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 59, root: 0x98c8d91f3112aa062b402158ab612a055e1829421e2e7d4d35e7961323560f6d, head slot: 1943, head root: 0xb7d18ec58eb85f8ac406ae74a2697387e3dd638dbf95108c100364f7de01022e) +2024-09-07T18:49:33.183213Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 1888 +2024-09-07T18:49:33.396808Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 1952) +2024-09-07T18:49:34.354481Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 60, root: 0xdde1a406d488ffbc554c07dcdbd12168a03931b1711a79ced6aa06688fd5f82d, head slot: 1975, head root: 0xab4d9e2ba958bfb9f850ce1dcb97425ba00c79c3c5ffffd9f906d6af2b97597b) +2024-09-07T18:49:34.610678Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 1920 +2024-09-07T18:49:35.236897Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 1984) +2024-09-07T18:49:36.239984Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 61, root: 0xeb6da2c7d76dcadaf189e02776b1b1bf6ce9373645d8056a067417ef89677580, head slot: 2008, head root: 0xceb4488c287ea807683bdc0f6e225d4a3ac4a460bba6757d9a88580cc745733f) +2024-09-07T18:49:36.432076Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 1952 +2024-09-07T18:49:36.579682Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 2016) +2024-09-07T18:49:37.797625Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 62, root: 0xf0d878dbb9a085063b1bf0a6f72df5f8e13ff0eab4aa10595c4d1f6218b94cd8, head slot: 2039, head root: 0x339d14dca377dfd0b1905ad4b79edaa4b5515a941278687e778413f4ebaa2433) +2024-09-07T18:49:38.246247Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 1984 +2024-09-07T18:49:38.596084Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 2048) +2024-09-07T18:49:40.053807Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 63, root: 0x229544f9930cf513e6fe33ca7b655d198f8e4ea4c278363ff95291ba9d699872, head slot: 2071, head root: 0xd5d560e70a4ec870882cc8c024a16149bdb54b490a3e2a77fcdac64a3e996239) +2024-09-07T18:49:40.406475Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 2016 +2024-09-07T18:49:40.706635Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 2080) +2024-09-07T18:49:42.419232Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 64, root: 0xa873f2bb9e0aa19add9a65bcad38835b5e7bb331ffdebf8f0b51604f8baad904, head slot: 2103, head root: 0x48428d9d029d053b5c0c9413c8c822dd9ee84389821e83ce91c207578979a681) +2024-09-07T18:49:42.739608Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 2048 +2024-09-07T18:49:42.917128Z INFO fork_choice_control::storage: saving state in slot 2048 +2024-09-07T18:49:43.300777Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 2112) +2024-09-07T18:49:44.304083Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 65, root: 0x15af014a2ca0637edc3826457a32e94f2bf8217c5d9f7350b03beb80ac6c2cbe, head slot: 2135, head root: 0x79e82699826ea345319eafe017214438f383db1c3f0d84829370a73b867dce80) +2024-09-07T18:49:44.535826Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 2080 +2024-09-07T18:49:44.642921Z INFO fork_choice_control::storage: saving state in slot 2048 +2024-09-07T18:49:44.758229Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 2144) +2024-09-07T18:49:45.598401Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 66, root: 0x12d51bdf609c9687288dcc22a5c3312cc2a526d3edaa9d9dd8eb41c2574d98cf, head slot: 2167, head root: 0xbaed3749793366550458441131ba4d061ef8826f5b5f5c3d1a416b63adc4d3b4) +2024-09-07T18:49:45.815988Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 2112 +2024-09-07T18:49:45.996280Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 2176) +2024-09-07T18:49:46.785486Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 67, root: 0x71dff2dc1185b1da9cdf7ecc056774f2a8dad6f0b7220c289660ce98b8692407, head slot: 2199, head root: 0x4a6d29fc35be371a12aebc14b41bdf0a3de27a291ca68cf92886dbe6d2a760f8) +2024-09-07T18:49:47.009787Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 2144 +2024-09-07T18:49:47.218594Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 2208) +2024-09-07T18:49:48.558653Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 68, root: 0x003f18053330b3a95203b16a406b28e00f43f1d3f35121157899aaa4952257b1, head slot: 2231, head root: 0x93f88f8949bd5ca7fa31d772c300a4a1c66dd59b1208519e4c3d0c88e80faae6) +2024-09-07T18:49:48.922625Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 2176 +2024-09-07T18:49:49.197336Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 2240) +2024-09-07T18:49:50.103609Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 69, root: 0x19af17d412df3801ed144ee99182892f2c414df7b43f139d5e3e88f3c6841bbb, head slot: 2263, head root: 0x9302cfbbe557a669a9d88f29f86d3dc7662772f806f67119d1fc07928c15b241) +2024-09-07T18:49:50.603706Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 2208 +2024-09-07T18:49:51.002326Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 2272) +2024-09-07T18:49:51.915980Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 70, root: 0x76d6c85c7bbe42ab9ac8f6cbd59bb31e74174fb4ae1b0cedddfbc4d6334ce4a0, head slot: 2295, head root: 0xc3ca07917bb0298fa5a5158c1bbfadd7ccb04600e04bf0e089df60f27862807a) +2024-09-07T18:49:52.200649Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 2240 +2024-09-07T18:49:52.352834Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 2304) +2024-09-07T18:49:53.348843Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 71, root: 0x959edd33b9ed1ca5f87c202dac38f855db0759bbab97484493d5ad03c8251e99, head slot: 2327, head root: 0xd1d4b03f307fc220996cabcd86d1e89bd7314955ecdb25e91c85573a2a327414) +2024-09-07T18:49:53.609080Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 2272 +2024-09-07T18:49:53.866321Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 2336) +2024-09-07T18:49:54.605898Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 72, root: 0x08568877ac3702a5fe48c1300903c67b79210f0aba4a2db2c6f589e99a996683, head slot: 2359, head root: 0x5fcf629f757d6493d104bce62984a4643a515edf9adb3271c6c8a037b34f70f8) +2024-09-07T18:49:54.859351Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 2304 +2024-09-07T18:49:55.128692Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 2368) +2024-09-07T18:49:55.855098Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 73, root: 0x8a48ca26604bf4a41da3630787f5487d899b6be512fa0c8d2ae372a5d9158ef0, head slot: 2391, head root: 0x87815c55bc9f2bc9b84b5197f397bdb53b1212539283f8fa03ff30af62c7299e) +2024-09-07T18:49:56.051044Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 2336 +2024-09-07T18:49:56.250338Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 2400) +2024-09-07T18:49:57.362742Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 74, root: 0xfd4486b579007064eef3a0af7874de1a38ac00a16c57fda73c58b178bfbcc542, head slot: 2423, head root: 0x2b507bc8c45a47d8c316102b9cbd014758f55715d79e3d70396f10d7c653451a) +2024-09-07T18:49:57.656687Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 2368 +2024-09-07T18:49:58.141315Z INFO runtime::runtime: saving current chain before exit… +2024-09-07T18:49:58.299309Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 2432) +2024-09-07T18:49:59.205461Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 2368 +2024-09-07T18:49:59.422002Z INFO fork_choice_control::mutator: chain saved (finalized blocks: 1, unfinalized blocks: 79) diff --git a/metrics/src/lib.rs b/metrics/src/lib.rs index 4977373f..eabc9151 100644 --- a/metrics/src/lib.rs +++ b/metrics/src/lib.rs @@ -5,7 +5,7 @@ pub use crate::{ }; pub fn initialize_metrics_module() { tracing_subscriber::fmt() - .with_max_level(tracing::Level::INFO) // Adjust log level as needed + .with_max_level(tracing::Level::INFO) // log level .init(); } diff --git a/metrics/src/server.rs b/metrics/src/server.rs index 1186a24f..98b85a95 100644 --- a/metrics/src/server.rs +++ b/metrics/src/server.rs @@ -22,7 +22,7 @@ use futures::channel::mpsc::UnboundedSender; use helper_functions::misc; use http_api_utils::ApiError; use tracing::{info, warn}; -use tracing_subscriber::{fmt, EnvFilter}; +use tracing_subscriber::{fmt, EnvFilter};// yet to implement use prometheus::TextEncoder; use prometheus_client::registry::Registry; use prometheus_metrics::Metrics; diff --git a/p2p/src/attestation_subnets.rs b/p2p/src/attestation_subnets.rs index 947b4248..7b09ce1a 100644 --- a/p2p/src/attestation_subnets.rs +++ b/p2p/src/attestation_subnets.rs @@ -4,6 +4,7 @@ use anyhow::Result; use features::Feature; use helper_functions::misc; use itertools::izip; +use tracing::{info, debug, instrument}; use typenum::Unsigned as _; use types::{ config::Config, @@ -243,29 +244,44 @@ impl AttestationSubnets

{ *subnet_state = match subnet_state { // If persistent subscription exists at current slot, do not change anything - Persistent { expiration } => Persistent { - expiration: *expiration, - }, + Persistent { expiration } => { + debug!(subnet_id, ?expiration, "State remains persistent"); + Persistent { + expiration: *expiration, + } + } // If validator is aggregator, subscribe to subnet or extend existing subscription // (except if persistent subscription already exists) - Subscribed { expiration } if is_aggregator => Subscribed { - expiration: (*expiration).max(slot + 1), - }, + Subscribed { expiration } if is_aggregator => { + debug!(subnet_id, ?expiration, "Aggregator extending subscription"); + Subscribed { + expiration: (*expiration).max(slot + 1), + } + } // Ignore DiscoveringPeers expiration for the new subscription - Irrelevant | DiscoveringPeers { .. } if is_aggregator => Subscribed { - expiration: slot + 1, - }, + Irrelevant | DiscoveringPeers { .. } if is_aggregator => { + info!(subnet_id, "Aggregator subscribing to subnet"); + Subscribed { + expiration: slot + 1, + } + } // If validator is not an aggregator, and subscription exists at current slot, do not change anything - Subscribed { expiration } => Subscribed { - expiration: *expiration, - }, + Subscribed { expiration } => { + debug!(subnet_id, ?expiration, "Non-aggregator keeping subscription"); + Subscribed { + expiration: *expiration, + } + } // If validator is not an aggregator, discover peers in subnet - Irrelevant | DiscoveringPeers { .. } => DiscoveringPeers { - expiration: subnet_state.max_expiration(slot + 1), - }, + Irrelevant | DiscoveringPeers { .. } => { + debug!(subnet_id, "Discovering peers for subnet"); + DiscoveringPeers { + expiration: subnet_state.max_expiration(slot + 1), + } + } }; } Ok(()) } -} +} \ No newline at end of file From 18a45f7fba91de9e73b3b5e0ba27b7547c27077e Mon Sep 17 00:00:00 2001 From: Mercy Boma Naps Nkari Date: Sun, 8 Sep 2024 21:09:52 +0000 Subject: [PATCH 28/31] Improved correction on Tracin --- Cargo.lock | 2 ++ metrics/src/lib.rs | 6 +----- metrics/src/service.rs | 3 --- p2p/Cargo.toml | 2 ++ p2p/src/attestation_subnets.rs | 2 +- p2p/src/back_sync.rs | 2 +- 6 files changed, 7 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3562ad6b..c9968fb8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5645,6 +5645,8 @@ dependencies = [ "thiserror", "tokio", "tokio-stream", + "tracing", + "tracing-subscriber", "tynm", "typenum", "types", diff --git a/metrics/src/lib.rs b/metrics/src/lib.rs index eabc9151..4c973f48 100644 --- a/metrics/src/lib.rs +++ b/metrics/src/lib.rs @@ -3,11 +3,7 @@ pub use crate::{ server::{run_metrics_server, MetricsServerConfig}, service::{MetricsChannels, MetricsService, MetricsServiceConfig}, }; -pub fn initialize_metrics_module() { - tracing_subscriber::fmt() - .with_max_level(tracing::Level::INFO) // log level - .init(); -} + mod beaconchain; mod gui; diff --git a/metrics/src/service.rs b/metrics/src/service.rs index 70636139..edf011d0 100644 --- a/metrics/src/service.rs +++ b/metrics/src/service.rs @@ -63,9 +63,6 @@ impl MetricsService

{ validator_keys: Arc>, channels: MetricsChannels, ) -> Self { - tracing_subscriber::fmt() - .with_max_level(tracing::Level::DEBUG) // More detailed logging - .init(); Self { config, controller, diff --git a/p2p/Cargo.toml b/p2p/Cargo.toml index 839d3526..288dfc52 100644 --- a/p2p/Cargo.toml +++ b/p2p/Cargo.toml @@ -38,6 +38,8 @@ slog-stdlog = { workspace = true } ssz = { workspace = true } std_ext = { workspace = true } strum = { workspace = true } +tracing = { workspace = true } +tracing-subscriber = { workspace = true } thiserror = { workspace = true } tokio = { workspace = true } tokio-stream = { workspace = true } diff --git a/p2p/src/attestation_subnets.rs b/p2p/src/attestation_subnets.rs index 7b09ce1a..8c784092 100644 --- a/p2p/src/attestation_subnets.rs +++ b/p2p/src/attestation_subnets.rs @@ -4,7 +4,7 @@ use anyhow::Result; use features::Feature; use helper_functions::misc; use itertools::izip; -use tracing::{info, debug, instrument}; +use tracing::{info, debug}; use typenum::Unsigned as _; use types::{ config::Config, diff --git a/p2p/src/back_sync.rs b/p2p/src/back_sync.rs index e58d3bd1..d8abfb6a 100644 --- a/p2p/src/back_sync.rs +++ b/p2p/src/back_sync.rs @@ -6,7 +6,7 @@ use derive_more::Display; use eth1_api::RealController; use futures::channel::mpsc::UnboundedSender; use genesis::AnchorCheckpointProvider; -use log::{debug, info, warn}; +use tracing::{debug, info, warn}; use ssz::{Ssz, SszReadDefault as _, SszWrite as _}; use thiserror::Error; use types::{ From ef61fe838c8a471180e11c7c1b14f7b9d4290dee Mon Sep 17 00:00:00 2001 From: bomanaps Date: Sun, 22 Sep 2024 01:52:49 +0100 Subject: [PATCH 29/31] add tracing to fork_choice_control --- Cargo.lock | 2 +- fork_choice_control/src/block_processor.rs | 23 +- fork_choice_control/src/queries.rs | 50 +- fork_choice_store/Cargo.toml | 1 + .../src/state_cache_processor.rs | 53 +- logs/testing.log.2024-09-21 | 1211 ++ logs/testing.log.2024-09-22 | 12287 ++++++++++++++++ metrics/src/server.rs | 1 - p2p/Cargo.toml | 1 - slashing_protection/src/interchange_format.rs | 5 + 10 files changed, 13617 insertions(+), 17 deletions(-) create mode 100644 logs/testing.log.2024-09-21 create mode 100644 logs/testing.log.2024-09-22 diff --git a/Cargo.lock b/Cargo.lock index c9968fb8..7fe96525 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2674,6 +2674,7 @@ dependencies = [ "strum", "tap", "thiserror", + "tracing", "transition_functions", "tynm", "typenum", @@ -5646,7 +5647,6 @@ dependencies = [ "tokio", "tokio-stream", "tracing", - "tracing-subscriber", "tynm", "typenum", "types", diff --git a/fork_choice_control/src/block_processor.rs b/fork_choice_control/src/block_processor.rs index 0dbaa016..2e8f589c 100644 --- a/fork_choice_control/src/block_processor.rs +++ b/fork_choice_control/src/block_processor.rs @@ -14,6 +14,7 @@ use helper_functions::{ use ssz::SszHash; use state_cache::StateWithRewards; use std_ext::ArcExt as _; +use tracing::{info, warn}; use transition_functions::{ combined, unphased::{ProcessSlots, StateRootPolicy}, @@ -40,6 +41,7 @@ impl BlockProcessor

{ block: &BeaconBlock

, skip_randao_verification: bool, ) -> Result> { + info!("Processing untrusted block with slot: {}", block.slot()); self.state_cache .get_or_insert_with(block.hash_tree_root(), block.slot(), false, || { let mut slot_report = RealSlotReport::default(); @@ -53,6 +55,8 @@ impl BlockProcessor

{ )?; let block_rewards = calculate_block_rewards(&slot_report); + info!("Block processed. Slot: {} | Rewards: {:?}", block.slot(), block_rewards); + Ok((state, Some(block_rewards))) }) @@ -63,6 +67,7 @@ impl BlockProcessor

{ mut state: Arc>, block: &BeaconBlock

, ) -> Result> { + info!("Processing trusted block with slot: {}", block.slot()); self.state_cache .get_or_insert_with(block.hash_tree_root(), block.slot(), false, || { let mut slot_report = RealSlotReport::default(); @@ -75,6 +80,7 @@ impl BlockProcessor

{ )?; let block_rewards = calculate_block_rewards(&slot_report); + info!("Trusted block processed. Slot: {} | Rewards: {:?}", block.slot(), block_rewards); Ok((state, Some(block_rewards))) }) @@ -86,6 +92,7 @@ impl BlockProcessor

{ block: &BlindedBeaconBlock

, skip_randao_verification: bool, ) -> Result> { + info!("Processing untrusted blinded block with slot: {}", block.slot()); self.state_cache .get_or_insert_with(block.hash_tree_root(), block.slot(), false, || { let mut slot_report = RealSlotReport::default(); @@ -99,6 +106,8 @@ impl BlockProcessor

{ )?; let block_rewards = calculate_block_rewards(&slot_report); + info!("Untrusted blinded block processed. Slot: {} | Rewards: {:?}", block.slot(), block_rewards); + Ok((state, Some(block_rewards))) }) @@ -109,6 +118,7 @@ impl BlockProcessor

{ mut state: Arc>, block: &BlindedBeaconBlock

, ) -> Result> { + info!("Processing trusted blinded block with slot: {}", block.slot()); self.state_cache .get_or_insert_with(block.hash_tree_root(), block.slot(), false, || { let mut slot_report = RealSlotReport::default(); @@ -121,6 +131,8 @@ impl BlockProcessor

{ )?; let block_rewards = calculate_block_rewards(&slot_report); + info!("Trusted blinded block processed. Slot: {} | Rewards: {:?}", block.slot(), block_rewards); + Ok((state, Some(block_rewards))) }) @@ -138,6 +150,7 @@ impl BlockProcessor

{ verifier: impl Verifier + Send, slot_report: impl SlotReport + Send, ) -> Result>> { + info!("Performing state transition for block with root: {:?}, slot: {}", block_root, block.message().slot()); self.state_cache .get_or_insert_with(block_root, block.message().slot(), true, || { combined::custom_state_transition( @@ -153,7 +166,10 @@ impl BlockProcessor

{ Ok((state, None)) }) - .map(|(state, _)| state) + .map(|(state, _)| { + info!("State transition completed for block with slot: {}", block.message().slot()); + state + }) } pub fn validate_block_for_gossip( @@ -161,6 +177,7 @@ impl BlockProcessor

{ store: &Store

, block: &Arc>, ) -> Result>> { + info!("Validating block for gossip with slot: {}", block.message().slot()); store.validate_block_for_gossip(block, |parent| { let block_slot = block.message().slot(); @@ -176,6 +193,7 @@ impl BlockProcessor

{ } combined::process_block_for_gossip(&self.chain_config, &state, block)?; + info!("Block validation for gossip complete for slot: {}", block.message().slot()); Ok(None) }) @@ -189,6 +207,7 @@ impl BlockProcessor

{ execution_engine: E, verifier: impl Verifier + Send, ) -> Result> { + info!("Validating block with slot: {}", block.message().slot()); store.validate_block_with_custom_state_transition(block, |block_root, parent| { // > Make a copy of the state to avoid mutability issues let state = self @@ -215,6 +234,7 @@ impl BlockProcessor

{ { PartialBlockAction::Accept => {} PartialBlockAction::Ignore => { + warn!("Block ignored at slot: {}", block.message().slot()); return Ok((state, Some(BlockAction::Ignore(false)))) } } @@ -231,6 +251,7 @@ impl BlockProcessor

{ verifier, NullSlotReport, )?; + info!("Block validation completed for slot: {}", block.message().slot()); Ok((state, None)) }) diff --git a/fork_choice_control/src/queries.rs b/fork_choice_control/src/queries.rs index e821f368..917a306f 100644 --- a/fork_choice_control/src/queries.rs +++ b/fork_choice_control/src/queries.rs @@ -13,6 +13,7 @@ use itertools::Itertools as _; use serde::Serialize; use std_ext::ArcExt; use thiserror::Error; +use tracing::{error}; use types::{ combined::{BeaconState, SignedBeaconBlock}, deneb::containers::{BlobIdentifier, BlobSidecar}, @@ -53,37 +54,44 @@ where { #[must_use] pub fn slot(&self) -> Slot { + tracing::debug!("Fetching slot from store snapshot"); self.store_snapshot().slot() } #[must_use] pub fn phase(&self) -> Phase { + tracing::debug!("Fetching phase from store snapshot"); self.store_snapshot().phase() } #[must_use] pub fn justified_checkpoint(&self) -> Checkpoint { + tracing::debug!("Fetching justified checkpoint from store snapshot"); self.store_snapshot().justified_checkpoint() } #[must_use] pub fn finalized_epoch(&self) -> Epoch { + tracing::debug!("Fetching finalized epoch from store snapshot"); self.store_snapshot().finalized_epoch() } #[must_use] pub fn finalized_root(&self) -> H256 { + tracing::debug!("Fetching finalized root from store snapshot"); self.store_snapshot().finalized_root() } #[must_use] pub fn genesis_time(&self) -> UnixSeconds { + tracing::debug!("Fetching genesis time from the state of last finalized block"); let store = self.store_snapshot(); store.last_finalized().state(&store).genesis_time() } #[must_use] pub fn anchor_block(&self) -> Arc> { + tracing::debug!("Fetching anchor block"); self.store_snapshot().anchor().block.clone_arc() } @@ -94,6 +102,7 @@ where /// /// [Eth Beacon Node API]: https://ethereum.github.io/beacon-APIs/ pub fn justified_state(&self) -> Result>>> { + tracing::debug!("Fetching justified state from store snapshot"); let store = self.store_snapshot(); // `rustfmt` formats the method chain below in a surprising and counterproductive way. @@ -101,11 +110,12 @@ where // proposes adding an option. // implements the option. #[rustfmt::skip] - let chain_link = store - .justified_chain_link() - .ok_or_else(|| Error::JustifiedBlockPruned { + let chain_link = store.justified_chain_link().ok_or_else(|| { + tracing::error!("Justified block has been pruned"); + Error::JustifiedBlockPruned { justified_checkpoint: store.justified_checkpoint(), finalized_checkpoint: store.finalized_checkpoint(), + } })?; Ok(WithStatus { @@ -117,6 +127,7 @@ where #[must_use] pub fn last_finalized_block_root(&self) -> WithStatus { + tracing::debug!("Fetching last finalized block root"); let store = self.store_snapshot(); let chain_link = store.last_finalized(); @@ -129,6 +140,7 @@ where #[must_use] pub fn last_finalized_block(&self) -> WithStatus>> { + tracing::debug!("Fetching last finalized block"); let store = self.store_snapshot(); let chain_link = store.last_finalized(); @@ -147,6 +159,7 @@ where /// [Eth Beacon Node API]: https://ethereum.github.io/beacon-APIs/ #[must_use] pub fn last_finalized_state(&self) -> WithStatus>> { + tracing::debug!("Fetching last finalized state"); let store = self.store_snapshot(); let chain_link = store.last_finalized(); @@ -160,12 +173,14 @@ where // TODO(Grandine Team): This will incorrectly return `None` for archived slots. #[must_use] pub fn finalized_block_root_before_or_at(&self, slot: Slot) -> Option { + tracing::debug!("Fetching finalized block root before or at slot: {:?}", slot); self.store_snapshot() .finalized_before_or_at(slot) .map(|chain_link| chain_link.block_root) } pub fn checkpoint_state(&self, checkpoint: Checkpoint) -> Result>>> { + tracing::debug!("Fetching checkpoint state for: {:?}", checkpoint); self.snapshot().checkpoint_state(checkpoint) } @@ -175,9 +190,11 @@ where // [Eth Beacon Node API specification]: https://ethereum.github.io/beacon-APIs/ #[must_use] pub fn fork_tips(&self) -> Vec { + tracing::debug!("Fetching fork tips"); let store = self.store_snapshot(); if store.unfinalized().is_empty() { + tracing::debug!("No unfinalized blocks, returning head"); return vec![(store.head(), store.head().is_optimistic()).into()]; } @@ -197,6 +214,7 @@ where #[must_use] pub fn fork_choice_context(&self) -> ForkChoiceContext { + tracing::debug!("Fetching fork choice context"); let store = self.store_snapshot(); let fork_choice_nodes = store @@ -206,6 +224,12 @@ where .map(|unfinalized_block| { let chain_link = &unfinalized_block.chain_link; + tracing::debug!( + "Adding fork choice node for slot: {:?}, block root: {:?}", + chain_link.slot(), + chain_link.block_root + ); + ForkChoiceNode { slot: chain_link.slot(), block_root: chain_link.block_root, @@ -228,6 +252,7 @@ where #[must_use] pub fn head(&self) -> WithStatus> { + tracing::debug!("Fetching the head of the chain"); let store = self.store_snapshot(); let head = store.head(); @@ -240,11 +265,13 @@ where #[must_use] pub fn head_slot(&self) -> Slot { + tracing::debug!("Fetching the slot of the head of the chain"); self.store_snapshot().head().slot() } #[must_use] pub fn head_block_root(&self) -> WithStatus { + tracing::debug!("Fetching the block root of the head of the chain"); let store = self.store_snapshot(); let head = store.head(); @@ -257,6 +284,7 @@ where #[must_use] pub fn head_block(&self) -> WithStatus>> { + tracing::debug!("Fetching the head block"); let store = self.store_snapshot(); let head = store.head(); @@ -269,6 +297,7 @@ where #[must_use] pub fn head_state(&self) -> WithStatus>> { + tracing::debug!("Fetching the head state"); let store = self.store_snapshot(); let head = store.head(); @@ -281,15 +310,18 @@ where #[must_use] pub fn is_forward_synced(&self) -> bool { + tracing::debug!("Checking if forward synced"); self.store_snapshot().is_forward_synced() } #[must_use] pub fn state_by_chain_link(&self, chain_link: &ChainLink

) -> Arc> { + tracing::debug!("Fetching state by chain link: {:?}", chain_link.block_root); chain_link.state(&self.store_snapshot()) } pub fn state_at_slot(&self, slot: Slot) -> Result>>>> { + tracing::debug!("Fetching state at slot: {:?}", slot); self.snapshot().state_at_slot(slot) } @@ -298,6 +330,7 @@ where block_root: H256, slot: Slot, ) -> Option>> { + tracing::debug!("Fetching state before or at slot: {:?}, for block root: {:?}", slot, block_root); self.store_snapshot() .state_before_or_at_slot(block_root, slot) } @@ -310,6 +343,7 @@ where &self, state_root: H256, ) -> Result>>>> { + tracing::debug!("Fetching state by state root: {:?}", state_root); let store = self.store_snapshot(); if let Some(with_status) = store.state_by_state_root(state_root) { @@ -325,6 +359,7 @@ where } pub fn exibits_equivocation(&self, block: &Arc>) -> bool { + tracing::debug!("Checking if block exhibits equivocation: {:?}", block.message().slot()); let block_slot = block.message().slot(); let store = self.store_snapshot(); @@ -340,6 +375,7 @@ where } pub fn check_block_root(&self, block_root: H256) -> Result>> { + tracing::debug!("Checking block root: {:?}", block_root); let store = self.store_snapshot(); if let Some(chain_link) = store.chain_link(block_root) { @@ -365,6 +401,7 @@ where &self, block_root: H256, ) -> Result>>>> { + tracing::debug!("Fetching block by root: {:?}", block_root); if let Some(with_status) = self.store_snapshot().block(block_root) { return Ok(Some(with_status.cloned())); } @@ -381,6 +418,7 @@ where } pub fn block_by_slot(&self, slot: Slot) -> Result>>> { + tracing::debug!("Fetching block by slot: {:?}", slot); let store = self.store_snapshot(); if let Some(chain_link) = store.chain_link_before_or_at(slot) { @@ -405,11 +443,13 @@ where } pub fn block_root_by_slot(&self, slot: Slot) -> Result> { + tracing::debug!("Fetching block root by slot: {:?}", slot); self.storage() .block_root_by_slot_with_store(self.store_snapshot().as_ref(), slot) } pub fn blocks_by_range(&self, range: Range) -> Result>> { + tracing::debug!("Fetching blocks by range: {:?}", range); self.snapshot().blocks_by_range(range) } @@ -417,6 +457,7 @@ where &self, blob_ids: impl IntoIterator + Send, ) -> Result>>> { + tracing::debug!("Fetching blob sidecars by IDs"); let snapshot = self.snapshot(); let storage = self.storage(); @@ -437,6 +478,7 @@ where } pub fn blob_sidecars_by_range(&self, range: Range) -> Result>>> { + tracing::debug!("Fetching blob sidecars by range: {:?}", range); let canonical_chain_blocks = self.blocks_by_range(range)?; let blob_ids = @@ -470,6 +512,7 @@ where &self, block_roots: impl IntoIterator + Send, ) -> Result>>>> { + tracing::debug!("Fetching blocks by root"); block_roots .into_iter() .map(|root| self.block_by_root(root)) @@ -478,6 +521,7 @@ where } pub fn preprocessed_state_at_current_slot(&self) -> Result>> { + tracing::debug!("Entering preprocessed_state_at_current_slot"); let store = self.store_snapshot(); let head = store.head(); diff --git a/fork_choice_store/Cargo.toml b/fork_choice_store/Cargo.toml index 2205b3cd..6a36be80 100644 --- a/fork_choice_store/Cargo.toml +++ b/fork_choice_store/Cargo.toml @@ -32,6 +32,7 @@ std_ext = { workspace = true } strum = { workspace = true } tap = { workspace = true } thiserror = { workspace = true } +tracing = { workspace = true } transition_functions = { workspace = true } tynm = { workspace = true } typenum = { workspace = true } diff --git a/fork_choice_store/src/state_cache_processor.rs b/fork_choice_store/src/state_cache_processor.rs index ccf075c2..2f515687 100644 --- a/fork_choice_store/src/state_cache_processor.rs +++ b/fork_choice_store/src/state_cache_processor.rs @@ -3,10 +3,10 @@ use std::{backtrace::Backtrace, sync::Arc}; use anyhow::{bail, Result}; use features::Feature; -use log::warn; use state_cache::{StateCache, StateWithRewards}; use std_ext::ArcExt as _; use tap::Pipe as _; +use tracing::{info, trace, warn}; use thiserror::Error; use transition_functions::combined; use types::{ @@ -25,6 +25,7 @@ pub struct StateCacheProcessor { impl StateCacheProcessor

{ #[must_use] pub fn new(state_cache_lock_timeout: Duration) -> Self { + info!("Creating new StateCacheProcessor with lock timeout of {:?}", state_cache_lock_timeout); Self { state_cache: StateCache::new(state_cache_lock_timeout), } @@ -36,12 +37,19 @@ impl StateCacheProcessor

{ block_root: H256, slot: Slot, ) -> Option>> { + trace!("Retrieving state before or at slot {}", slot); self.state_cache .before_or_at_slot(block_root, slot) .ok() .flatten() - .map(|(state, _)| state) - .or_else(|| store_state_before_or_at_slot(store, block_root, slot)) + .map(|(state, _)| { + trace!("State found in cache for block root {:?} and slot {}", block_root, slot); + state + }) + .or_else(|| { + trace!("State not found in cache, trying store"); + store_state_before_or_at_slot(store, block_root, slot) + }) } pub fn existing_state_at_slot( @@ -50,6 +58,7 @@ impl StateCacheProcessor

{ block_root: H256, slot: Slot, ) -> Option>> { + trace!("Checking existing state at slot {}", slot); self.before_or_at_slot(store, block_root, slot) .filter(|state| state.slot() == slot) } @@ -61,15 +70,22 @@ impl StateCacheProcessor

{ ignore_missing_rewards: bool, f: impl FnOnce() -> Result>, ) -> Result> { + trace!( + "Attempting to get or insert state for block root {:?} at slot {}", + block_root, + slot + ); self.state_cache .get_or_insert_with(block_root, slot, ignore_missing_rewards, f) } pub fn len(&self) -> Result { + trace!("Getting length of state cache"); self.state_cache.len() } pub fn prune(&self, last_pruned_slot: Slot) -> Result<()> { + trace!("Pruning state cache up to slot {}", last_pruned_slot); self.state_cache.prune(last_pruned_slot) } @@ -79,6 +95,7 @@ impl StateCacheProcessor

{ block_root: H256, slot: Slot, ) -> Result>>> { + trace!("Trying to get state at slot {} for block root {:?}", slot, block_root); self.try_get_state_at_slot( store, block_root, @@ -93,6 +110,7 @@ impl StateCacheProcessor

{ block_root: H256, slot: Slot, ) -> Result>> { + trace!("Getting state at slot {} for block root {:?}", slot, block_root); self.try_state_at_slot(store, block_root, slot)? .ok_or(Error::StateNotFound { block_root }) .map_err(Into::into) @@ -104,6 +122,7 @@ impl StateCacheProcessor

{ block_root: H256, slot: Slot, ) -> Result>> { + trace!("Quietly getting state at slot {} for block root {:?}", slot, block_root); self.try_get_state_at_slot(store, block_root, slot, false)? .ok_or(Error::StateNotFound { block_root }) .map_err(Into::into) @@ -116,6 +135,12 @@ impl StateCacheProcessor

{ block_root: H256, slot: Slot, ) -> Result>> { + trace!( + "Processing slots for state from slot {} to {} for block root {:?}", + state.slot(), + slot, + block_root + ); let post_state = process_slots( store, state, @@ -125,6 +150,7 @@ impl StateCacheProcessor

{ )?; if store.is_forward_synced() { + trace!("Inserting processed state into state cache for block root {:?}", block_root); self.state_cache .insert(block_root, (post_state.clone_arc(), None))?; } @@ -139,25 +165,31 @@ impl StateCacheProcessor

{ slot: Slot, warn_on_slot_processing: bool, ) -> Result>>> { + trace!("Attempting to get state at slot {} for block root {:?}", slot, block_root); if !store.is_forward_synced() { return match self.before_or_at_slot(store, block_root, slot) { - Some(state) => Ok(Some(process_slots( - store, - state, - block_root, - slot, - warn_on_slot_processing, - )?)), + Some(state) => { + trace!("State found, processing slots"); + Ok(Some(process_slots( + store, + state, + block_root, + slot, + warn_on_slot_processing, + )?)) + } None => Ok(None), }; } self.state_cache .get_or_try_insert_with(block_root, slot, true, |pre_state| { + trace!("State not found in cache, attempting to retrieve or process"); let Some(state) = pre_state .map(|(state, _)| state.clone_arc()) .or_else(|| store_state_before_or_at_slot(store, block_root, slot)) else { + trace!("No state found before or at slot"); return Ok(None); }; @@ -177,6 +209,7 @@ fn process_slots( slot: Slot, warn_on_slot_processing: bool, ) -> Result>> { + trace!("Processing slots from {} to {} for block root {:?}", state.slot(), slot, block_root); if state.slot() < slot { if warn_on_slot_processing && store.is_forward_synced() { // `Backtrace::force_capture` can be costly and a warning may be excessive, diff --git a/logs/testing.log.2024-09-21 b/logs/testing.log.2024-09-21 new file mode 100644 index 00000000..ed139ebd --- /dev/null +++ b/logs/testing.log.2024-09-21 @@ -0,0 +1,1211 @@ +2024-09-21T22:02:41.086606Z INFO logging: Tracing initialized successfully. +2024-09-21T22:02:41.086800Z INFO grandine: Grandine firing up... +2024-09-21T22:02:41.124257Z INFO grandine: starting beacon node +2024-09-21T22:02:41.124360Z INFO grandine::grandine_config: network: mainnet +2024-09-21T22:02:41.124383Z INFO grandine::grandine_config: data directory: "/Users/mercynaps/.grandine/mainnet" +2024-09-21T22:02:41.124416Z INFO grandine::grandine_config: Eth2 database upper limit: 256.0 GiB +2024-09-21T22:02:41.124428Z INFO grandine::grandine_config: Eth1 database upper limit: 16.0 GiB +2024-09-21T22:02:41.124509Z INFO grandine::grandine_config: Eth1 RPC URLs: [] +2024-09-21T22:02:41.124674Z INFO grandine::grandine_config: graffiti: [0x4772616e64696e652f302e342e312d3138613435663700000000000000000000] +2024-09-21T22:02:41.124947Z INFO grandine::grandine_config: HTTP API address: 127.0.0.1:5052 +2024-09-21T22:02:41.125289Z INFO grandine::grandine_config: validator API disabled +2024-09-21T22:02:41.125302Z INFO grandine::grandine_config: archival interval: 32 epochs +2024-09-21T22:02:41.125327Z INFO grandine::grandine_config: slasher enabled: false +2024-09-21T22:02:41.125339Z INFO grandine::grandine_config: client version: Grandine/0.4.1-18a45f7/aarch64-macos +2024-09-21T22:02:41.125380Z INFO grandine::grandine_config: suggested fee recipient: 0xe7cf…1f1b +2024-09-21T22:02:41.125391Z INFO grandine::grandine_config: back sync enabled: false +2024-09-21T22:02:41.165181Z INFO database: database: /Users/mercynaps/.grandine/mainnet/beacon/eth1_cache with name eth1 +2024-09-21T22:02:42.993816Z INFO database: database: /Users/mercynaps/.grandine/mainnet/beacon/beacon_fork_choice with name beacon_fork_choice +2024-09-21T22:02:43.122452Z INFO fork_choice_control::storage: loaded state at slot 3264 +2024-09-21T22:02:45.373952Z INFO fork_choice_store::state_cache_processor: Creating new StateCacheProcessor with lock timeout of 1.5s +2024-09-21T22:02:45.512262Z INFO fork_choice_control::block_processor: Validating block with slot: 3265 +2024-09-21T22:02:45.514596Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6e55ae834ac5bed05e3dda60150818e1392f645c0e4ca61930b0f83764351209, slot: 3265 +2024-09-21T22:02:45.664337Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3265 +2024-09-21T22:02:45.664362Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3265 +2024-09-21T22:02:45.676277Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3264) +2024-09-21T22:02:45.680534Z INFO fork_choice_control::block_processor: Validating block with slot: 3266 +2024-09-21T22:02:45.681527Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeb458ab3bc24832b23277caa8307568f1d7fdebb4a56e87e50ecbed561c21c16, slot: 3266 +2024-09-21T22:02:45.684111Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3266 +2024-09-21T22:02:45.684124Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3266 +2024-09-21T22:02:45.694482Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3264) +2024-09-21T22:02:45.695070Z INFO fork_choice_control::block_processor: Validating block with slot: 3267 +2024-09-21T22:02:45.696561Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe0d853faa1eb3de48582ffb29fc53602efbeb0e414fb1d667840e23f3309f325, slot: 3267 +2024-09-21T22:02:45.700098Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3267 +2024-09-21T22:02:45.700110Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3267 +2024-09-21T22:02:45.711009Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3264) +2024-09-21T22:02:45.711562Z INFO fork_choice_control::block_processor: Validating block with slot: 3268 +2024-09-21T22:02:45.714116Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa117aea172535c38bbacc54ee9bde71f4b68612a11abbc80ec161d554c7aa31d, slot: 3268 +2024-09-21T22:02:45.719211Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3268 +2024-09-21T22:02:45.719220Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3268 +2024-09-21T22:02:45.730963Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3264) +2024-09-21T22:02:45.731619Z INFO fork_choice_control::block_processor: Validating block with slot: 3269 +2024-09-21T22:02:45.732670Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcbd96fa4d4293d7205ddef2949f01efed7a167c80650c15bdf4c909d33829e14, slot: 3269 +2024-09-21T22:02:45.735353Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3269 +2024-09-21T22:02:45.735363Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3269 +2024-09-21T22:02:45.746402Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3264) +2024-09-21T22:02:45.747046Z INFO fork_choice_control::block_processor: Validating block with slot: 3270 +2024-09-21T22:02:45.748300Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9165a1c531821056cf71c3eabc564954f418fbea7f65ea8b352f13d5f4d3cec4, slot: 3270 +2024-09-21T22:02:45.751363Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3270 +2024-09-21T22:02:45.751373Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3270 +2024-09-21T22:02:45.764602Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3264) +2024-09-21T22:02:45.765146Z INFO fork_choice_control::block_processor: Validating block with slot: 3271 +2024-09-21T22:02:45.766432Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9d1f33b5f99f4a7cc9847d1bb04b7bacb2c11bccf3dff905488bea22d53221e7, slot: 3271 +2024-09-21T22:02:45.769588Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3271 +2024-09-21T22:02:45.769600Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3271 +2024-09-21T22:02:45.781061Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3264) +2024-09-21T22:02:45.781761Z INFO fork_choice_control::block_processor: Validating block with slot: 3272 +2024-09-21T22:02:45.782733Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x176f6a6e7b600ab6b03957b40a92ca73bbb045fa965686dc89a2e161a2aca52c, slot: 3272 +2024-09-21T22:02:45.785203Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3272 +2024-09-21T22:02:45.785213Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3272 +2024-09-21T22:02:45.797341Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3264) +2024-09-21T22:02:45.798133Z INFO fork_choice_control::block_processor: Validating block with slot: 3273 +2024-09-21T22:02:45.800127Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc71d594812c45046658c9be1bfaa629f31fd2f1c2c207339b06b4769d6aa179d, slot: 3273 +2024-09-21T22:02:45.804698Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3273 +2024-09-21T22:02:45.804708Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3273 +2024-09-21T22:02:45.817101Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3264) +2024-09-21T22:02:45.817726Z INFO fork_choice_control::block_processor: Validating block with slot: 3274 +2024-09-21T22:02:45.818792Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb01c14c57a7c1c79378b272785ee35f020d1b2c12366feb069738ca803cca911, slot: 3274 +2024-09-21T22:02:45.821615Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3274 +2024-09-21T22:02:45.821631Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3274 +2024-09-21T22:02:45.833738Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3264) +2024-09-21T22:02:45.834438Z INFO fork_choice_control::block_processor: Validating block with slot: 3275 +2024-09-21T22:02:45.835777Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1300162e462269b8bafdf98dd173c37484520a937edfd722fcac37bce153784a, slot: 3275 +2024-09-21T22:02:45.838969Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3275 +2024-09-21T22:02:45.838981Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3275 +2024-09-21T22:02:45.850900Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3264) +2024-09-21T22:02:45.851123Z INFO fork_choice_control::block_processor: Validating block with slot: 3276 +2024-09-21T22:02:45.852065Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1765dfdac49d67a45450cedac37d97ea161423966833ded0ed7156027d9a47a1, slot: 3276 +2024-09-21T22:02:45.854526Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3276 +2024-09-21T22:02:45.854537Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3276 +2024-09-21T22:02:45.866514Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3264) +2024-09-21T22:02:45.867223Z INFO fork_choice_control::block_processor: Validating block with slot: 3277 +2024-09-21T22:02:45.868160Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf4d18a120778fd44c5619fd2f5f8a0e42897f84a0cb455bc7a495d7ec603f1c3, slot: 3277 +2024-09-21T22:02:45.870608Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3277 +2024-09-21T22:02:45.870617Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3277 +2024-09-21T22:02:45.882802Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3264) +2024-09-21T22:02:45.883346Z INFO fork_choice_control::block_processor: Validating block with slot: 3278 +2024-09-21T22:02:45.884285Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x22a83497f89e922b7180931bc4bcdc01d5b92afd9953c98486f1ff85792ed2b9, slot: 3278 +2024-09-21T22:02:45.886757Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3278 +2024-09-21T22:02:45.886768Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3278 +2024-09-21T22:02:45.899598Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3264) +2024-09-21T22:02:45.900008Z INFO fork_choice_control::block_processor: Validating block with slot: 3279 +2024-09-21T22:02:45.902329Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x69e86d01b37aeb26b342161d29bc294d9c9de3c70cc2f189d44bb344f4b62262, slot: 3279 +2024-09-21T22:02:45.907279Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3279 +2024-09-21T22:02:45.907304Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3279 +2024-09-21T22:02:45.920471Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3264) +2024-09-21T22:02:45.921084Z INFO fork_choice_control::block_processor: Validating block with slot: 3280 +2024-09-21T22:02:45.922084Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x07e40e5f67b1589c5fcfd80f393088c87eb58d2e6571547bb090c1d7588b67d8, slot: 3280 +2024-09-21T22:02:45.924795Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3280 +2024-09-21T22:02:45.924816Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3280 +2024-09-21T22:02:45.938782Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3264) +2024-09-21T22:02:45.939198Z INFO fork_choice_control::block_processor: Validating block with slot: 3281 +2024-09-21T22:02:45.940392Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe16516fdeaebaa3fcfc0358d3029a910be9aeb6c5083c2dfbff49095f1432f07, slot: 3281 +2024-09-21T22:02:45.943381Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3281 +2024-09-21T22:02:45.943410Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3281 +2024-09-21T22:02:45.960162Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3264) +2024-09-21T22:02:45.960722Z INFO fork_choice_control::block_processor: Validating block with slot: 3282 +2024-09-21T22:02:45.961714Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd4c751c93cf89b6c41ddedb19de301ce477e7d5be18921fa66e6e70a1dd67e7e, slot: 3282 +2024-09-21T22:02:45.964333Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3282 +2024-09-21T22:02:45.964344Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3282 +2024-09-21T22:02:45.978630Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3264) +2024-09-21T22:02:45.979385Z INFO fork_choice_control::block_processor: Validating block with slot: 3283 +2024-09-21T22:02:45.980678Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xae6f5677cee55d94f903a4581609a276fa0aa510a85adbb774182a3ad18c1d5e, slot: 3283 +2024-09-21T22:02:45.983869Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3283 +2024-09-21T22:02:45.983884Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3283 +2024-09-21T22:02:45.998567Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3264) +2024-09-21T22:02:45.999310Z INFO fork_choice_control::block_processor: Validating block with slot: 3284 +2024-09-21T22:02:46.001978Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd4e74752f11f7600ad154d72aedea531994e09bf2430c2612d96bea3142db463, slot: 3284 +2024-09-21T22:02:46.008106Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3284 +2024-09-21T22:02:46.008132Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3284 +2024-09-21T22:02:46.024592Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3264) +2024-09-21T22:02:46.025457Z INFO fork_choice_control::block_processor: Validating block with slot: 3285 +2024-09-21T22:02:46.027011Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdbbfa78780977b4cb999eabe86b2df0698a4873c4bdb59e5054895879fcf1ca8, slot: 3285 +2024-09-21T22:02:46.030656Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3285 +2024-09-21T22:02:46.030673Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3285 +2024-09-21T22:02:46.046654Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3264) +2024-09-21T22:02:46.047160Z INFO fork_choice_control::block_processor: Validating block with slot: 3286 +2024-09-21T22:02:46.048633Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1a196ca2a080d3c59b8b9be464bcbbe9869b32edd68afe665c8a74010f25f2be, slot: 3286 +2024-09-21T22:02:46.052053Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3286 +2024-09-21T22:02:46.052098Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3286 +2024-09-21T22:02:46.096159Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3264) +2024-09-21T22:02:46.099003Z INFO fork_choice_control::block_processor: Validating block with slot: 3287 +2024-09-21T22:02:46.102587Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8cd2a28c0556b577c3a07e76117bfc133abc24633a4f42de03bc6d87b720abd0, slot: 3287 +2024-09-21T22:02:46.106206Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3287 +2024-09-21T22:02:46.106226Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3287 +2024-09-21T22:02:46.131473Z INFO fork_choice_control::block_processor: Validating block with slot: 3288 +2024-09-21T22:02:46.133161Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa4ccc8ff06693242b8551ac493e926bd49b1162b4ed020d1d6a325077946c96e, slot: 3288 +2024-09-21T22:02:46.138592Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3288 +2024-09-21T22:02:46.138619Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3288 +2024-09-21T22:02:46.164095Z INFO fork_choice_control::block_processor: Validating block with slot: 3289 +2024-09-21T22:02:46.165918Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x240f7fec2d039d349faedd721d39be8675bee09ff664a01f0cfbda1056a10fe1, slot: 3289 +2024-09-21T22:02:46.170044Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3289 +2024-09-21T22:02:46.170059Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3289 +2024-09-21T22:02:46.186635Z INFO fork_choice_control::block_processor: Validating block with slot: 3290 +2024-09-21T22:02:46.187994Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3fbb29e41bb728ead10d34aef2be421f5214841b8d08d40613adcd54c7f2523d, slot: 3290 +2024-09-21T22:02:46.191532Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3290 +2024-09-21T22:02:46.191557Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3290 +2024-09-21T22:02:46.209097Z INFO fork_choice_control::block_processor: Validating block with slot: 3291 +2024-09-21T22:02:46.210352Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x96e1ec4816847b71ec4aa2c2100b8e62bc538b4df1d3e120261c67fe0dd84145, slot: 3291 +2024-09-21T22:02:46.213751Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3291 +2024-09-21T22:02:46.213773Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3291 +2024-09-21T22:02:46.235334Z INFO fork_choice_control::block_processor: Validating block with slot: 3292 +2024-09-21T22:02:46.236925Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfb88b142bef02bf7915cc08a7e6ad89cfedb6db9a87ca112d4dc15547653fd8f, slot: 3292 +2024-09-21T22:02:46.241079Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3292 +2024-09-21T22:02:46.241105Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3292 +2024-09-21T22:02:46.259557Z INFO fork_choice_control::block_processor: Validating block with slot: 3293 +2024-09-21T22:02:46.261146Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x411af93d3acacae4ed6ef993d474f014c95c640470056bd874c4049dd651241a, slot: 3293 +2024-09-21T22:02:46.264680Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3293 +2024-09-21T22:02:46.264820Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3293 +2024-09-21T22:02:46.287413Z INFO fork_choice_control::block_processor: Validating block with slot: 3294 +2024-09-21T22:02:46.288662Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb67b4c7188ecc2f3f082fd231e2c521df15b5db505bfd7ff5b4eaf0a01c7c6ad, slot: 3294 +2024-09-21T22:02:46.291901Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3294 +2024-09-21T22:02:46.291914Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3294 +2024-09-21T22:02:46.310142Z INFO fork_choice_control::block_processor: Validating block with slot: 3295 +2024-09-21T22:02:46.311354Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0a33c0f4e560173d1f84fe731e2c546539ede8c1ebcfe64fdffe1adee107499d, slot: 3295 +2024-09-21T22:02:46.314429Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3295 +2024-09-21T22:02:46.314448Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3295 +2024-09-21T22:02:46.332117Z INFO fork_choice_control::block_processor: Validating block with slot: 3296 +2024-09-21T22:02:46.333251Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x26f7d8052a9565d50324f0f6fc085cbbe49a3ab01b0a555acd1c982e4e81be8e, slot: 3296 +2024-09-21T22:02:46.388185Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3296 +2024-09-21T22:02:46.388208Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3296 +2024-09-21T22:02:46.400154Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3296) +2024-09-21T22:02:46.400876Z INFO fork_choice_control::block_processor: Validating block with slot: 3297 +2024-09-21T22:02:46.403205Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5e2a54be94da34be99be6d39215748bba965efeb1940d992ae7f8b02a46edf8e, slot: 3297 +2024-09-21T22:02:46.482910Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3297 +2024-09-21T22:02:46.482939Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3297 +2024-09-21T22:02:46.494527Z INFO fork_choice_control::block_processor: Validating block with slot: 3298 +2024-09-21T22:02:46.495574Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcfea84051774130a6b882f35a8566d6b2a4ce25f5d2daacc9d7e04cfb3fef8b0, slot: 3298 +2024-09-21T22:02:46.498200Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3298 +2024-09-21T22:02:46.498213Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3298 +2024-09-21T22:02:46.510769Z INFO fork_choice_control::block_processor: Validating block with slot: 3299 +2024-09-21T22:02:46.512394Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9ebf12836c802ce810078e6f210e57574b3f5af779bfbcedeab38e77028b8693, slot: 3299 +2024-09-21T22:02:46.516200Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3299 +2024-09-21T22:02:46.516219Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3299 +2024-09-21T22:02:46.530903Z INFO fork_choice_control::block_processor: Validating block with slot: 3300 +2024-09-21T22:02:46.532203Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4aad5ed50155e910c049f996ebe782884fc7c2a6066459e8b3c2b8903dad8141, slot: 3300 +2024-09-21T22:02:46.535365Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3300 +2024-09-21T22:02:46.535382Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3300 +2024-09-21T22:02:46.552638Z INFO fork_choice_control::block_processor: Validating block with slot: 3301 +2024-09-21T22:02:46.555738Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x20447d4b8f86d5f01e585a66288ade5b0923e1027ed5af9ee57933bd36d23e6f, slot: 3301 +2024-09-21T22:02:46.560142Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3301 +2024-09-21T22:02:46.560172Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3301 +2024-09-21T22:02:46.578677Z INFO fork_choice_control::block_processor: Validating block with slot: 3302 +2024-09-21T22:02:46.582487Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x45f2c786699ff514eba9c85fe3108fe62409bfde30dc866b1a25191987820eef, slot: 3302 +2024-09-21T22:02:46.589183Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3302 +2024-09-21T22:02:46.589209Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3302 +2024-09-21T22:02:46.604960Z INFO fork_choice_control::block_processor: Validating block with slot: 3303 +2024-09-21T22:02:46.606397Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x44c26ce31f85e5f15410dbadf25b68ff9f13c8d04390c64b8baa4ef7e53b3349, slot: 3303 +2024-09-21T22:02:46.609351Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3303 +2024-09-21T22:02:46.609375Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3303 +2024-09-21T22:02:46.623581Z INFO fork_choice_control::block_processor: Validating block with slot: 3304 +2024-09-21T22:02:46.625836Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x46248219afd935960ffb4da2cac8a51b7b8922c3e2ea914f1577ff8d49b12236, slot: 3304 +2024-09-21T22:02:46.631212Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3304 +2024-09-21T22:02:46.631239Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3304 +2024-09-21T22:02:46.649269Z INFO fork_choice_control::block_processor: Validating block with slot: 3305 +2024-09-21T22:02:46.651151Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3884131fbd204c0f3796dfa71599c84a875500142b3f3dea9784b9abdeaefe95, slot: 3305 +2024-09-21T22:02:46.655505Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3305 +2024-09-21T22:02:46.655553Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3305 +2024-09-21T22:02:46.670311Z INFO fork_choice_control::block_processor: Validating block with slot: 3306 +2024-09-21T22:02:46.671830Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x30ecb331bfe75b77e77ce8d494f6e0fa0ca48cd2e59dd8883d7fdf240f3e0605, slot: 3306 +2024-09-21T22:02:46.675525Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3306 +2024-09-21T22:02:46.675547Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3306 +2024-09-21T22:02:46.690336Z INFO fork_choice_control::block_processor: Validating block with slot: 3308 +2024-09-21T22:02:46.692522Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb46cb4da68d8d564d82010f5afb3f6d72a46e3d59abbb2d4234f92382176e7f1, slot: 3308 +2024-09-21T22:02:46.800031Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3308 +2024-09-21T22:02:46.800058Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3308 +2024-09-21T22:02:46.819139Z INFO fork_choice_control::block_processor: Validating block with slot: 3309 +2024-09-21T22:02:46.821026Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa4f2a98012c4722cdc10cfa38e4e70e735062eccb0322f8d39db007a0309e01f, slot: 3309 +2024-09-21T22:02:46.825330Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3309 +2024-09-21T22:02:46.825355Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3309 +2024-09-21T22:02:46.842006Z INFO fork_choice_control::block_processor: Validating block with slot: 3310 +2024-09-21T22:02:46.843242Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4df0afd59726f0a95b535863b6b440a616611abb4ab927a37082244e7885e130, slot: 3310 +2024-09-21T22:02:46.846241Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3310 +2024-09-21T22:02:46.846264Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3310 +2024-09-21T22:02:46.868160Z INFO fork_choice_control::block_processor: Validating block with slot: 3311 +2024-09-21T22:02:46.869415Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6007ee78adcfd97caaec7069033fc260d1a59825636ffb7df6a93d98131128b5, slot: 3311 +2024-09-21T22:02:46.872578Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3311 +2024-09-21T22:02:46.872603Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3311 +2024-09-21T22:02:46.890391Z INFO fork_choice_control::block_processor: Validating block with slot: 3312 +2024-09-21T22:02:46.891499Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9b700e3f580c36463c79e6dc71a839dde8cc8a474b26b6b18f73d11cb0fe280b, slot: 3312 +2024-09-21T22:02:46.894307Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3312 +2024-09-21T22:02:46.894359Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3312 +2024-09-21T22:02:46.910222Z INFO fork_choice_control::block_processor: Validating block with slot: 3313 +2024-09-21T22:02:46.911784Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbd5e7036782fd19c9ebee0db8026ab437eed310b8aea88b24a7616d8494b1dd0, slot: 3313 +2024-09-21T22:02:46.915468Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3313 +2024-09-21T22:02:46.915486Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3313 +2024-09-21T22:02:46.931497Z INFO fork_choice_control::block_processor: Validating block with slot: 3314 +2024-09-21T22:02:46.932629Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x55cf1269ab47ae0471e39df467258f59a1a613fdfe055a2e67ef093667e9bfb1, slot: 3314 +2024-09-21T22:02:46.935654Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3314 +2024-09-21T22:02:46.935676Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3314 +2024-09-21T22:02:46.957594Z INFO fork_choice_control::block_processor: Validating block with slot: 3315 +2024-09-21T22:02:46.958935Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x31bea67eaff20f47ab0b7379096cf3cf276f79c44425ab5a1075a6864a394255, slot: 3315 +2024-09-21T22:02:46.962015Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3315 +2024-09-21T22:02:46.962028Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3315 +2024-09-21T22:02:46.980645Z INFO fork_choice_control::block_processor: Validating block with slot: 3316 +2024-09-21T22:02:46.981633Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x583593d35a431ae6a0f3dee9f5a4f69989253ef144abca22a22eca283cd283d2, slot: 3316 +2024-09-21T22:02:46.984229Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3316 +2024-09-21T22:02:46.984244Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3316 +2024-09-21T22:02:47.001688Z INFO fork_choice_control::block_processor: Validating block with slot: 3317 +2024-09-21T22:02:47.002898Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x643d398ec4cbb6faf125cb5ea536b19f7231e3cfd454e63415e491c55cf70037, slot: 3317 +2024-09-21T22:02:47.006009Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3317 +2024-09-21T22:02:47.006032Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3317 +2024-09-21T22:02:47.023315Z INFO fork_choice_control::block_processor: Validating block with slot: 3318 +2024-09-21T22:02:47.027002Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xce3fe9cffc126d33ce603bd76b49122cb21e7b8baafc2fe18cc37a44610414d6, slot: 3318 +2024-09-21T22:02:47.035091Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3318 +2024-09-21T22:02:47.035114Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3318 +2024-09-21T22:02:47.055289Z INFO fork_choice_control::block_processor: Validating block with slot: 3319 +2024-09-21T22:02:47.059214Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1441a7266f3022504375776d4fa452dbae5a798f8d2d9319c6a0ec525f0f4bfd, slot: 3319 +2024-09-21T22:02:47.065547Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3319 +2024-09-21T22:02:47.065570Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3319 +2024-09-21T22:02:47.084566Z INFO fork_choice_control::block_processor: Validating block with slot: 3320 +2024-09-21T22:02:47.086331Z INFO fork_choice_control::block_processor: Validating block with slot: 3321 +2024-09-21T22:02:47.087919Z INFO fork_choice_control::block_processor: Validating block with slot: 3322 +2024-09-21T22:02:47.089308Z INFO fork_choice_control::block_processor: Validating block with slot: 3323 +2024-09-21T22:02:47.091058Z INFO fork_choice_control::block_processor: Validating block with slot: 3324 +2024-09-21T22:02:47.092638Z INFO fork_choice_control::block_processor: Validating block with slot: 3326 +2024-09-21T22:02:47.094303Z INFO fork_choice_control::block_processor: Validating block with slot: 3327 +2024-09-21T22:02:47.099137Z INFO database: database: /Users/mercynaps/.grandine/mainnet/beacon/sync with name sync +2024-09-21T22:02:47.103083Z INFO database: database: /Users/mercynaps/.grandine/mainnet/validator with name proposer-configs +2024-09-21T22:02:47.163420Z INFO discv5::service: Discv5 Service started mode=Ip4 +2024-09-21T22:02:47.194336Z INFO fork_choice_control::block_processor: Validating block with slot: 3320 +2024-09-21T22:02:47.195470Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd88f62ffca932cb2039d75df9b9b4871e6f10fa1334539965639f6477e7ab533, slot: 3320 +2024-09-21T22:02:47.198465Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3320 +2024-09-21T22:02:47.198487Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3320 +2024-09-21T22:02:47.206405Z INFO libp2p_swarm: local_peer_id=16Uiu2HAm1MjWUF4J3qsovL8Wzccfuzy28tTQ8dmA2sazksHeR3bs +2024-09-21T22:02:47.228386Z INFO fork_choice_control::block_processor: Validating block with slot: 3321 +2024-09-21T22:02:47.230692Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2b7b711eb7ca25fc4e298906a6cfa6e30cdf3bb906d22330a78e7ef95a6f0d3c, slot: 3321 +2024-09-21T22:02:47.234324Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3321 +2024-09-21T22:02:47.234352Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3321 +2024-09-21T22:02:47.256136Z INFO fork_choice_control::block_processor: Validating block with slot: 3322 +2024-09-21T22:02:47.257458Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8695dcc6c85f82db2e138af02e32c802e9263fc267295784954e34f88657dd3b, slot: 3322 +2024-09-21T22:02:47.260809Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3322 +2024-09-21T22:02:47.260834Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3322 +2024-09-21T22:02:47.288178Z INFO fork_choice_control::block_processor: Validating block with slot: 3323 +2024-09-21T22:02:47.289666Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc79003305563067a8dae731dd50dfc2d8ef9d2dd84479766f28891789a0c52e2, slot: 3323 +2024-09-21T22:02:47.292982Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3323 +2024-09-21T22:02:47.293005Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3323 +2024-09-21T22:02:47.312787Z INFO fork_choice_control::block_processor: Validating block with slot: 3324 +2024-09-21T22:02:47.314351Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7f6a9b41140ff7d1723b351892423c36a6b7c4c6da6bcdaece87f6697112f28b, slot: 3324 +2024-09-21T22:02:47.317949Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3324 +2024-09-21T22:02:47.317969Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3324 +2024-09-21T22:02:47.361575Z INFO fork_choice_control::block_processor: Validating block with slot: 3326 +2024-09-21T22:02:47.373681Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbce392f2135993254ec78387ae1e994b294319f26640b950f18591f2a7e5f8b7, slot: 3326 +2024-09-21T22:02:47.429048Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3326 +2024-09-21T22:02:47.429077Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3326 +2024-09-21T22:02:47.475137Z INFO fork_choice_control::block_processor: Validating block with slot: 3327 +2024-09-21T22:02:47.476842Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x95b1c9c671e5e996f02ff033e81d514a3c08d47c6d957c12ade1d4f0c5e332a0, slot: 3327 +2024-09-21T22:02:47.480159Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3327 +2024-09-21T22:02:47.480183Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3327 +2024-09-21T22:02:57.266229Z INFO http_api::task: HTTP server listening on 127.0.0.1:5052 +2024-09-21T22:02:59.750120Z WARN discv5::service: FINDNODE request failed with partial results node_id=0xf7fa..2492 addr=54.178.44.198:9000 error=Timeout received=13 expected=3 +2024-09-21T22:03:01.835192Z WARN discv5::service: FINDNODE request failed with partial results node_id=0x3fa6..2490 addr=24.6.178.194:9000 error=Timeout received=8 expected=3 +2024-09-21T22:03:02.009379Z WARN discv5::handler: Authentication response already sent. Dropping session. Node: Node: 0x3fdf..831a, addr: 174.139.79.90:30303 +2024-09-21T22:03:02.048770Z WARN discv5::service: RPC Request failed: id: 016565e8b146bb8a, error InvalidRemotePacket +2024-09-21T22:03:02.048954Z WARN discv5::service: RPC Request failed: id: 4b8b34cc9fab164a, error InvalidRemotePacket +2024-09-21T22:03:03.953293Z WARN discv5::handler: Authentication response already sent. Dropping session. Node: Node: 0x3ff3..e483, addr: 71.212.119.181:30306 +2024-09-21T22:03:03.953523Z WARN discv5::service: RPC Request failed: id: c7cce73f56d2bebe, error InvalidRemotePacket +2024-09-21T22:03:03.953643Z WARN discv5::service: RPC Request failed: id: 653f9ab5dc86536f, error InvalidRemotePacket +2024-09-21T22:03:04.816158Z WARN discv5::handler: Authentication response already sent. Dropping session. Node: Node: 0x3fe2..ea7a, addr: 198.200.84.45:30333 +2024-09-21T22:03:04.818293Z WARN discv5::service: RPC Request failed: id: 613bf225eeb34cae, error InvalidRemotePacket +2024-09-21T22:03:04.818416Z WARN discv5::service: RPC Request failed: id: b4de8c0f91dbe5e6, error InvalidRemotePacket +2024-09-21T22:03:05.720044Z WARN discv5::service: FINDNODE request failed with partial results node_id=0xb403..b511 addr=136.52.1.91:12000 error=Timeout received=15 expected=3 +2024-09-21T22:03:08.959061Z WARN discv5::service: FINDNODE request failed with partial results node_id=0xb450..9b66 addr=45.47.128.41:9000 error=Timeout received=10 expected=3 +2024-09-21T22:03:09.121024Z WARN discv5::service: FINDNODE request failed with partial results node_id=0xb4e5..6f90 addr=97.126.31.89:12004 error=Timeout received=10 expected=3 +2024-09-21T22:03:10.311844Z WARN discv5::service: FINDNODE request failed with partial results node_id=0xb4b7..061d addr=72.46.86.143:32295 error=Timeout received=10 expected=3 +2024-09-21T22:03:10.765085Z WARN discv5::service: FINDNODE request failed with partial results node_id=0xb494..fc7f addr=178.62.228.167:9009 error=Timeout received=4 expected=3 +2024-09-21T22:03:11.837807Z WARN discv5::service: FINDNODE request failed with partial results node_id=0xb4ce..2410 addr=95.217.113.104:12000 error=Timeout received=10 expected=3 +2024-09-21T22:03:12.028972Z WARN discv5::service: FINDNODE request failed with partial results node_id=0x3fea..fc6c addr=135.181.227.84:12000 error=Timeout received=15 expected=3 +2024-09-21T22:03:15.052088Z WARN discv5::service: FINDNODE request failed with partial results node_id=0x3131..8ce1 addr=13.244.85.136:32000 error=Timeout received=12 expected=3 +2024-09-21T22:03:15.064978Z WARN discv5::service: FINDNODE request failed with partial results node_id=0x3107..49ee addr=109.123.234.146:9000 error=Timeout received=10 expected=3 +2024-09-21T22:03:15.118380Z WARN discv5::service: FINDNODE request failed with partial results node_id=0x31fb..cf5c addr=67.160.180.217:9909 error=Timeout received=12 expected=3 +2024-09-21T22:03:21.112512Z WARN discv5::service: FINDNODE request failed with partial results node_id=0x3f7f..8e7a addr=68.183.130.10:9009 error=Timeout received=11 expected=3 +2024-09-21T22:03:21.233555Z WARN discv5::service: FINDNODE request failed with partial results node_id=0x312f..33ef addr=172.207.34.93:9000 error=Timeout received=10 expected=3 +2024-09-21T22:03:21.908627Z WARN discv5::service: FINDNODE request failed with partial results node_id=0x3107..ffef addr=51.83.237.108:9000 error=Timeout received=12 expected=3 +2024-09-21T22:03:23.062572Z WARN discv5::service: FINDNODE request failed with partial results node_id=0x3f12..2da2 addr=117.27.228.173:41913 error=Timeout received=11 expected=3 +2024-09-21T22:03:24.063934Z WARN discv5::service: FINDNODE request failed with partial results node_id=0xf7fa..2492 addr=54.178.44.198:9000 error=Timeout received=13 expected=3 +2024-09-21T22:03:28.995317Z INFO fork_choice_control::block_processor: Validating block with slot: 3552 +2024-09-21T22:03:29.005936Z INFO fork_choice_control::block_processor: Validating block with slot: 3553 +2024-09-21T22:03:29.015064Z INFO fork_choice_control::block_processor: Validating block with slot: 3554 +2024-09-21T22:03:29.039151Z INFO fork_choice_control::block_processor: Validating block with slot: 3555 +2024-09-21T22:03:29.053347Z INFO fork_choice_control::block_processor: Validating block with slot: 3556 +2024-09-21T22:03:29.063168Z INFO fork_choice_control::block_processor: Validating block with slot: 3557 +2024-09-21T22:03:29.075922Z INFO fork_choice_control::block_processor: Validating block with slot: 3558 +2024-09-21T22:03:29.103491Z INFO fork_choice_control::block_processor: Validating block with slot: 3560 +2024-09-21T22:03:29.118549Z INFO fork_choice_control::block_processor: Validating block with slot: 3561 +2024-09-21T22:03:29.136419Z INFO fork_choice_control::block_processor: Validating block with slot: 3562 +2024-09-21T22:03:29.154726Z INFO fork_choice_control::block_processor: Validating block with slot: 3564 +2024-09-21T22:03:29.159573Z INFO fork_choice_control::block_processor: Validating block with slot: 3565 +2024-09-21T22:03:29.411984Z INFO fork_choice_control::block_processor: Validating block with slot: 3566 +2024-09-21T22:03:29.414327Z INFO fork_choice_control::block_processor: Validating block with slot: 3567 +2024-09-21T22:03:29.424300Z INFO fork_choice_control::block_processor: Validating block with slot: 3568 +2024-09-21T22:03:29.435990Z INFO fork_choice_control::block_processor: Validating block with slot: 3569 +2024-09-21T22:03:29.456928Z INFO fork_choice_control::block_processor: Validating block with slot: 3570 +2024-09-21T22:03:29.465278Z INFO fork_choice_control::block_processor: Validating block with slot: 3571 +2024-09-21T22:03:29.488663Z INFO fork_choice_control::block_processor: Validating block with slot: 3572 +2024-09-21T22:03:29.508932Z INFO fork_choice_control::block_processor: Validating block with slot: 3573 +2024-09-21T22:03:29.514249Z INFO fork_choice_control::block_processor: Validating block with slot: 3574 +2024-09-21T22:03:29.535895Z INFO fork_choice_control::block_processor: Validating block with slot: 3575 +2024-09-21T22:03:29.541704Z INFO fork_choice_control::block_processor: Validating block with slot: 3576 +2024-09-21T22:03:29.559788Z INFO fork_choice_control::block_processor: Validating block with slot: 3577 +2024-09-21T22:03:29.587857Z INFO fork_choice_control::block_processor: Validating block with slot: 3579 +2024-09-21T22:03:29.593493Z INFO fork_choice_control::block_processor: Validating block with slot: 3580 +2024-09-21T22:03:29.619134Z INFO fork_choice_control::block_processor: Validating block with slot: 3581 +2024-09-21T22:03:29.622000Z INFO fork_choice_control::block_processor: Validating block with slot: 3582 +2024-09-21T22:03:29.647131Z INFO fork_choice_control::block_processor: Validating block with slot: 3583 +2024-09-21T22:03:29.817161Z INFO fork_choice_control::block_processor: Validating block with slot: 3584 +2024-09-21T22:03:29.841177Z INFO fork_choice_control::block_processor: Validating block with slot: 3585 +2024-09-21T22:03:29.889060Z INFO fork_choice_control::block_processor: Validating block with slot: 3586 +2024-09-21T22:03:29.901194Z INFO fork_choice_control::block_processor: Validating block with slot: 3587 +2024-09-21T22:03:29.901217Z INFO fork_choice_control::block_processor: Validating block with slot: 3589 +2024-09-21T22:03:29.901240Z INFO fork_choice_control::block_processor: Validating block with slot: 3588 +2024-09-21T22:03:29.903748Z INFO fork_choice_control::block_processor: Validating block with slot: 3590 +2024-09-21T22:03:29.926686Z INFO fork_choice_control::block_processor: Validating block with slot: 3591 +2024-09-21T22:03:29.926690Z INFO fork_choice_control::block_processor: Validating block with slot: 3592 +2024-09-21T22:03:29.946772Z INFO fork_choice_control::block_processor: Validating block with slot: 3593 +2024-09-21T22:03:29.963615Z INFO fork_choice_control::block_processor: Validating block with slot: 3595 +2024-09-21T22:03:29.963619Z INFO fork_choice_control::block_processor: Validating block with slot: 3594 +2024-09-21T22:03:29.974744Z INFO fork_choice_control::block_processor: Validating block with slot: 3596 +2024-09-21T22:03:29.991562Z INFO fork_choice_control::block_processor: Validating block with slot: 3597 +2024-09-21T22:03:29.991559Z INFO fork_choice_control::block_processor: Validating block with slot: 3598 +2024-09-21T22:03:30.017294Z INFO fork_choice_control::block_processor: Validating block with slot: 3599 +2024-09-21T22:03:30.018802Z INFO fork_choice_control::block_processor: Validating block with slot: 3600 +2024-09-21T22:03:30.023567Z INFO fork_choice_control::block_processor: Validating block with slot: 3601 +2024-09-21T22:03:30.023579Z INFO fork_choice_control::block_processor: Validating block with slot: 3602 +2024-09-21T22:03:30.516780Z INFO fork_choice_control::block_processor: Validating block with slot: 3605 +2024-09-21T22:03:30.516785Z INFO fork_choice_control::block_processor: Validating block with slot: 3603 +2024-09-21T22:03:30.516801Z INFO fork_choice_control::block_processor: Validating block with slot: 3608 +2024-09-21T22:03:30.516851Z INFO fork_choice_control::block_processor: Validating block with slot: 3604 +2024-09-21T22:03:30.517002Z INFO fork_choice_control::block_processor: Validating block with slot: 3607 +2024-09-21T22:03:30.558968Z INFO fork_choice_control::block_processor: Validating block with slot: 3609 +2024-09-21T22:03:30.607190Z INFO fork_choice_control::block_processor: Validating block with slot: 3296 +2024-09-21T22:03:30.607229Z INFO fork_choice_control::block_processor: Validating block with slot: 3299 +2024-09-21T22:03:30.607261Z INFO fork_choice_control::block_processor: Validating block with slot: 3297 +2024-09-21T22:03:30.607266Z INFO fork_choice_control::block_processor: Validating block with slot: 3302 +2024-09-21T22:03:30.607275Z INFO fork_choice_control::block_processor: Validating block with slot: 3298 +2024-09-21T22:03:30.607345Z INFO fork_choice_control::block_processor: Validating block with slot: 3303 +2024-09-21T22:03:30.607402Z INFO fork_choice_control::block_processor: Validating block with slot: 3300 +2024-09-21T22:03:30.608312Z INFO fork_choice_control::block_processor: Validating block with slot: 3304 +2024-09-21T22:03:30.608750Z INFO fork_choice_control::block_processor: Validating block with slot: 3305 +2024-09-21T22:03:30.609190Z INFO fork_choice_control::block_processor: Validating block with slot: 3306 +2024-09-21T22:03:30.609862Z INFO fork_choice_control::block_processor: Validating block with slot: 3301 +2024-09-21T22:03:30.610101Z INFO fork_choice_control::block_processor: Validating block with slot: 3308 +2024-09-21T22:03:30.611254Z INFO fork_choice_control::block_processor: Validating block with slot: 3309 +2024-09-21T22:03:30.611501Z INFO fork_choice_control::block_processor: Validating block with slot: 3310 +2024-09-21T22:03:30.612029Z INFO fork_choice_control::block_processor: Validating block with slot: 3314 +2024-09-21T22:03:30.612067Z INFO fork_choice_control::block_processor: Validating block with slot: 3315 +2024-09-21T22:03:30.612326Z INFO fork_choice_control::block_processor: Validating block with slot: 3311 +2024-09-21T22:03:30.612842Z INFO fork_choice_control::block_processor: Validating block with slot: 3316 +2024-09-21T22:03:30.612846Z INFO fork_choice_control::block_processor: Validating block with slot: 3317 +2024-09-21T22:03:30.613329Z INFO fork_choice_control::block_processor: Validating block with slot: 3318 +2024-09-21T22:03:30.614552Z INFO fork_choice_control::block_processor: Validating block with slot: 3319 +2024-09-21T22:03:30.614628Z INFO fork_choice_control::block_processor: Validating block with slot: 3323 +2024-09-21T22:03:30.614626Z INFO fork_choice_control::block_processor: Validating block with slot: 3322 +2024-09-21T22:03:30.614656Z INFO fork_choice_control::block_processor: Validating block with slot: 3312 +2024-09-21T22:03:30.614722Z INFO fork_choice_control::block_processor: Validating block with slot: 3313 +2024-09-21T22:03:30.615703Z INFO fork_choice_control::block_processor: Validating block with slot: 3324 +2024-09-21T22:03:30.615730Z INFO fork_choice_control::block_processor: Validating block with slot: 3326 +2024-09-21T22:03:30.617051Z INFO fork_choice_control::block_processor: Validating block with slot: 3327 +2024-09-21T22:03:30.617370Z INFO fork_choice_control::block_processor: Validating block with slot: 3321 +2024-09-21T22:03:30.617531Z INFO fork_choice_control::block_processor: Validating block with slot: 3320 +2024-09-21T22:03:30.620412Z INFO fork_choice_control::block_processor: Validating block with slot: 3329 +2024-09-21T22:03:30.620443Z INFO fork_choice_control::block_processor: Validating block with slot: 3611 +2024-09-21T22:03:30.620454Z INFO fork_choice_control::block_processor: Validating block with slot: 3330 +2024-09-21T22:03:30.620472Z INFO fork_choice_control::block_processor: Validating block with slot: 3613 +2024-09-21T22:03:30.620854Z INFO fork_choice_control::block_processor: Validating block with slot: 3610 +2024-09-21T22:03:30.620970Z INFO fork_choice_control::block_processor: Validating block with slot: 3612 +2024-09-21T22:03:30.623255Z INFO fork_choice_control::block_processor: Validating block with slot: 3614 +2024-09-21T22:03:30.623300Z INFO fork_choice_control::block_processor: Validating block with slot: 3615 +2024-09-21T22:03:30.624112Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xed4242073f675d2c17c557c0cf98cea7d286c9c32b9d42ef1e643cf022e2ba9f, slot: 3329 +2024-09-21T22:03:30.631060Z INFO fork_choice_control::block_processor: Validating block with slot: 3334 +2024-09-21T22:03:30.631071Z INFO fork_choice_control::block_processor: Validating block with slot: 3333 +2024-09-21T22:03:30.631087Z INFO fork_choice_control::block_processor: Validating block with slot: 3332 +2024-09-21T22:03:30.631102Z INFO fork_choice_control::block_processor: Validating block with slot: 3331 +2024-09-21T22:03:30.631118Z INFO fork_choice_control::block_processor: Validating block with slot: 3335 +2024-09-21T22:03:30.631127Z INFO fork_choice_control::block_processor: Validating block with slot: 3336 +2024-09-21T22:03:30.635633Z INFO fork_choice_control::block_processor: Validating block with slot: 3337 +2024-09-21T22:03:30.635689Z INFO fork_choice_control::block_processor: Validating block with slot: 3338 +2024-09-21T22:03:30.660555Z INFO fork_choice_control::block_processor: Validating block with slot: 3339 +2024-09-21T22:03:30.734544Z INFO fork_choice_control::block_processor: Validating block with slot: 3340 +2024-09-21T22:03:30.774813Z INFO fork_choice_control::block_processor: Validating block with slot: 3341 +2024-09-21T22:03:30.779386Z INFO fork_choice_control::block_processor: Validating block with slot: 3342 +2024-09-21T22:03:30.779426Z INFO fork_choice_control::block_processor: Validating block with slot: 3343 +2024-09-21T22:03:30.817492Z INFO fork_choice_control::block_processor: Validating block with slot: 3344 +2024-09-21T22:03:30.817521Z INFO fork_choice_control::block_processor: Validating block with slot: 3345 +2024-09-21T22:03:30.817539Z INFO fork_choice_control::block_processor: Validating block with slot: 3346 +2024-09-21T22:03:30.817564Z INFO fork_choice_control::block_processor: Validating block with slot: 3347 +2024-09-21T22:03:30.823935Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3329 +2024-09-21T22:03:30.823958Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3329 +2024-09-21T22:03:30.835216Z INFO fork_choice_control::block_processor: Validating block with slot: 3330 +2024-09-21T22:03:30.836211Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x67f1f6eb67433dfb5e23ae353eaf19c7068302910e144db8a4eabe6923fe62cc, slot: 3330 +2024-09-21T22:03:30.855951Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3330 +2024-09-21T22:03:30.855975Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3330 +2024-09-21T22:03:30.867184Z INFO fork_choice_control::block_processor: Validating block with slot: 3331 +2024-09-21T22:03:30.869552Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd6b6a28ce1268bd883c0b1ccf6b1a1631b5c41150930a54236a9f8a70448f678, slot: 3331 +2024-09-21T22:03:30.893312Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3331 +2024-09-21T22:03:30.893332Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3331 +2024-09-21T22:03:30.905316Z INFO fork_choice_control::block_processor: Validating block with slot: 3332 +2024-09-21T22:03:30.906439Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdc89df0b86fb45e5e6f0875b7d2a3e55fb64b8222c755d01775d9b7ab4c28eb7, slot: 3332 +2024-09-21T22:03:30.926933Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3332 +2024-09-21T22:03:30.926957Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3332 +2024-09-21T22:03:30.939062Z INFO fork_choice_control::block_processor: Validating block with slot: 3333 +2024-09-21T22:03:30.940321Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb948c4b07668d90a294f4c6fde65b8a4d9fa9a41342e57fe94b95a2335efab81, slot: 3333 +2024-09-21T22:03:30.964316Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3333 +2024-09-21T22:03:30.964338Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3333 +2024-09-21T22:03:30.976867Z INFO fork_choice_control::block_processor: Validating block with slot: 3334 +2024-09-21T22:03:30.977843Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb0a66399fae8673629f708cc41dfbf575fedc1699eb51d392028cbe4c10d1b8e, slot: 3334 +2024-09-21T22:03:30.997273Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3334 +2024-09-21T22:03:30.997290Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3334 +2024-09-21T22:03:31.009639Z INFO fork_choice_control::block_processor: Validating block with slot: 3335 +2024-09-21T22:03:31.010627Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x66a9012229e6a7a3ef37adc35b0bb254a788e6d9ce96fbd31edc30ea90b3e609, slot: 3335 +2024-09-21T22:03:31.030084Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3335 +2024-09-21T22:03:31.030100Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3335 +2024-09-21T22:03:31.042632Z INFO fork_choice_control::block_processor: Validating block with slot: 3336 +2024-09-21T22:03:31.043715Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe89a5051e22b9ba7138f5733343482945ca1366154777e12199de6a6d400d177, slot: 3336 +2024-09-21T22:03:31.061777Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3336 +2024-09-21T22:03:31.061793Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3336 +2024-09-21T22:03:31.075180Z INFO fork_choice_control::block_processor: Validating block with slot: 3337 +2024-09-21T22:03:31.077316Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xebf8e6db7f930cf42a4d596bf1a982da8ae5f5983d8693e4aafb7b2b611fd80a, slot: 3337 +2024-09-21T22:03:31.103593Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3337 +2024-09-21T22:03:31.103613Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3337 +2024-09-21T22:03:31.116404Z INFO fork_choice_control::block_processor: Validating block with slot: 3338 +2024-09-21T22:03:31.118704Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf33d918f38ea908d4e16ef27336babf843896396b6f94f4009a879859c2cbfa2, slot: 3338 +2024-09-21T22:03:31.144694Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3338 +2024-09-21T22:03:31.144718Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3338 +2024-09-21T22:03:31.158131Z INFO fork_choice_control::block_processor: Validating block with slot: 3339 +2024-09-21T22:03:31.159784Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf9cfb383f865232513093565fffd19f63f7e5d9494c90ff3f0e030946a0be692, slot: 3339 +2024-09-21T22:03:31.184315Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3339 +2024-09-21T22:03:31.184336Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3339 +2024-09-21T22:03:31.197538Z INFO fork_choice_control::block_processor: Validating block with slot: 3340 +2024-09-21T22:03:31.198507Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2c897d7be4414bb0c8514d74c90591fc6be025234123b77021cf6316351b386b, slot: 3340 +2024-09-21T22:03:31.225080Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3340 +2024-09-21T22:03:31.225102Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3340 +2024-09-21T22:03:31.239061Z INFO fork_choice_control::block_processor: Validating block with slot: 3341 +2024-09-21T22:03:31.240069Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1d0d0dc4e56ba75f6b37c437cdcb140b6e61545a7b01585b03a6938383eb4740, slot: 3341 +2024-09-21T22:03:31.261069Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3341 +2024-09-21T22:03:31.261094Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3341 +2024-09-21T22:03:31.276231Z INFO fork_choice_control::block_processor: Validating block with slot: 3342 +2024-09-21T22:03:31.277938Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x858ec2436f5f0335d9929d662efab83373e17433796dee61d74630daf9ca64ae, slot: 3342 +2024-09-21T22:03:31.303322Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3342 +2024-09-21T22:03:31.303346Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3342 +2024-09-21T22:03:31.304214Z INFO fork_choice_control::block_processor: Validating block with slot: 3348 +2024-09-21T22:03:31.304254Z INFO fork_choice_control::block_processor: Validating block with slot: 3352 +2024-09-21T22:03:31.304248Z INFO fork_choice_control::block_processor: Validating block with slot: 3353 +2024-09-21T22:03:31.304266Z INFO fork_choice_control::block_processor: Validating block with slot: 3351 +2024-09-21T22:03:31.304272Z INFO fork_choice_control::block_processor: Validating block with slot: 3354 +2024-09-21T22:03:31.304292Z INFO fork_choice_control::block_processor: Validating block with slot: 3350 +2024-09-21T22:03:31.304346Z INFO fork_choice_control::block_processor: Validating block with slot: 3355 +2024-09-21T22:03:31.305234Z INFO fork_choice_control::block_processor: Validating block with slot: 3356 +2024-09-21T22:03:31.305595Z INFO fork_choice_control::block_processor: Validating block with slot: 3357 +2024-09-21T22:03:31.306395Z INFO fork_choice_control::block_processor: Validating block with slot: 3358 +2024-09-21T22:03:31.319643Z INFO fork_choice_control::block_processor: Validating block with slot: 3343 +2024-09-21T22:03:31.320757Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8f02d57151e4076533cf88286df43fb1c2c15d8dba707a075503bd1ef0a1621d, slot: 3343 +2024-09-21T22:03:31.341288Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3343 +2024-09-21T22:03:31.341310Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3343 +2024-09-21T22:03:31.351046Z INFO fork_choice_control::block_processor: Validating block with slot: 3359 +2024-09-21T22:03:31.351142Z INFO fork_choice_control::block_processor: Validating block with slot: 3424 +2024-09-21T22:03:31.351187Z INFO fork_choice_control::block_processor: Validating block with slot: 3425 +2024-09-21T22:03:31.351434Z INFO fork_choice_control::block_processor: Validating block with slot: 3426 +2024-09-21T22:03:31.352133Z INFO fork_choice_control::block_processor: Validating block with slot: 3428 +2024-09-21T22:03:31.353177Z INFO fork_choice_control::block_processor: Validating block with slot: 3429 +2024-09-21T22:03:31.353268Z INFO fork_choice_control::block_processor: Validating block with slot: 3430 +2024-09-21T22:03:31.354029Z INFO fork_choice_control::block_processor: Validating block with slot: 3431 +2024-09-21T22:03:31.354355Z INFO fork_choice_control::block_processor: Validating block with slot: 3427 +2024-09-21T22:03:31.354559Z INFO fork_choice_control::block_processor: Validating block with slot: 3432 +2024-09-21T22:03:31.354798Z INFO fork_choice_control::block_processor: Validating block with slot: 3434 +2024-09-21T22:03:31.355066Z INFO fork_choice_control::block_processor: Validating block with slot: 3435 +2024-09-21T22:03:31.355163Z INFO fork_choice_control::block_processor: Validating block with slot: 3436 +2024-09-21T22:03:31.355341Z INFO fork_choice_control::block_processor: Validating block with slot: 3437 +2024-09-21T22:03:31.355875Z INFO fork_choice_control::block_processor: Validating block with slot: 3438 +2024-09-21T22:03:31.356194Z INFO fork_choice_control::block_processor: Validating block with slot: 3433 +2024-09-21T22:03:31.357769Z INFO fork_choice_control::block_processor: Validating block with slot: 3344 +2024-09-21T22:03:31.359061Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa34b81f7ad02ef03bf908e78bc9d7b7d1409794674b74d0f05b50a4377bf7e4d, slot: 3344 +2024-09-21T22:03:31.377831Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3344 +2024-09-21T22:03:31.377851Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3344 +2024-09-21T22:03:31.392699Z INFO fork_choice_control::block_processor: Validating block with slot: 3345 +2024-09-21T22:03:31.393667Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb91987399522644813aba106691c596a7840400f1b902369b4b2e740fa6e77fe, slot: 3345 +2024-09-21T22:03:31.412698Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3345 +2024-09-21T22:03:31.412718Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3345 +2024-09-21T22:03:31.428242Z INFO fork_choice_control::block_processor: Validating block with slot: 3346 +2024-09-21T22:03:31.429435Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf8ca8d89b4fd252c15a1bc5bc6075208cac05506396621f2b7d615e66cfd34f2, slot: 3346 +2024-09-21T22:03:31.449306Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3346 +2024-09-21T22:03:31.449327Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3346 +2024-09-21T22:03:31.451875Z INFO fork_choice_control::block_processor: Validating block with slot: 3439 +2024-09-21T22:03:31.451929Z INFO fork_choice_control::block_processor: Validating block with slot: 3441 +2024-09-21T22:03:31.451972Z INFO fork_choice_control::block_processor: Validating block with slot: 3440 +2024-09-21T22:03:31.451995Z INFO fork_choice_control::block_processor: Validating block with slot: 3445 +2024-09-21T22:03:31.452108Z INFO fork_choice_control::block_processor: Validating block with slot: 3443 +2024-09-21T22:03:31.452874Z INFO fork_choice_control::block_processor: Validating block with slot: 3446 +2024-09-21T22:03:31.453054Z INFO fork_choice_control::block_processor: Validating block with slot: 3447 +2024-09-21T22:03:31.453581Z INFO fork_choice_control::block_processor: Validating block with slot: 3448 +2024-09-21T22:03:31.454097Z INFO fork_choice_control::block_processor: Validating block with slot: 3449 +2024-09-21T22:03:31.455806Z INFO fork_choice_control::block_processor: Validating block with slot: 3450 +2024-09-21T22:03:31.457083Z INFO fork_choice_control::block_processor: Validating block with slot: 3454 +2024-09-21T22:03:31.457507Z INFO fork_choice_control::block_processor: Validating block with slot: 3451 +2024-09-21T22:03:31.458480Z INFO fork_choice_control::block_processor: Validating block with slot: 3455 +2024-09-21T22:03:31.458564Z INFO fork_choice_control::block_processor: Validating block with slot: 3457 +2024-09-21T22:03:31.458998Z INFO fork_choice_control::block_processor: Validating block with slot: 3452 +2024-09-21T22:03:31.459563Z INFO fork_choice_control::block_processor: Validating block with slot: 3458 +2024-09-21T22:03:31.459582Z INFO fork_choice_control::block_processor: Validating block with slot: 3459 +2024-09-21T22:03:31.460641Z INFO fork_choice_control::block_processor: Validating block with slot: 3460 +2024-09-21T22:03:31.460806Z INFO fork_choice_control::block_processor: Validating block with slot: 3461 +2024-09-21T22:03:31.462556Z INFO fork_choice_control::block_processor: Validating block with slot: 3442 +2024-09-21T22:03:31.462627Z INFO fork_choice_control::block_processor: Validating block with slot: 3463 +2024-09-21T22:03:31.463600Z INFO fork_choice_control::block_processor: Validating block with slot: 3464 +2024-09-21T22:03:31.464774Z INFO fork_choice_control::block_processor: Validating block with slot: 3444 +2024-09-21T22:03:31.465365Z INFO fork_choice_control::block_processor: Validating block with slot: 3453 +2024-09-21T22:03:31.466332Z INFO fork_choice_control::block_processor: Validating block with slot: 3462 +2024-09-21T22:03:31.480831Z INFO fork_choice_control::block_processor: Validating block with slot: 3347 +2024-09-21T22:03:31.482267Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x179947f3ebefa9e26ca20d2b9700a6d876d8f6bf028a265075e7f9fc5bbf74db, slot: 3347 +2024-09-21T22:03:31.508108Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3347 +2024-09-21T22:03:31.508215Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3347 +2024-09-21T22:03:31.525999Z INFO fork_choice_control::block_processor: Validating block with slot: 3348 +2024-09-21T22:03:31.527905Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x75a10ee51b7df613afbdd9282526b756b6a638bbf59ce054e3aa2bf64d7050b8, slot: 3348 +2024-09-21T22:03:31.552867Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3348 +2024-09-21T22:03:31.552887Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3348 +2024-09-21T22:03:31.568028Z INFO fork_choice_control::block_processor: Validating block with slot: 3350 +2024-09-21T22:03:31.569862Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x202001eebf0112719b9e8aff3eec691ce32056576446001eded0e84bb14d7791, slot: 3350 +2024-09-21T22:03:31.603951Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3350 +2024-09-21T22:03:31.603978Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3350 +2024-09-21T22:03:31.619619Z INFO fork_choice_control::block_processor: Validating block with slot: 3351 +2024-09-21T22:03:31.621149Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x854b3281d09b9cfe32d78edeee5e16d515c53c209cac3ebdae73e8f445d88146, slot: 3351 +2024-09-21T22:03:31.640117Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3351 +2024-09-21T22:03:31.640141Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3351 +2024-09-21T22:03:31.667928Z INFO fork_choice_control::block_processor: Validating block with slot: 3465 +2024-09-21T22:03:31.668108Z INFO fork_choice_control::block_processor: Validating block with slot: 3467 +2024-09-21T22:03:31.669185Z INFO fork_choice_control::block_processor: Validating block with slot: 3468 +2024-09-21T22:03:31.669630Z INFO fork_choice_control::block_processor: Validating block with slot: 3469 +2024-09-21T22:03:31.671982Z INFO fork_choice_control::block_processor: Validating block with slot: 3466 +2024-09-21T22:03:31.676861Z INFO fork_choice_control::block_processor: Validating block with slot: 3471 +2024-09-21T22:03:31.676876Z INFO fork_choice_control::block_processor: Validating block with slot: 3470 +2024-09-21T22:03:31.676903Z INFO fork_choice_control::block_processor: Validating block with slot: 3472 +2024-09-21T22:03:31.676912Z INFO fork_choice_control::block_processor: Validating block with slot: 3476 +2024-09-21T22:03:31.676916Z INFO fork_choice_control::block_processor: Validating block with slot: 3475 +2024-09-21T22:03:31.678802Z INFO fork_choice_control::block_processor: Validating block with slot: 3473 +2024-09-21T22:03:31.679744Z INFO fork_choice_control::block_processor: Validating block with slot: 3474 +2024-09-21T22:03:31.682267Z INFO fork_choice_control::block_processor: Validating block with slot: 3477 +2024-09-21T22:03:31.682273Z INFO fork_choice_control::block_processor: Validating block with slot: 3478 +2024-09-21T22:03:31.682283Z INFO fork_choice_control::block_processor: Validating block with slot: 3479 +2024-09-21T22:03:31.682520Z INFO fork_choice_control::block_processor: Validating block with slot: 3480 +2024-09-21T22:03:31.689725Z INFO fork_choice_control::block_processor: Validating block with slot: 3481 +2024-09-21T22:03:31.690039Z INFO fork_choice_control::block_processor: Validating block with slot: 3482 +2024-09-21T22:03:31.690043Z INFO fork_choice_control::block_processor: Validating block with slot: 3483 +2024-09-21T22:03:31.690732Z INFO fork_choice_control::block_processor: Validating block with slot: 3485 +2024-09-21T22:03:31.691156Z INFO fork_choice_control::block_processor: Validating block with slot: 3484 +2024-09-21T22:03:31.691915Z INFO fork_choice_control::block_processor: Validating block with slot: 3486 +2024-09-21T22:03:31.709381Z INFO fork_choice_control::block_processor: Validating block with slot: 3352 +2024-09-21T22:03:31.709385Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 103, root: 0x26f7d8052a9565d50324f0f6fc085cbbe49a3ab01b0a555acd1c982e4e81be8e, head slot: 3351, head root: 0x854b3281d09b9cfe32d78edeee5e16d515c53c209cac3ebdae73e8f445d88146) +2024-09-21T22:03:31.710392Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8adf847a45664f7e3f210d9986c135633e8c6140f501c39806e8bb513d587733, slot: 3352 +2024-09-21T22:03:31.730415Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3352 +2024-09-21T22:03:31.730436Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3352 +2024-09-21T22:03:31.746435Z INFO fork_choice_control::block_processor: Validating block with slot: 3353 +2024-09-21T22:03:31.747553Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc602d8b044acf3b75195842d0348927edb1a51ba8d3c68c95e22098397fddc34, slot: 3353 +2024-09-21T22:03:31.767144Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3353 +2024-09-21T22:03:31.767168Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3353 +2024-09-21T22:03:31.783167Z INFO fork_choice_control::block_processor: Validating block with slot: 3354 +2024-09-21T22:03:31.784295Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1643bebfb1c8454cdb80d86cadaf8f0e6d1c053d43ae71812e854e5c7e283ddd, slot: 3354 +2024-09-21T22:03:31.807222Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3354 +2024-09-21T22:03:31.807243Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3354 +2024-09-21T22:03:31.823708Z INFO fork_choice_control::block_processor: Validating block with slot: 3355 +2024-09-21T22:03:31.824699Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x156027e03f2a9a41f425d352b08096f37274c5179fc4ba88d8609864dd024e14, slot: 3355 +2024-09-21T22:03:31.845717Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3355 +2024-09-21T22:03:31.845740Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3355 +2024-09-21T22:03:31.851618Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 3296 +2024-09-21T22:03:31.854176Z INFO fork_choice_control::block_processor: Validating block with slot: 3487 +2024-09-21T22:03:31.862645Z INFO fork_choice_control::block_processor: Validating block with slot: 3356 +2024-09-21T22:03:31.863615Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfffce46019c4ea1d76df0d74b70d04fa4c290e8ee342f9c423f5d85982ba1546, slot: 3356 +2024-09-21T22:03:31.883244Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3356 +2024-09-21T22:03:31.883265Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3356 +2024-09-21T22:03:31.900350Z INFO fork_choice_control::block_processor: Validating block with slot: 3357 +2024-09-21T22:03:31.901493Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6a5a41f843583628dff14b9343ae275fd4ab50e9027d47e05906895c3260f068, slot: 3357 +2024-09-21T22:03:31.920047Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3357 +2024-09-21T22:03:31.920068Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3357 +2024-09-21T22:03:31.936881Z INFO fork_choice_control::block_processor: Validating block with slot: 3358 +2024-09-21T22:03:31.938441Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x327e3f3dc6f9aa1238386df09d5f74c8373dcd0ccfa233c84a917143d7da6d91, slot: 3358 +2024-09-21T22:03:31.964324Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3358 +2024-09-21T22:03:31.964341Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3358 +2024-09-21T22:03:31.981369Z INFO fork_choice_control::block_processor: Validating block with slot: 3359 +2024-09-21T22:03:31.983765Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x57385a0e4e8c95a455c694fe16c0f3ea89142d257fa4ca3bdf60dabb842443f2, slot: 3359 +2024-09-21T22:03:32.012418Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3359 +2024-09-21T22:03:32.012439Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3359 +2024-09-21T22:03:32.480726Z WARN discv5::service: FINDNODE request failed with partial results node_id=0xde80..7305 addr=65.21.227.211:9000 error=Timeout received=13 expected=3 +2024-09-21T22:03:33.196653Z WARN discv5::service: FINDNODE request failed with partial results node_id=0xde8c..5353 addr=24.230.32.231:9112 error=Timeout received=13 expected=3 +2024-09-21T22:03:41.623590Z WARN discv5::service: FINDNODE request failed with partial results node_id=0xeb58..b1b0 addr=3.9.20.214:12001 error=Timeout received=15 expected=3 +2024-09-21T22:03:41.644265Z WARN discv5::service: FINDNODE request failed with partial results node_id=0xeb4e..98e6 addr=194.33.43.94:9100 error=Timeout received=13 expected=3 +2024-09-21T22:03:41.929445Z WARN discv5::service: FINDNODE request failed with partial results node_id=0xeb70..d121 addr=217.122.168.238:12103 error=Timeout received=11 expected=3 +2024-09-21T22:03:42.695458Z INFO fork_choice_control::block_processor: Validating block with slot: 3392 +2024-09-21T22:03:42.711693Z INFO fork_choice_control::block_processor: Validating block with slot: 3393 +2024-09-21T22:03:42.900523Z INFO fork_choice_control::block_processor: Validating block with slot: 3394 +2024-09-21T22:03:42.900552Z INFO fork_choice_control::block_processor: Validating block with slot: 3396 +2024-09-21T22:03:42.900551Z INFO fork_choice_control::block_processor: Validating block with slot: 3395 +2024-09-21T22:03:42.906303Z INFO fork_choice_control::block_processor: Validating block with slot: 3397 +2024-09-21T22:03:42.917484Z INFO fork_choice_control::block_processor: Validating block with slot: 3398 +2024-09-21T22:03:42.933390Z INFO fork_choice_control::block_processor: Validating block with slot: 3399 +2024-09-21T22:03:42.972737Z INFO fork_choice_control::block_processor: Validating block with slot: 3401 +2024-09-21T22:03:42.972741Z INFO fork_choice_control::block_processor: Validating block with slot: 3400 +2024-09-21T22:03:42.989780Z INFO fork_choice_control::block_processor: Validating block with slot: 3402 +2024-09-21T22:03:43.005805Z INFO fork_choice_control::block_processor: Validating block with slot: 3403 +2024-09-21T22:03:43.017759Z INFO fork_choice_control::block_processor: Validating block with slot: 3404 +2024-09-21T22:03:43.059806Z INFO fork_choice_control::block_processor: Validating block with slot: 3405 +2024-09-21T22:03:43.072032Z INFO fork_choice_control::block_processor: Validating block with slot: 3406 +2024-09-21T22:03:43.091990Z INFO fork_choice_control::block_processor: Validating block with slot: 3407 +2024-09-21T22:03:43.242229Z INFO fork_choice_control::block_processor: Validating block with slot: 3409 +2024-09-21T22:03:43.242224Z INFO fork_choice_control::block_processor: Validating block with slot: 3408 +2024-09-21T22:03:43.260036Z INFO fork_choice_control::block_processor: Validating block with slot: 3410 +2024-09-21T22:03:43.291055Z INFO fork_choice_control::block_processor: Validating block with slot: 3411 +2024-09-21T22:03:43.306461Z INFO fork_choice_control::block_processor: Validating block with slot: 3412 +2024-09-21T22:03:43.314319Z INFO fork_choice_control::block_processor: Validating block with slot: 3413 +2024-09-21T22:03:43.360592Z INFO fork_choice_control::block_processor: Validating block with slot: 3415 +2024-09-21T22:03:43.366513Z INFO fork_choice_control::block_processor: Validating block with slot: 3416 +2024-09-21T22:03:43.381345Z INFO fork_choice_control::block_processor: Validating block with slot: 3417 +2024-09-21T22:03:43.403094Z INFO fork_choice_control::block_processor: Validating block with slot: 3419 +2024-09-21T22:03:43.408856Z INFO fork_choice_control::block_processor: Validating block with slot: 3420 +2024-09-21T22:03:43.418433Z INFO fork_choice_control::block_processor: Validating block with slot: 3421 +2024-09-21T22:03:43.434952Z INFO fork_choice_control::block_processor: Validating block with slot: 3422 +2024-09-21T22:03:43.443989Z INFO fork_choice_control::block_processor: Validating block with slot: 3423 +2024-09-21T22:03:44.411891Z WARN discv5::service: FINDNODE request failed with partial results node_id=0x29bf..bf7e addr=3.64.117.223:9100 error=Timeout received=15 expected=3 +2024-09-21T22:03:45.645643Z WARN discv5::service: FINDNODE request failed with partial results node_id=0x4544..f41b addr=15.235.86.7:9000 error=Timeout received=12 expected=3 +2024-09-21T22:03:46.213336Z WARN discv5::service: FINDNODE request failed with partial results node_id=0x5be0..2b18 addr=213.55.174.85:9000 error=Timeout received=12 expected=3 +2024-09-21T22:03:46.674209Z WARN discv5::service: FINDNODE request failed with partial results node_id=0x6957..5efd addr=176.9.3.153:4000 error=Timeout received=13 expected=3 +2024-09-21T22:03:47.518567Z WARN discv5::service: FINDNODE request failed with partial results node_id=0x41db..c6a5 addr=94.242.222.196:10001 error=Timeout received=13 expected=3 +2024-09-21T22:03:48.816261Z INFO fork_choice_control::block_processor: Validating block with slot: 3361 +2024-09-21T22:03:48.822162Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x82adc7ccee5e8ee8c4e6679f1589d7829fa9c3b9bd0afaa14358c6ef7cb10f2f, slot: 3361 +2024-09-21T22:03:48.825714Z INFO fork_choice_control::block_processor: Validating block with slot: 3362 +2024-09-21T22:03:48.825745Z INFO fork_choice_control::block_processor: Validating block with slot: 3365 +2024-09-21T22:03:48.825786Z INFO fork_choice_control::block_processor: Validating block with slot: 3363 +2024-09-21T22:03:48.825776Z INFO fork_choice_control::block_processor: Validating block with slot: 3364 +2024-09-21T22:03:48.834523Z INFO fork_choice_control::block_processor: Validating block with slot: 3366 +2024-09-21T22:03:48.834555Z INFO fork_choice_control::block_processor: Validating block with slot: 3367 +2024-09-21T22:03:48.840647Z INFO fork_choice_control::block_processor: Validating block with slot: 3369 +2024-09-21T22:03:48.840673Z INFO fork_choice_control::block_processor: Validating block with slot: 3368 +2024-09-21T22:03:48.840724Z INFO fork_choice_control::block_processor: Validating block with slot: 3370 +2024-09-21T22:03:48.843677Z INFO fork_choice_control::block_processor: Validating block with slot: 3371 +2024-09-21T22:03:48.843751Z INFO fork_choice_control::block_processor: Validating block with slot: 3372 +2024-09-21T22:03:48.854698Z INFO fork_choice_control::block_processor: Validating block with slot: 3373 +2024-09-21T22:03:48.862613Z INFO fork_choice_control::block_processor: Validating block with slot: 3374 +2024-09-21T22:03:48.862779Z INFO fork_choice_control::block_processor: Validating block with slot: 3375 +2024-09-21T22:03:48.871332Z INFO fork_choice_control::block_processor: Validating block with slot: 3376 +2024-09-21T22:03:48.871335Z INFO fork_choice_control::block_processor: Validating block with slot: 3379 +2024-09-21T22:03:48.871339Z INFO fork_choice_control::block_processor: Validating block with slot: 3378 +2024-09-21T22:03:48.871343Z INFO fork_choice_control::block_processor: Validating block with slot: 3380 +2024-09-21T22:03:48.874798Z INFO fork_choice_control::block_processor: Validating block with slot: 3377 +2024-09-21T22:03:48.880071Z INFO fork_choice_control::block_processor: Validating block with slot: 3381 +2024-09-21T22:03:48.880137Z INFO fork_choice_control::block_processor: Validating block with slot: 3382 +2024-09-21T22:03:48.885533Z INFO fork_choice_control::block_processor: Validating block with slot: 3384 +2024-09-21T22:03:48.885540Z INFO fork_choice_control::block_processor: Validating block with slot: 3383 +2024-09-21T22:03:48.885575Z INFO fork_choice_control::block_processor: Validating block with slot: 3385 +2024-09-21T22:03:49.036421Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3361 +2024-09-21T22:03:49.036446Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3361 +2024-09-21T22:03:49.047135Z INFO fork_choice_control::block_processor: Validating block with slot: 3362 +2024-09-21T22:03:49.049619Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x73e6ebfa4352d948b0449f225b5846c362379b8cc8316bff0adeac148ba19fb2, slot: 3362 +2024-09-21T22:03:49.060120Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3362 +2024-09-21T22:03:49.060146Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3362 +2024-09-21T22:03:49.071636Z INFO fork_choice_control::block_processor: Validating block with slot: 3363 +2024-09-21T22:03:49.072605Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdb74a808734c997724e1b1d23222e98a6876dc66dce74babffc24bbe451c5789, slot: 3363 +2024-09-21T22:03:49.079153Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3363 +2024-09-21T22:03:49.079169Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3363 +2024-09-21T22:03:49.090988Z INFO fork_choice_control::block_processor: Validating block with slot: 3364 +2024-09-21T22:03:49.092227Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8bf4c45780da1b557129f115ff9bbff58acad8bdd64e0d37da698ef6eedf23cb, slot: 3364 +2024-09-21T22:03:49.099526Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3364 +2024-09-21T22:03:49.099550Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3364 +2024-09-21T22:03:49.111278Z INFO fork_choice_control::block_processor: Validating block with slot: 3365 +2024-09-21T22:03:49.112243Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x47b7c2e528844bbdef7bdd7e801ecba6564bf5a53b49ef3f96495b7ffd503de0, slot: 3365 +2024-09-21T22:03:49.118778Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3365 +2024-09-21T22:03:49.118800Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3365 +2024-09-21T22:03:49.130470Z INFO fork_choice_control::block_processor: Validating block with slot: 3366 +2024-09-21T22:03:49.132701Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x14d2367a2222bd107428c9e10b65b18c5f3d271a122e328af9aabe346e46ddf0, slot: 3366 +2024-09-21T22:03:49.141891Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3366 +2024-09-21T22:03:49.141909Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3366 +2024-09-21T22:03:49.154011Z INFO fork_choice_control::block_processor: Validating block with slot: 3367 +2024-09-21T22:03:49.155249Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb3d1310e39e349b8288143454de46349318217b388860b72ba16f3708fbf9b3d, slot: 3367 +2024-09-21T22:03:49.161485Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3367 +2024-09-21T22:03:49.161499Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3367 +2024-09-21T22:03:49.174151Z INFO fork_choice_control::block_processor: Validating block with slot: 3368 +2024-09-21T22:03:49.175247Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2ce503084bf2d287c493ceaffe1f425d68f213a297214f4595a713ca31b94247, slot: 3368 +2024-09-21T22:03:49.182024Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3368 +2024-09-21T22:03:49.182040Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3368 +2024-09-21T22:03:49.195249Z INFO fork_choice_control::block_processor: Validating block with slot: 3369 +2024-09-21T22:03:49.196499Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4680513758084d61f47d4f8cd21081f2cf60798e447db9ba336430b6003df3ca, slot: 3369 +2024-09-21T22:03:49.203676Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3369 +2024-09-21T22:03:49.203697Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3369 +2024-09-21T22:03:49.216145Z INFO fork_choice_control::block_processor: Validating block with slot: 3370 +2024-09-21T22:03:49.218524Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9b9b899258fbefe7c84856ed670d1bca389d34afbe27ebd3d6723676d88762e7, slot: 3370 +2024-09-21T22:03:49.227812Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3370 +2024-09-21T22:03:49.227826Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3370 +2024-09-21T22:03:49.240730Z INFO fork_choice_control::block_processor: Validating block with slot: 3371 +2024-09-21T22:03:49.241970Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaa63a838efd9723a843a459b5055748732dbe40b0f74b677b0ff11845d597e47, slot: 3371 +2024-09-21T22:03:49.248844Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3371 +2024-09-21T22:03:49.248867Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3371 +2024-09-21T22:03:49.261952Z INFO fork_choice_control::block_processor: Validating block with slot: 3372 +2024-09-21T22:03:49.262920Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x022377d4fc99df3f8d2e2f8cd130dfdfd14bb0a1bc86d4b73670c3594f0e0a53, slot: 3372 +2024-09-21T22:03:49.269960Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3372 +2024-09-21T22:03:49.269978Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3372 +2024-09-21T22:03:49.283319Z INFO fork_choice_control::block_processor: Validating block with slot: 3373 +2024-09-21T22:03:49.284728Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x44910b203751ff13a254ac832cae882d1e04b987e3b35e9800a7a043f71e92e4, slot: 3373 +2024-09-21T22:03:49.291362Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3373 +2024-09-21T22:03:49.291375Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3373 +2024-09-21T22:03:49.305484Z INFO fork_choice_control::block_processor: Validating block with slot: 3374 +2024-09-21T22:03:49.307134Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc0bcf4cb314ae5badceca4641304331189f38b5383e33e9d680b82c9dc9696ee, slot: 3374 +2024-09-21T22:03:49.314425Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3374 +2024-09-21T22:03:49.314439Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3374 +2024-09-21T22:03:49.328019Z INFO fork_choice_control::block_processor: Validating block with slot: 3375 +2024-09-21T22:03:49.329154Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6df51724f9f414e3ca0d38a266c51688c37803f0bffbfb99de010d53ea982326, slot: 3375 +2024-09-21T22:03:49.335946Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3375 +2024-09-21T22:03:49.335967Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3375 +2024-09-21T22:03:49.349912Z INFO fork_choice_control::block_processor: Validating block with slot: 3376 +2024-09-21T22:03:49.351147Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6e36816000270e09c2b79681e5d81bb858149da49226494f2ef536567a9a76eb, slot: 3376 +2024-09-21T22:03:49.360763Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3376 +2024-09-21T22:03:49.360783Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3376 +2024-09-21T22:03:49.375227Z INFO fork_choice_control::block_processor: Validating block with slot: 3377 +2024-09-21T22:03:49.377917Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xde3e4080e41d785c9741a29a255e40a5a48261aa191874ab98441dcc31e86166, slot: 3377 +2024-09-21T22:03:49.391385Z INFO fork_choice_control::block_processor: Validating block with slot: 3386 +2024-09-21T22:03:49.391475Z INFO fork_choice_control::block_processor: Validating block with slot: 3387 +2024-09-21T22:03:49.391546Z INFO fork_choice_control::block_processor: Validating block with slot: 3388 +2024-09-21T22:03:49.391563Z INFO fork_choice_control::block_processor: Validating block with slot: 3389 +2024-09-21T22:03:49.391606Z INFO fork_choice_control::block_processor: Validating block with slot: 3390 +2024-09-21T22:03:49.391992Z INFO fork_choice_control::block_processor: Validating block with slot: 3391 +2024-09-21T22:03:49.394150Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3377 +2024-09-21T22:03:49.394163Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3377 +2024-09-21T22:03:49.409225Z INFO fork_choice_control::block_processor: Validating block with slot: 3378 +2024-09-21T22:03:49.410481Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9845dfb32b8457c7eeaedd1d79d5ad99c201f9bf8c1c9631a207f394e34d6e0a, slot: 3378 +2024-09-21T22:03:49.417699Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3378 +2024-09-21T22:03:49.417724Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3378 +2024-09-21T22:03:49.432453Z INFO fork_choice_control::block_processor: Validating block with slot: 3379 +2024-09-21T22:03:49.433702Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe68f3a15a6749992cded62f946991bf4c47e1dd520aee935bccff61b907e4956, slot: 3379 +2024-09-21T22:03:49.440349Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3379 +2024-09-21T22:03:49.440367Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3379 +2024-09-21T22:03:49.455615Z INFO fork_choice_control::block_processor: Validating block with slot: 3380 +2024-09-21T22:03:49.456582Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1a6255e57c26f3d07b21ccd3d18b7a559736e80526e2e18f31a8691babad6714, slot: 3380 +2024-09-21T22:03:49.462275Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3380 +2024-09-21T22:03:49.462287Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3380 +2024-09-21T22:03:49.477387Z INFO fork_choice_control::block_processor: Validating block with slot: 3381 +2024-09-21T22:03:49.478476Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5bbcadb853f38154b9a9eec4a907bf7873fc1ee4a2dfb225817c757be0d9330e, slot: 3381 +2024-09-21T22:03:49.484882Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3381 +2024-09-21T22:03:49.484906Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3381 +2024-09-21T22:03:49.500309Z INFO fork_choice_control::block_processor: Validating block with slot: 3382 +2024-09-21T22:03:49.501427Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3599574bd6472169602662240ec3814461b3a320872ca5c0acdc6d47b180a4ec, slot: 3382 +2024-09-21T22:03:49.507316Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3382 +2024-09-21T22:03:49.507330Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3382 +2024-09-21T22:03:49.522855Z INFO fork_choice_control::block_processor: Validating block with slot: 3383 +2024-09-21T22:03:49.524249Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8e9bc7ce08dd14c771811d620153d6a9f065967923c5d6369457825b2f10a0a0, slot: 3383 +2024-09-21T22:03:49.530646Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3383 +2024-09-21T22:03:49.530660Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3383 +2024-09-21T22:03:49.597586Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 104, root: 0x95b1c9c671e5e996f02ff033e81d514a3c08d47c6d957c12ade1d4f0c5e332a0, head slot: 3383, head root: 0x8e9bc7ce08dd14c771811d620153d6a9f065967923c5d6369457825b2f10a0a0) +2024-09-21T22:03:49.597595Z INFO fork_choice_control::block_processor: Validating block with slot: 3384 +2024-09-21T22:03:49.599670Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0105e66f233aac339978190af807c86bcc6e198ab16463f8e6c0d2020161d4d0, slot: 3384 +2024-09-21T22:03:49.608601Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3384 +2024-09-21T22:03:49.608619Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3384 +2024-09-21T22:03:49.624697Z INFO fork_choice_control::block_processor: Validating block with slot: 3385 +2024-09-21T22:03:49.625699Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6f2d0669403bb0fb244107e8d65f9b6f771e1da2c0a6a7d2d6e82736d2243ced, slot: 3385 +2024-09-21T22:03:49.633196Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3385 +2024-09-21T22:03:49.633218Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3385 +2024-09-21T22:03:49.649658Z INFO fork_choice_control::block_processor: Validating block with slot: 3386 +2024-09-21T22:03:49.651075Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf8526adad36d197557753a7da76f8cca37645f34b843105951bdd0511bd100fd, slot: 3386 +2024-09-21T22:03:49.660539Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3386 +2024-09-21T22:03:49.660560Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3386 +2024-09-21T22:03:49.678900Z INFO fork_choice_control::block_processor: Validating block with slot: 3387 +2024-09-21T22:03:49.679903Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa549969ab2b5474ba1882aa67177b26e5fc8e4820d100af0dc93010bb4bca04d, slot: 3387 +2024-09-21T22:03:49.687056Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3387 +2024-09-21T22:03:49.687079Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3387 +2024-09-21T22:03:49.703758Z INFO fork_choice_control::block_processor: Validating block with slot: 3388 +2024-09-21T22:03:49.704861Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x986b2aee8b0659f6f68ba5d0e2fb7de8346d6c7acb344884267f6e1023080020, slot: 3388 +2024-09-21T22:03:49.713442Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3388 +2024-09-21T22:03:49.713465Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3388 +2024-09-21T22:03:49.731717Z INFO fork_choice_control::block_processor: Validating block with slot: 3389 +2024-09-21T22:03:49.733300Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7b9298e52b3ba3f70d08caf0fbae44d80b2b9b8b537bf80caff1900f1ca5a235, slot: 3389 +2024-09-21T22:03:49.740487Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3389 +2024-09-21T22:03:49.740501Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3389 +2024-09-21T22:03:49.757384Z INFO fork_choice_control::block_processor: Validating block with slot: 3390 +2024-09-21T22:03:49.759168Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2d00a12621053d90cef5e20d5f4d44302884fe27d08b3461f9f1787036913523, slot: 3390 +2024-09-21T22:03:49.766804Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3390 +2024-09-21T22:03:49.766825Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3390 +2024-09-21T22:03:49.784234Z INFO fork_choice_control::block_processor: Validating block with slot: 3391 +2024-09-21T22:03:49.785326Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x94078940de6f1c6473d2803fccbc0114012efe8671b959253f90f22a66e6d951, slot: 3391 +2024-09-21T22:03:49.791290Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3391 +2024-09-21T22:03:49.791310Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3391 +2024-09-21T22:03:49.808703Z INFO fork_choice_control::block_processor: Validating block with slot: 3392 +2024-09-21T22:03:49.809838Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x000e856aff1ed1b7fe681cd76aeac1b2d6841631c4ebb7a075b819fc1c9a44ce, slot: 3392 +2024-09-21T22:03:49.906991Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3392 +2024-09-21T22:03:49.907011Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3392 +2024-09-21T22:03:49.917850Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3392) +2024-09-21T22:03:49.917991Z INFO fork_choice_control::block_processor: Validating block with slot: 3393 +2024-09-21T22:03:49.919212Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x757de62fbdc58aa46b18e1d07a6edf9f858597fad9ee33c8cfbfe18704a2fd0f, slot: 3393 +2024-09-21T22:03:49.995365Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3393 +2024-09-21T22:03:49.995392Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3393 +2024-09-21T22:03:50.008648Z INFO fork_choice_control::block_processor: Validating block with slot: 3394 +2024-09-21T22:03:50.010148Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfd311d9d1041541743b34deb4e3db9d03489d6ed04a816eafa01fbe2a67cecd2, slot: 3394 +2024-09-21T22:03:50.019577Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3394 +2024-09-21T22:03:50.019601Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3394 +2024-09-21T22:03:50.030759Z INFO fork_choice_control::block_processor: Validating block with slot: 3395 +2024-09-21T22:03:50.031989Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb0993a17030241429bf86e37f6e9cdde7d79ada2b3bf31a7fee8c220b0bfd484, slot: 3395 +2024-09-21T22:03:50.039619Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3395 +2024-09-21T22:03:50.039642Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3395 +2024-09-21T22:03:50.051087Z INFO fork_choice_control::block_processor: Validating block with slot: 3396 +2024-09-21T22:03:50.052197Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x165284a6fa9e577d434228402cdf24074b45e9cd878bed16f61927e1107363f3, slot: 3396 +2024-09-21T22:03:50.058871Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3396 +2024-09-21T22:03:50.058883Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3396 +2024-09-21T22:03:50.070786Z INFO fork_choice_control::block_processor: Validating block with slot: 3397 +2024-09-21T22:03:50.071756Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x87e8440897844165cefbe8b4fadf7e28aed136851252f3c81a31cf5010b784c1, slot: 3397 +2024-09-21T22:03:50.078157Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3397 +2024-09-21T22:03:50.078169Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3397 +2024-09-21T22:03:50.090137Z INFO fork_choice_control::block_processor: Validating block with slot: 3398 +2024-09-21T22:03:50.091146Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd979d586b0d88052dc209dbd45c7ab49996152626d7aff3a8e0078b70aba7f2f, slot: 3398 +2024-09-21T22:03:50.097396Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3398 +2024-09-21T22:03:50.097409Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3398 +2024-09-21T22:03:50.109154Z INFO fork_choice_control::block_processor: Validating block with slot: 3399 +2024-09-21T22:03:50.110276Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb96f84647bc061177a9974a6d997475babf838625518cd5ddd44bc3db04dd18a, slot: 3399 +2024-09-21T22:03:50.117008Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3399 +2024-09-21T22:03:50.117028Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3399 +2024-09-21T22:03:50.129014Z INFO fork_choice_control::block_processor: Validating block with slot: 3400 +2024-09-21T22:03:50.130001Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9112cefa955e1740b9ae247fc5619ea2352892cf3fdd4d919e80a28c5e84f042, slot: 3400 +2024-09-21T22:03:50.136464Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3400 +2024-09-21T22:03:50.136485Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3400 +2024-09-21T22:03:50.148561Z INFO fork_choice_control::block_processor: Validating block with slot: 3401 +2024-09-21T22:03:50.149702Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5bed21b9b1d04e9b3c9a7a2ce76cdeb6fa1689609551e74f85f2de5f3ddb89c2, slot: 3401 +2024-09-21T22:03:50.157509Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3401 +2024-09-21T22:03:50.157530Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3401 +2024-09-21T22:03:50.170234Z INFO fork_choice_control::block_processor: Validating block with slot: 3402 +2024-09-21T22:03:50.171672Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6d98cd6eed3b13d0d0ce6a266a1541eeff669b43bc7bca52b2fc96e366b3cc4c, slot: 3402 +2024-09-21T22:03:50.178405Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3402 +2024-09-21T22:03:50.178429Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3402 +2024-09-21T22:03:50.191163Z INFO fork_choice_control::block_processor: Validating block with slot: 3403 +2024-09-21T22:03:50.192400Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfdc1aeeac5f2343750ee80eb812b7042378dc55058270721e5682a9905e62d36, slot: 3403 +2024-09-21T22:03:50.198686Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3403 +2024-09-21T22:03:50.198703Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3403 +2024-09-21T22:03:50.211157Z INFO fork_choice_control::block_processor: Validating block with slot: 3404 +2024-09-21T22:03:50.212127Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4019adcd63a2777b33650c21baf1faa8a3429eee8a74a84d6cc949645fae94b0, slot: 3404 +2024-09-21T22:03:50.218320Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3404 +2024-09-21T22:03:50.218339Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3404 +2024-09-21T22:03:50.231061Z INFO fork_choice_control::block_processor: Validating block with slot: 3405 +2024-09-21T22:03:50.233734Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4bf6d3e6f0a6c1fcafe02dabd492b06ffa3e2bed8dee28139e372eb925dd9606, slot: 3405 +2024-09-21T22:03:50.243845Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3405 +2024-09-21T22:03:50.243861Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3405 +2024-09-21T22:03:50.256966Z INFO fork_choice_control::block_processor: Validating block with slot: 3406 +2024-09-21T22:03:50.258094Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5393b19785c3432fa9270c314e1e16b95859e33d7be3f8688b3fce7f4f04a21d, slot: 3406 +2024-09-21T22:03:50.264478Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3406 +2024-09-21T22:03:50.264492Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3406 +2024-09-21T22:03:50.277967Z INFO fork_choice_control::block_processor: Validating block with slot: 3407 +2024-09-21T22:03:50.279066Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcc4f3073ec336780b48cb19050d275fe5d3bdd09150f0e9c357bf7c209026107, slot: 3407 +2024-09-21T22:03:50.286911Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3407 +2024-09-21T22:03:50.286952Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3407 +2024-09-21T22:03:50.308914Z INFO fork_choice_control::block_processor: Validating block with slot: 3408 +2024-09-21T22:03:50.309918Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x88219b4f8a2b9aff3126e290f2e8d1f037fbe0c589cb782ec51cdb637f66ac80, slot: 3408 +2024-09-21T22:03:50.320185Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3408 +2024-09-21T22:03:50.320209Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3408 +2024-09-21T22:03:50.334277Z INFO fork_choice_control::block_processor: Validating block with slot: 3409 +2024-09-21T22:03:50.335424Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf01dc798c880db06233abac0f608d3930a1d4bd1644fd7b7fb1c54d333425f12, slot: 3409 +2024-09-21T22:03:50.342089Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3409 +2024-09-21T22:03:50.342103Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3409 +2024-09-21T22:03:50.356016Z INFO fork_choice_control::block_processor: Validating block with slot: 3410 +2024-09-21T22:03:50.356983Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb67c9dc1271d75e86cf33bb40218ee0f93743ae8964915d9a99c2f39ef6cb5f3, slot: 3410 +2024-09-21T22:03:50.362898Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3410 +2024-09-21T22:03:50.362912Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3410 +2024-09-21T22:03:50.376908Z INFO fork_choice_control::block_processor: Validating block with slot: 3411 +2024-09-21T22:03:50.377903Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0579e7e858ade5a8622e327c1eeefcb13c621e51bacd0d62a3c4c50310b8f45c, slot: 3411 +2024-09-21T22:03:50.383982Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3411 +2024-09-21T22:03:50.384003Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3411 +2024-09-21T22:03:50.397993Z INFO fork_choice_control::block_processor: Validating block with slot: 3412 +2024-09-21T22:03:50.399140Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x30170763105a4ef424e78c144b7e6a5168b727a3ea43ccd6e8e008cfbeddb2af, slot: 3412 +2024-09-21T22:03:50.405713Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3412 +2024-09-21T22:03:50.405731Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3412 +2024-09-21T22:03:50.420858Z INFO fork_choice_control::block_processor: Validating block with slot: 3413 +2024-09-21T22:03:50.421847Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe89715c1dec9d9ff16733a082094c99756f9b589695a7a900d2de9fdddc35afa, slot: 3413 +2024-09-21T22:03:50.435624Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3413 +2024-09-21T22:03:50.435648Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3413 +2024-09-21T22:03:50.453240Z INFO fork_choice_control::block_processor: Validating block with slot: 3415 +2024-09-21T22:03:50.456389Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa5aabcb764efd5fc6c734ff16a5ee22ffecc53996c7d93ada7e97d5ed3afdbf8, slot: 3415 +2024-09-21T22:03:50.469913Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3415 +2024-09-21T22:03:50.469933Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3415 +2024-09-21T22:03:50.491706Z INFO fork_choice_control::block_processor: Validating block with slot: 3416 +2024-09-21T22:03:50.491732Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 105, root: 0x57385a0e4e8c95a455c694fe16c0f3ea89142d257fa4ca3bdf60dabb842443f2, head slot: 3415, head root: 0xa5aabcb764efd5fc6c734ff16a5ee22ffecc53996c7d93ada7e97d5ed3afdbf8) +2024-09-21T22:03:50.492686Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7e8dad22e0947b06f04e1743971400ec7cc6acd1633643c6b28b5745ca77841c, slot: 3416 +2024-09-21T22:03:50.498671Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3416 +2024-09-21T22:03:50.498685Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3416 +2024-09-21T22:03:50.515281Z INFO fork_choice_control::block_processor: Validating block with slot: 3417 +2024-09-21T22:03:50.516309Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3f61315973b2e7b111ff8689f25ad6e65df8127b47a24cf6dd4f4c75b0d7250a, slot: 3417 +2024-09-21T22:03:50.522031Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3417 +2024-09-21T22:03:50.522045Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3417 +2024-09-21T22:03:50.537545Z INFO fork_choice_control::block_processor: Validating block with slot: 3419 +2024-09-21T22:03:50.539244Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9549a86aa4dbbc5725e671113627c278006ff127a58001343a88cfe4e7448073, slot: 3419 +2024-09-21T22:03:50.548317Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3419 +2024-09-21T22:03:50.548336Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3419 +2024-09-21T22:03:50.563776Z INFO fork_choice_control::block_processor: Validating block with slot: 3420 +2024-09-21T22:03:50.565426Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd00958e56326ded13fd251b58e7e1cb5e67eeee7d4337f45f9164ab45d15cf38, slot: 3420 +2024-09-21T22:03:50.572880Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3420 +2024-09-21T22:03:50.572898Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3420 +2024-09-21T22:03:50.588790Z INFO fork_choice_control::block_processor: Validating block with slot: 3421 +2024-09-21T22:03:50.589761Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x645f191aae96532332d6e69bd67e3199c2da5a32e0c1d39b765d3f5c5eb41005, slot: 3421 +2024-09-21T22:03:50.595315Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3421 +2024-09-21T22:03:50.595327Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3421 +2024-09-21T22:03:50.611264Z INFO fork_choice_control::block_processor: Validating block with slot: 3422 +2024-09-21T22:03:50.612496Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfb7ee0c084e880a32b28826155813ab73a7f0ec9f92bd04cfcdbf46f7f6e2846, slot: 3422 +2024-09-21T22:03:50.619632Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3422 +2024-09-21T22:03:50.619654Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3422 +2024-09-21T22:03:50.635875Z INFO fork_choice_control::block_processor: Validating block with slot: 3423 +2024-09-21T22:03:50.637106Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb1b3373e7fe0686e6f12011616c7809bc716a03d2f54210055d3c90f44dc4070, slot: 3423 +2024-09-21T22:03:50.643378Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3423 +2024-09-21T22:03:50.643393Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3423 +2024-09-21T22:03:50.659794Z INFO fork_choice_control::block_processor: Validating block with slot: 3424 +2024-09-21T22:03:50.660754Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4cb71c60ab34823e82d60f52b645b8dfcb4be5d2e23a927d7581bc0255e3b35a, slot: 3424 +2024-09-21T22:03:50.757060Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3424 +2024-09-21T22:03:50.757083Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3424 +2024-09-21T22:03:50.766765Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3424) +2024-09-21T22:03:50.766897Z INFO fork_choice_control::block_processor: Validating block with slot: 3425 +2024-09-21T22:03:50.768475Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xce559e3e9706336547396e7d2e10884c3a122da62c2551a235e19faa34602f88, slot: 3425 +2024-09-21T22:03:50.842689Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3425 +2024-09-21T22:03:50.842708Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3425 +2024-09-21T22:03:50.852598Z INFO fork_choice_control::block_processor: Validating block with slot: 3426 +2024-09-21T22:03:50.853966Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5a759fb8053a814d5352ffbca8cdcefd48a90b0233fbeaa3eb00a75645caf3e2, slot: 3426 +2024-09-21T22:03:50.861212Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3426 +2024-09-21T22:03:50.861224Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3426 +2024-09-21T22:03:50.871060Z INFO fork_choice_control::block_processor: Validating block with slot: 3427 +2024-09-21T22:03:50.872590Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdf142ac2a75b15ae41efd8f50cab99837969116af41e9f5443f46d7d9522d9f4, slot: 3427 +2024-09-21T22:03:50.880670Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3427 +2024-09-21T22:03:50.880682Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3427 +2024-09-21T22:03:50.890758Z INFO fork_choice_control::block_processor: Validating block with slot: 3428 +2024-09-21T22:03:50.891725Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x18528d9f2e0329573c388f7da72260dffd983ac4cf45148bcfee628c3469bf8e, slot: 3428 +2024-09-21T22:03:50.897878Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3428 +2024-09-21T22:03:50.897892Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3428 +2024-09-21T22:03:50.908105Z INFO fork_choice_control::block_processor: Validating block with slot: 3429 +2024-09-21T22:03:50.909340Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa8d3d49aa6a96f6ab4a049230ea2ec14aa21b47d8b8c12f1fc88c8f6ea945ef8, slot: 3429 +2024-09-21T22:03:50.915873Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3429 +2024-09-21T22:03:50.915889Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3429 +2024-09-21T22:03:50.926439Z INFO fork_choice_control::block_processor: Validating block with slot: 3430 +2024-09-21T22:03:50.927422Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x327d82f9ef4d9b1e139b4f94f862aa88123c29a637aa32061b53cfe307dbb895, slot: 3430 +2024-09-21T22:03:50.933643Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3430 +2024-09-21T22:03:50.933663Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3430 +2024-09-21T22:03:50.944181Z INFO fork_choice_control::block_processor: Validating block with slot: 3431 +2024-09-21T22:03:50.945161Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xefb8011a787d3e6ad4e717d8562cbbee80a43e915fefe9bce847433e25f95a10, slot: 3431 +2024-09-21T22:03:50.951615Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3431 +2024-09-21T22:03:50.951635Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3431 +2024-09-21T22:03:50.962429Z INFO fork_choice_control::block_processor: Validating block with slot: 3432 +2024-09-21T22:03:50.963838Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9e05c22d7ae8406e0bc5fa9a4344f7a0b9b46d15a949b233fb8e319c5b5837e9, slot: 3432 +2024-09-21T22:03:50.971095Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3432 +2024-09-21T22:03:50.971113Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3432 +2024-09-21T22:03:50.982087Z INFO fork_choice_control::block_processor: Validating block with slot: 3433 +2024-09-21T22:03:50.983373Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x39e2ff2feef42f6747102fee181a9e480c54ae6ba66322583d32836f025b89f8, slot: 3433 +2024-09-21T22:03:50.990141Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3433 +2024-09-21T22:03:50.990154Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3433 +2024-09-21T22:03:51.001292Z INFO fork_choice_control::block_processor: Validating block with slot: 3434 +2024-09-21T22:03:51.002388Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6847eb9d4121f30961cc8332df1991dfa43add32c9b38b0397bb51314ef6251a, slot: 3434 +2024-09-21T22:03:51.008241Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3434 +2024-09-21T22:03:51.008254Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3434 +2024-09-21T22:03:51.019524Z INFO fork_choice_control::block_processor: Validating block with slot: 3435 +2024-09-21T22:03:51.020522Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x525afe355eafe1b32bc923d09802fbaa04b2abaaf5990831199f1b30229c76fd, slot: 3435 +2024-09-21T22:03:51.026640Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3435 +2024-09-21T22:03:51.026658Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3435 +2024-09-21T22:03:51.038282Z INFO fork_choice_control::block_processor: Validating block with slot: 3436 +2024-09-21T22:03:51.039952Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xec7778762bea990dd1d6306f923393e7efd4b2fbe8795b62ed7227df42bd0735, slot: 3436 +2024-09-21T22:03:51.047250Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3436 +2024-09-21T22:03:51.047266Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3436 +2024-09-21T22:03:51.059561Z INFO fork_choice_control::block_processor: Validating block with slot: 3437 +2024-09-21T22:03:51.060806Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3ee0b7711df2fc51f7773fb7ff9a009650e36de39f9b394644c7f3c8a7b6a82f, slot: 3437 +2024-09-21T22:03:51.068757Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3437 +2024-09-21T22:03:51.068778Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3437 +2024-09-21T22:03:51.080582Z INFO fork_choice_control::block_processor: Validating block with slot: 3438 +2024-09-21T22:03:51.081683Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0e665d9c810c31e53a82b3f0f1a2e10910f22973e7715cc0f42f3aa07301262c, slot: 3438 +2024-09-21T22:03:51.088266Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3438 +2024-09-21T22:03:51.088290Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3438 +2024-09-21T22:03:51.100811Z INFO fork_choice_control::block_processor: Validating block with slot: 3439 +2024-09-21T22:03:51.101799Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x97566f35efe4c7eee402dc7806e28409bc41e684912c2511c4508f0e1aa158aa, slot: 3439 +2024-09-21T22:03:51.108262Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3439 +2024-09-21T22:03:51.108281Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3439 +2024-09-21T22:03:51.120623Z INFO fork_choice_control::block_processor: Validating block with slot: 3440 +2024-09-21T22:03:51.122290Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x45b84b64b2e7f41804e06018334809c4c4f4724686da76f0d30cbabe27028c51, slot: 3440 +2024-09-21T22:03:51.129470Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3440 +2024-09-21T22:03:51.129483Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3440 +2024-09-21T22:03:51.142143Z INFO fork_choice_control::block_processor: Validating block with slot: 3441 +2024-09-21T22:03:51.143789Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfe50bc0637962d54d178f949228a64f837b32af532e6256a6fa39dee37e25654, slot: 3441 +2024-09-21T22:03:51.151324Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3441 +2024-09-21T22:03:51.151344Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3441 +2024-09-21T22:03:51.163972Z INFO fork_choice_control::block_processor: Validating block with slot: 3442 +2024-09-21T22:03:51.165206Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x201ce742f3b02e03299bf71e2e9250ee40806fb0ac368d0a684fda7c040c204f, slot: 3442 +2024-09-21T22:03:51.171517Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3442 +2024-09-21T22:03:51.171538Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3442 +2024-09-21T22:03:51.184479Z INFO fork_choice_control::block_processor: Validating block with slot: 3443 +2024-09-21T22:03:51.185443Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x91c2e72b087a9c3bda32d79449fa9c8aeb07f523231e13f1ce01377276b510fa, slot: 3443 +2024-09-21T22:03:51.191000Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3443 +2024-09-21T22:03:51.191012Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3443 +2024-09-21T22:03:51.204004Z INFO fork_choice_control::block_processor: Validating block with slot: 3444 +2024-09-21T22:03:51.205521Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf56e40a5cf2fdd208d17faf4796a1497b710c314b954bc71c8b9a1df50af47d2, slot: 3444 +2024-09-21T22:03:51.212441Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3444 +2024-09-21T22:03:51.212453Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3444 +2024-09-21T22:03:51.225775Z INFO fork_choice_control::block_processor: Validating block with slot: 3445 +2024-09-21T22:03:51.226755Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xedd1e9488f0959bb8078070480f69e284c1c6f4d7f2414be304eee2eaa72ae61, slot: 3445 +2024-09-21T22:03:51.232732Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3445 +2024-09-21T22:03:51.232751Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3445 +2024-09-21T22:03:51.245950Z INFO fork_choice_control::block_processor: Validating block with slot: 3446 +2024-09-21T22:03:51.247191Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb3a739228b824ecdaa182df2ad93b40e21e3dd3ec060aeef10eb7a440b402acf, slot: 3446 +2024-09-21T22:03:51.254076Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3446 +2024-09-21T22:03:51.254096Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3446 +2024-09-21T22:03:51.268824Z INFO fork_choice_control::block_processor: Validating block with slot: 3447 +2024-09-21T22:03:51.269936Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1d706e65745f82bd941c2e6e2151ecb87e888aea4f083727d185bb9c9b4dc888, slot: 3447 +2024-09-21T22:03:51.275840Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3447 +2024-09-21T22:03:51.275853Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3447 +2024-09-21T22:03:51.296109Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 106, root: 0x000e856aff1ed1b7fe681cd76aeac1b2d6841631c4ebb7a075b819fc1c9a44ce, head slot: 3447, head root: 0x1d706e65745f82bd941c2e6e2151ecb87e888aea4f083727d185bb9c9b4dc888) +2024-09-21T22:03:51.296118Z INFO fork_choice_control::block_processor: Validating block with slot: 3448 +2024-09-21T22:03:51.297402Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x489d3da50267142a8fa293cb0f52115304479cec7727df4d2f44bfed028156ce, slot: 3448 +2024-09-21T22:03:51.304653Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3448 +2024-09-21T22:03:51.304671Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3448 +2024-09-21T22:03:51.318971Z INFO fork_choice_control::block_processor: Validating block with slot: 3449 +2024-09-21T22:03:51.320093Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x85ef3fe4d86ad62f47e8cb5c596518271b02370b6e8fcf1b53f49e5d0da9cbf4, slot: 3449 +2024-09-21T22:03:51.326578Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3449 +2024-09-21T22:03:51.326593Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3449 +2024-09-21T22:03:51.341069Z INFO fork_choice_control::block_processor: Validating block with slot: 3450 +2024-09-21T22:03:51.343596Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x42e398e8a0f1aaaeffa4395a781aca63a085ef87b93dae0c59909d836305c35b, slot: 3450 +2024-09-21T22:03:51.353590Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3450 +2024-09-21T22:03:51.353608Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3450 +2024-09-21T22:03:51.368644Z INFO fork_choice_control::block_processor: Validating block with slot: 3451 +2024-09-21T22:03:51.369769Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdea3d53d6e546052911b5d165842b2bc314fc43f6c47834e8150c43e2cc4c538, slot: 3451 +2024-09-21T22:03:51.376129Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3451 +2024-09-21T22:03:51.376144Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3451 +2024-09-21T22:03:51.391055Z INFO fork_choice_control::block_processor: Validating block with slot: 3452 +2024-09-21T22:03:51.392456Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd88b954c6e08909354f93986df5b13cf30fd49fda4ceb8e2e0e89ef25b58d02f, slot: 3452 +2024-09-21T22:03:51.399950Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3452 +2024-09-21T22:03:51.399974Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3452 +2024-09-21T22:03:51.414946Z INFO fork_choice_control::block_processor: Validating block with slot: 3453 +2024-09-21T22:03:51.417359Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9446a80824e340daa0d9edc787e4292073d13de8599e0c4f9b999cdfad7321a5, slot: 3453 +2024-09-21T22:03:51.427238Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3453 +2024-09-21T22:03:51.427259Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3453 +2024-09-21T22:03:51.429095Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 3392 +2024-09-21T22:03:51.442796Z INFO fork_choice_control::block_processor: Validating block with slot: 3454 +2024-09-21T22:03:51.444200Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x63e79e5785e599edd6f1ee6570a89070cb9698279adae645ea49d1e846eaf2b7, slot: 3454 +2024-09-21T22:03:51.452029Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3454 +2024-09-21T22:03:51.452049Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3454 +2024-09-21T22:03:51.467812Z INFO fork_choice_control::block_processor: Validating block with slot: 3455 +2024-09-21T22:03:51.469147Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x14677b12fb43cbd2523a8797782556dd21869257c31602ec6b323fb819b85ef4, slot: 3455 +2024-09-21T22:03:51.477700Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3455 +2024-09-21T22:03:51.477722Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3455 +2024-09-21T22:03:51.494315Z INFO fork_choice_control::block_processor: Validating block with slot: 3457 +2024-09-21T22:03:51.496543Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd60e99c0cb434ea0aef7d2e32e3406316a6b79390b5d6b0b3b2b3217406c7988, slot: 3457 +2024-09-21T22:03:51.546095Z WARN discv5::service: FINDNODE request failed with partial results node_id=0xaffb..babe addr=103.219.170.109:9000 error=Timeout received=10 expected=3 +2024-09-21T22:03:51.670955Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3457 +2024-09-21T22:03:51.670977Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3457 +2024-09-21T22:03:51.681663Z INFO fork_choice_control::block_processor: Validating block with slot: 3458 +2024-09-21T22:03:51.684244Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc5046f0a600e9e97568f3dd3990591d8c977e7eea4bc3da0e48135fcb8d5d9bc, slot: 3458 +2024-09-21T22:03:51.695921Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3458 +2024-09-21T22:03:51.695943Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3458 +2024-09-21T22:03:51.707265Z INFO fork_choice_control::block_processor: Validating block with slot: 3459 +2024-09-21T22:03:51.708676Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x83aeabafdd2d41e2bf5ee445906fb3a7b22e34f91556944dca53626fadf6a009, slot: 3459 +2024-09-21T22:03:51.717925Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3459 +2024-09-21T22:03:51.717948Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3459 +2024-09-21T22:03:51.729027Z INFO fork_choice_control::block_processor: Validating block with slot: 3460 +2024-09-21T22:03:51.730549Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x993089414f0cfe440de80b234169c76babecdf9cb29f8a09c1f55b3efc311dba, slot: 3460 +2024-09-21T22:03:51.738290Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3460 +2024-09-21T22:03:51.738312Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3460 +2024-09-21T22:03:51.749702Z INFO fork_choice_control::block_processor: Validating block with slot: 3461 +2024-09-21T22:03:51.750996Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x16e350a265f9102b15ae922cd175be23023950bae7e7b0619a491bf7cc37e578, slot: 3461 +2024-09-21T22:03:51.758785Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3461 +2024-09-21T22:03:51.758804Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3461 +2024-09-21T22:03:51.770549Z INFO fork_choice_control::block_processor: Validating block with slot: 3462 +2024-09-21T22:03:51.771521Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x566f35fe47e4a92e8d4d6b748d608813fc8008fcb0428cc7418a40477868bafd, slot: 3462 +2024-09-21T22:03:51.777375Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3462 +2024-09-21T22:03:51.777388Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3462 +2024-09-21T22:03:51.789322Z INFO fork_choice_control::block_processor: Validating block with slot: 3463 +2024-09-21T22:03:51.790311Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfb2e9ea0d5e461b77bbfca925253680584ab62cef0adea0565f224946f49bf86, slot: 3463 +2024-09-21T22:03:51.796609Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3463 +2024-09-21T22:03:51.796623Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3463 +2024-09-21T22:03:51.808469Z INFO fork_choice_control::block_processor: Validating block with slot: 3464 +2024-09-21T22:03:51.809588Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6643142b9f08e3629130104391f529a03c11ce1871125bff1115765e17338d74, slot: 3464 +2024-09-21T22:03:51.815767Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3464 +2024-09-21T22:03:51.815785Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3464 +2024-09-21T22:03:51.827522Z INFO fork_choice_control::block_processor: Validating block with slot: 3465 +2024-09-21T22:03:51.829050Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x63cbcba6de9f195d43760a5ba65456e672afb5710238bfce15d8092d40979eef, slot: 3465 +2024-09-21T22:03:51.836344Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3465 +2024-09-21T22:03:51.836361Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3465 +2024-09-21T22:03:51.848266Z INFO fork_choice_control::block_processor: Validating block with slot: 3466 +2024-09-21T22:03:51.849398Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3125b25377ae8d7baf600c851a16a0d569f9f07a982ef848c64b0f7827ff7e94, slot: 3466 +2024-09-21T22:03:51.855211Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3466 +2024-09-21T22:03:51.855231Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3466 +2024-09-21T22:03:51.867458Z INFO fork_choice_control::block_processor: Validating block with slot: 3467 +2024-09-21T22:03:51.868560Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x19f6d5ed6d7b2763590d184fbf541463a5dc45c9852fe47b7701aec46e68a0c6, slot: 3467 +2024-09-21T22:03:51.874446Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3467 +2024-09-21T22:03:51.874461Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3467 +2024-09-21T22:03:51.886868Z INFO fork_choice_control::block_processor: Validating block with slot: 3468 +2024-09-21T22:03:51.887853Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe6840bb09b7bcd0ebb622726d7d999a7f6dd439425d36454e271e0441af436a8, slot: 3468 +2024-09-21T22:03:51.894329Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3468 +2024-09-21T22:03:51.894351Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3468 +2024-09-21T22:03:51.907209Z INFO fork_choice_control::block_processor: Validating block with slot: 3469 +2024-09-21T22:03:51.908308Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4878ffdc0225191655ff6c27e6ee5984e12f2e4988a22e1ff5fb7ecdf3335985, slot: 3469 +2024-09-21T22:03:51.914200Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3469 +2024-09-21T22:03:51.914214Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3469 +2024-09-21T22:03:51.926912Z INFO fork_choice_control::block_processor: Validating block with slot: 3470 +2024-09-21T22:03:51.928836Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb806c1976f7c4507a86a91469eafc206233ecf5d2d1efa24ad6838f62bf88b64, slot: 3470 +2024-09-21T22:03:51.937616Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3470 +2024-09-21T22:03:51.937637Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3470 +2024-09-21T22:03:51.950811Z INFO fork_choice_control::block_processor: Validating block with slot: 3471 +2024-09-21T22:03:51.952725Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1eac2eb3528693fb418add4991b423cb0a7ec668e23712c99d1ae7d2ea0b421d, slot: 3471 +2024-09-21T22:03:51.961058Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3471 +2024-09-21T22:03:51.961071Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3471 +2024-09-21T22:03:51.974832Z INFO fork_choice_control::block_processor: Validating block with slot: 3472 +2024-09-21T22:03:51.975801Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4ab8d23157d6b7f714b807b7554c8df047a66c401b815f94786d67ec67e1f23f, slot: 3472 +2024-09-21T22:03:51.981560Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3472 +2024-09-21T22:03:51.981580Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3472 +2024-09-21T22:03:51.995969Z INFO fork_choice_control::block_processor: Validating block with slot: 3473 +2024-09-21T22:03:51.996958Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3566979647431210b35bbda50e5675fea91b13fd4130ed97ee333fda8ce81d11, slot: 3473 +2024-09-21T22:03:52.002954Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3473 +2024-09-21T22:03:52.002972Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3473 +2024-09-21T22:03:52.016628Z INFO fork_choice_control::block_processor: Validating block with slot: 3474 +2024-09-21T22:03:52.017594Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x685ede6441ff1b7e89bdd95b6fb6c39583b3ebda7a284dd382e8950d277d10ea, slot: 3474 +2024-09-21T22:03:52.022963Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3474 +2024-09-21T22:03:52.022974Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3474 +2024-09-21T22:03:52.036857Z INFO fork_choice_control::block_processor: Validating block with slot: 3475 +2024-09-21T22:03:52.038370Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8791851781e8d78b65c2b9d14f1230de0119c5d36b89bcc01c82ed7fb485e660, slot: 3475 +2024-09-21T22:03:52.045339Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3475 +2024-09-21T22:03:52.045352Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3475 +2024-09-21T22:03:52.059348Z INFO fork_choice_control::block_processor: Validating block with slot: 3476 +2024-09-21T22:03:52.060329Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x59dae914aa5310644e77859e3260e022a7ec8ad78378d7c021c1883686eee696, slot: 3476 +2024-09-21T22:03:52.065979Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3476 +2024-09-21T22:03:52.066000Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3476 +2024-09-21T22:03:52.079980Z INFO fork_choice_control::block_processor: Validating block with slot: 3477 +2024-09-21T22:03:52.081633Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd3862bc33bf09cf4a1ce8b7fbbb5b33703d3412a2ce71351f69e2eac973162a8, slot: 3477 +2024-09-21T22:03:52.101674Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3477 +2024-09-21T22:03:52.101697Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3477 +2024-09-21T22:03:52.119142Z INFO fork_choice_control::block_processor: Validating block with slot: 3478 +2024-09-21T22:03:52.120308Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x61ed8255b50ffa8e82adc3a2b68bd920ea2f5e3956e3c02b40cec197595d9d4c, slot: 3478 +2024-09-21T22:03:52.129041Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3478 +2024-09-21T22:03:52.129063Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3478 +2024-09-21T22:03:52.143999Z INFO fork_choice_control::block_processor: Validating block with slot: 3479 +2024-09-21T22:03:52.145112Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa4f88f1308ae7fde73a80c7f76c6c0aae28f26dd76ff4317e3138da75918b693, slot: 3479 +2024-09-21T22:03:52.152337Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3479 +2024-09-21T22:03:52.152358Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3479 +2024-09-21T22:03:52.217502Z INFO fork_choice_control::block_processor: Validating block with slot: 3480 +2024-09-21T22:03:52.217545Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 107, root: 0x4cb71c60ab34823e82d60f52b645b8dfcb4be5d2e23a927d7581bc0255e3b35a, head slot: 3479, head root: 0xa4f88f1308ae7fde73a80c7f76c6c0aae28f26dd76ff4317e3138da75918b693) +2024-09-21T22:03:52.218634Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf0cf54174dff591b4b95448b48ab216264f2b220201e9b9f0c47188df8894bec, slot: 3480 +2024-09-21T22:03:52.225067Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3480 +2024-09-21T22:03:52.225089Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3480 +2024-09-21T22:03:52.240249Z INFO fork_choice_control::block_processor: Validating block with slot: 3481 +2024-09-21T22:03:52.241244Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8a97a87cbd68c31aaf344a8d912baf13fc2b27a7e1dccddd19337755ade83983, slot: 3481 +2024-09-21T22:03:52.247390Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3481 +2024-09-21T22:03:52.247404Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3481 +2024-09-21T22:03:52.262703Z INFO fork_choice_control::block_processor: Validating block with slot: 3482 +2024-09-21T22:03:52.264574Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0f3e073f8d0bee1db6d027096f5330887bdb662c76d57f017fc7293c3ade204b, slot: 3482 +2024-09-21T22:03:52.275592Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3482 +2024-09-21T22:03:52.275614Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3482 +2024-09-21T22:03:52.291687Z INFO fork_choice_control::block_processor: Validating block with slot: 3483 +2024-09-21T22:03:52.292807Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaf60b39e572d6fb493c4a9774d6e94a5bd530c05f81d9d21c2bf694759cc7c5f, slot: 3483 +2024-09-21T22:03:52.299578Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3483 +2024-09-21T22:03:52.299606Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3483 +2024-09-21T22:03:52.315663Z INFO fork_choice_control::block_processor: Validating block with slot: 3484 +2024-09-21T22:03:52.316653Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x92b899f49b0c62dee18ed154e711908ed276fe254c439ad1174f517d475a54f9, slot: 3484 +2024-09-21T22:03:52.322847Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3484 +2024-09-21T22:03:52.322862Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3484 +2024-09-21T22:03:52.339090Z INFO fork_choice_control::block_processor: Validating block with slot: 3485 +2024-09-21T22:03:52.340112Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcf61cf507dcd52bce0d4214554b212815f41fb600e3b4b5ad6961cdf77e19ddd, slot: 3485 +2024-09-21T22:03:52.347128Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 3424 +2024-09-21T22:03:52.347166Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3485 +2024-09-21T22:03:52.347174Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3485 +2024-09-21T22:03:52.363891Z INFO fork_choice_control::block_processor: Validating block with slot: 3486 +2024-09-21T22:03:52.366438Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa53289826dd22b8fe44b6466d02f265228eb07361c91fb3664edf6cfb5d6ecb1, slot: 3486 +2024-09-21T22:03:52.375008Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3486 +2024-09-21T22:03:52.375026Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3486 +2024-09-21T22:03:52.391800Z INFO fork_choice_control::block_processor: Validating block with slot: 3487 +2024-09-21T22:03:52.392790Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfa95f58a41bf39979715bfede99dac1fec031f7be57fefc2906f32f083f67c11, slot: 3487 +2024-09-21T22:03:52.400266Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3487 +2024-09-21T22:03:52.400288Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3487 +2024-09-21T22:03:54.259595Z WARN discv5::service: FINDNODE request failed with partial results node_id=0x412c..a8d6 addr=34.107.123.236:9004 error=Timeout received=15 expected=3 +2024-09-21T22:03:54.738174Z WARN discv5::service: FINDNODE request failed with partial results node_id=0x412e..5488 addr=92.247.87.62:12000 error=Timeout received=15 expected=3 +2024-09-21T22:03:54.970897Z WARN discv5::service: FINDNODE request failed with partial results node_id=0xae50..4c47 addr=79.137.88.115:30005 error=Timeout received=12 expected=3 +2024-09-21T22:03:55.558469Z WARN discv5::service: FINDNODE request failed with partial results node_id=0xae92..28b9 addr=73.132.199.171:9001 error=Timeout received=12 expected=3 +2024-09-21T22:03:57.555014Z INFO runtime::runtime: saving current chain before exit… +2024-09-21T22:03:57.722544Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 3424 +2024-09-21T22:03:57.901684Z INFO fork_choice_control::mutator: chain saved (finalized blocks: 1, unfinalized blocks: 62) diff --git a/logs/testing.log.2024-09-22 b/logs/testing.log.2024-09-22 new file mode 100644 index 00000000..c20a09da --- /dev/null +++ b/logs/testing.log.2024-09-22 @@ -0,0 +1,12287 @@ +2024-09-22T00:43:57.489578Z INFO logging: Tracing initialized successfully. +2024-09-22T00:43:57.489779Z INFO grandine: Grandine firing up... +2024-09-22T00:43:57.523403Z INFO grandine: starting beacon node +2024-09-22T00:43:57.523479Z INFO grandine::grandine_config: network: mainnet +2024-09-22T00:43:57.523498Z INFO grandine::grandine_config: data directory: "/Users/mercynaps/.grandine/mainnet" +2024-09-22T00:43:57.523511Z INFO grandine::grandine_config: Eth2 database upper limit: 256.0 GiB +2024-09-22T00:43:57.523548Z INFO grandine::grandine_config: Eth1 database upper limit: 16.0 GiB +2024-09-22T00:43:57.523739Z INFO grandine::grandine_config: Eth1 RPC URLs: [] +2024-09-22T00:43:57.524015Z INFO grandine::grandine_config: graffiti: [0x4772616e64696e652f302e342e312d3138613435663700000000000000000000] +2024-09-22T00:43:57.524031Z INFO grandine::grandine_config: HTTP API address: 127.0.0.1:5052 +2024-09-22T00:43:57.524039Z INFO grandine::grandine_config: validator API disabled +2024-09-22T00:43:57.524047Z INFO grandine::grandine_config: archival interval: 32 epochs +2024-09-22T00:43:57.524204Z INFO grandine::grandine_config: slasher enabled: false +2024-09-22T00:43:57.524295Z INFO grandine::grandine_config: client version: Grandine/0.4.1-18a45f7/aarch64-macos +2024-09-22T00:43:57.524343Z INFO grandine::grandine_config: suggested fee recipient: 0xe7cf…1f1b +2024-09-22T00:43:57.524370Z INFO grandine::grandine_config: back sync enabled: false +2024-09-22T00:43:57.557414Z INFO database: database: /Users/mercynaps/.grandine/mainnet/beacon/eth1_cache with name eth1 +2024-09-22T00:43:59.183997Z INFO database: database: /Users/mercynaps/.grandine/mainnet/beacon/beacon_fork_choice with name beacon_fork_choice +2024-09-22T00:43:59.311769Z INFO fork_choice_control::storage: loaded state at slot 3424 +2024-09-22T00:44:01.435471Z INFO fork_choice_store::state_cache_processor: Creating new StateCacheProcessor with lock timeout of 1.5s +2024-09-22T00:44:01.562552Z INFO fork_choice_control::block_processor: Validating block with slot: 3425 +2024-09-22T00:44:01.564204Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xce559e3e9706336547396e7d2e10884c3a122da62c2551a235e19faa34602f88, slot: 3425 +2024-09-22T00:44:01.705878Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3425 +2024-09-22T00:44:01.705901Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3425 +2024-09-22T00:44:01.715704Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3424) +2024-09-22T00:44:01.716173Z INFO fork_choice_control::block_processor: Validating block with slot: 3426 +2024-09-22T00:44:01.717533Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5a759fb8053a814d5352ffbca8cdcefd48a90b0233fbeaa3eb00a75645caf3e2, slot: 3426 +2024-09-22T00:44:01.720728Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3426 +2024-09-22T00:44:01.720738Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3426 +2024-09-22T00:44:01.730784Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3424) +2024-09-22T00:44:01.731030Z INFO fork_choice_control::block_processor: Validating block with slot: 3427 +2024-09-22T00:44:01.732534Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdf142ac2a75b15ae41efd8f50cab99837969116af41e9f5443f46d7d9522d9f4, slot: 3427 +2024-09-22T00:44:01.736004Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3427 +2024-09-22T00:44:01.736014Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3427 +2024-09-22T00:44:01.746162Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3424) +2024-09-22T00:44:01.746395Z INFO fork_choice_control::block_processor: Validating block with slot: 3428 +2024-09-22T00:44:01.747354Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x18528d9f2e0329573c388f7da72260dffd983ac4cf45148bcfee628c3469bf8e, slot: 3428 +2024-09-22T00:44:01.749911Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3428 +2024-09-22T00:44:01.749921Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3428 +2024-09-22T00:44:01.760023Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3424) +2024-09-22T00:44:01.760239Z INFO fork_choice_control::block_processor: Validating block with slot: 3429 +2024-09-22T00:44:01.761449Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa8d3d49aa6a96f6ab4a049230ea2ec14aa21b47d8b8c12f1fc88c8f6ea945ef8, slot: 3429 +2024-09-22T00:44:01.764433Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3429 +2024-09-22T00:44:01.764442Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3429 +2024-09-22T00:44:01.775085Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3424) +2024-09-22T00:44:01.775325Z INFO fork_choice_control::block_processor: Validating block with slot: 3430 +2024-09-22T00:44:01.776305Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x327d82f9ef4d9b1e139b4f94f862aa88123c29a637aa32061b53cfe307dbb895, slot: 3430 +2024-09-22T00:44:01.778872Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3430 +2024-09-22T00:44:01.778885Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3430 +2024-09-22T00:44:01.789045Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3424) +2024-09-22T00:44:01.789243Z INFO fork_choice_control::block_processor: Validating block with slot: 3431 +2024-09-22T00:44:01.790234Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xefb8011a787d3e6ad4e717d8562cbbee80a43e915fefe9bce847433e25f95a10, slot: 3431 +2024-09-22T00:44:01.792786Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3431 +2024-09-22T00:44:01.792796Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3431 +2024-09-22T00:44:01.802977Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3424) +2024-09-22T00:44:01.803198Z INFO fork_choice_control::block_processor: Validating block with slot: 3432 +2024-09-22T00:44:01.804520Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9e05c22d7ae8406e0bc5fa9a4344f7a0b9b46d15a949b233fb8e319c5b5837e9, slot: 3432 +2024-09-22T00:44:01.807772Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3432 +2024-09-22T00:44:01.807789Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3432 +2024-09-22T00:44:01.818183Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3424) +2024-09-22T00:44:01.818388Z INFO fork_choice_control::block_processor: Validating block with slot: 3433 +2024-09-22T00:44:01.819594Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x39e2ff2feef42f6747102fee181a9e480c54ae6ba66322583d32836f025b89f8, slot: 3433 +2024-09-22T00:44:01.822569Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3433 +2024-09-22T00:44:01.822583Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3433 +2024-09-22T00:44:01.833305Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3424) +2024-09-22T00:44:01.833541Z INFO fork_choice_control::block_processor: Validating block with slot: 3434 +2024-09-22T00:44:01.834606Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6847eb9d4121f30961cc8332df1991dfa43add32c9b38b0397bb51314ef6251a, slot: 3434 +2024-09-22T00:44:01.837311Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3434 +2024-09-22T00:44:01.837323Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3434 +2024-09-22T00:44:01.848409Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3424) +2024-09-22T00:44:01.848638Z INFO fork_choice_control::block_processor: Validating block with slot: 3435 +2024-09-22T00:44:01.849600Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x525afe355eafe1b32bc923d09802fbaa04b2abaaf5990831199f1b30229c76fd, slot: 3435 +2024-09-22T00:44:01.852050Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3435 +2024-09-22T00:44:01.852059Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3435 +2024-09-22T00:44:01.863408Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3424) +2024-09-22T00:44:01.863646Z INFO fork_choice_control::block_processor: Validating block with slot: 3436 +2024-09-22T00:44:01.865263Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xec7778762bea990dd1d6306f923393e7efd4b2fbe8795b62ed7227df42bd0735, slot: 3436 +2024-09-22T00:44:01.868906Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3436 +2024-09-22T00:44:01.868915Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3436 +2024-09-22T00:44:01.881041Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3424) +2024-09-22T00:44:01.881300Z INFO fork_choice_control::block_processor: Validating block with slot: 3437 +2024-09-22T00:44:01.882523Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3ee0b7711df2fc51f7773fb7ff9a009650e36de39f9b394644c7f3c8a7b6a82f, slot: 3437 +2024-09-22T00:44:01.885534Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3437 +2024-09-22T00:44:01.885544Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3437 +2024-09-22T00:44:01.897301Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3424) +2024-09-22T00:44:01.897539Z INFO fork_choice_control::block_processor: Validating block with slot: 3438 +2024-09-22T00:44:01.898650Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0e665d9c810c31e53a82b3f0f1a2e10910f22973e7715cc0f42f3aa07301262c, slot: 3438 +2024-09-22T00:44:01.901387Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3438 +2024-09-22T00:44:01.901396Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3438 +2024-09-22T00:44:01.914280Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3424) +2024-09-22T00:44:01.914549Z INFO fork_choice_control::block_processor: Validating block with slot: 3439 +2024-09-22T00:44:01.915530Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x97566f35efe4c7eee402dc7806e28409bc41e684912c2511c4508f0e1aa158aa, slot: 3439 +2024-09-22T00:44:01.918092Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3439 +2024-09-22T00:44:01.918105Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3439 +2024-09-22T00:44:01.930182Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3424) +2024-09-22T00:44:01.930419Z INFO fork_choice_control::block_processor: Validating block with slot: 3440 +2024-09-22T00:44:01.932023Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x45b84b64b2e7f41804e06018334809c4c4f4724686da76f0d30cbabe27028c51, slot: 3440 +2024-09-22T00:44:01.935718Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3440 +2024-09-22T00:44:01.935729Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3440 +2024-09-22T00:44:01.948069Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3424) +2024-09-22T00:44:01.948316Z INFO fork_choice_control::block_processor: Validating block with slot: 3441 +2024-09-22T00:44:01.949930Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfe50bc0637962d54d178f949228a64f837b32af532e6256a6fa39dee37e25654, slot: 3441 +2024-09-22T00:44:01.953583Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3441 +2024-09-22T00:44:01.953593Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3441 +2024-09-22T00:44:01.966093Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3424) +2024-09-22T00:44:01.966319Z INFO fork_choice_control::block_processor: Validating block with slot: 3442 +2024-09-22T00:44:01.967522Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x201ce742f3b02e03299bf71e2e9250ee40806fb0ac368d0a684fda7c040c204f, slot: 3442 +2024-09-22T00:44:01.970459Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3442 +2024-09-22T00:44:01.970468Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3442 +2024-09-22T00:44:01.983122Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3424) +2024-09-22T00:44:01.983341Z INFO fork_choice_control::block_processor: Validating block with slot: 3443 +2024-09-22T00:44:01.984315Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x91c2e72b087a9c3bda32d79449fa9c8aeb07f523231e13f1ce01377276b510fa, slot: 3443 +2024-09-22T00:44:01.986860Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3443 +2024-09-22T00:44:01.986873Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3443 +2024-09-22T00:44:01.999865Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3424) +2024-09-22T00:44:02.000110Z INFO fork_choice_control::block_processor: Validating block with slot: 3444 +2024-09-22T00:44:02.001622Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf56e40a5cf2fdd208d17faf4796a1497b710c314b954bc71c8b9a1df50af47d2, slot: 3444 +2024-09-22T00:44:02.005006Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3444 +2024-09-22T00:44:02.005016Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3444 +2024-09-22T00:44:02.018075Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3424) +2024-09-22T00:44:02.018296Z INFO fork_choice_control::block_processor: Validating block with slot: 3445 +2024-09-22T00:44:02.019260Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xedd1e9488f0959bb8078070480f69e284c1c6f4d7f2414be304eee2eaa72ae61, slot: 3445 +2024-09-22T00:44:02.021745Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3445 +2024-09-22T00:44:02.021756Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3445 +2024-09-22T00:44:02.034944Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3424) +2024-09-22T00:44:02.035173Z INFO fork_choice_control::block_processor: Validating block with slot: 3446 +2024-09-22T00:44:02.036372Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb3a739228b824ecdaa182df2ad93b40e21e3dd3ec060aeef10eb7a440b402acf, slot: 3446 +2024-09-22T00:44:02.039327Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3446 +2024-09-22T00:44:02.039337Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3446 +2024-09-22T00:44:02.052612Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3424) +2024-09-22T00:44:02.052836Z INFO fork_choice_control::block_processor: Validating block with slot: 3447 +2024-09-22T00:44:02.053903Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1d706e65745f82bd941c2e6e2151ecb87e888aea4f083727d185bb9c9b4dc888, slot: 3447 +2024-09-22T00:44:02.056623Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3447 +2024-09-22T00:44:02.056634Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3447 +2024-09-22T00:44:02.070382Z INFO fork_choice_control::block_processor: Validating block with slot: 3448 +2024-09-22T00:44:02.071450Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x489d3da50267142a8fa293cb0f52115304479cec7727df4d2f44bfed028156ce, slot: 3448 +2024-09-22T00:44:02.074328Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3448 +2024-09-22T00:44:02.074348Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3448 +2024-09-22T00:44:02.088111Z INFO fork_choice_control::block_processor: Validating block with slot: 3449 +2024-09-22T00:44:02.089241Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x85ef3fe4d86ad62f47e8cb5c596518271b02370b6e8fcf1b53f49e5d0da9cbf4, slot: 3449 +2024-09-22T00:44:02.092196Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3449 +2024-09-22T00:44:02.092212Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3449 +2024-09-22T00:44:02.105963Z INFO fork_choice_control::block_processor: Validating block with slot: 3450 +2024-09-22T00:44:02.108519Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x42e398e8a0f1aaaeffa4395a781aca63a085ef87b93dae0c59909d836305c35b, slot: 3450 +2024-09-22T00:44:02.118439Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3450 +2024-09-22T00:44:02.118484Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3450 +2024-09-22T00:44:02.138990Z INFO fork_choice_control::block_processor: Validating block with slot: 3451 +2024-09-22T00:44:02.140118Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdea3d53d6e546052911b5d165842b2bc314fc43f6c47834e8150c43e2cc4c538, slot: 3451 +2024-09-22T00:44:02.143023Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3451 +2024-09-22T00:44:02.143041Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3451 +2024-09-22T00:44:02.164574Z INFO fork_choice_control::block_processor: Validating block with slot: 3452 +2024-09-22T00:44:02.165947Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd88b954c6e08909354f93986df5b13cf30fd49fda4ceb8e2e0e89ef25b58d02f, slot: 3452 +2024-09-22T00:44:02.169112Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3452 +2024-09-22T00:44:02.169123Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3452 +2024-09-22T00:44:02.185167Z INFO fork_choice_control::block_processor: Validating block with slot: 3453 +2024-09-22T00:44:02.187614Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9446a80824e340daa0d9edc787e4292073d13de8599e0c4f9b999cdfad7321a5, slot: 3453 +2024-09-22T00:44:02.193519Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3453 +2024-09-22T00:44:02.193542Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3453 +2024-09-22T00:44:02.211903Z INFO fork_choice_control::block_processor: Validating block with slot: 3454 +2024-09-22T00:44:02.213286Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x63e79e5785e599edd6f1ee6570a89070cb9698279adae645ea49d1e846eaf2b7, slot: 3454 +2024-09-22T00:44:02.216622Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3454 +2024-09-22T00:44:02.216634Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3454 +2024-09-22T00:44:02.232455Z INFO fork_choice_control::block_processor: Validating block with slot: 3455 +2024-09-22T00:44:02.233542Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x14677b12fb43cbd2523a8797782556dd21869257c31602ec6b323fb819b85ef4, slot: 3455 +2024-09-22T00:44:02.236273Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3455 +2024-09-22T00:44:02.236285Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3455 +2024-09-22T00:44:02.252063Z INFO fork_choice_control::block_processor: Validating block with slot: 3457 +2024-09-22T00:44:02.254089Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd60e99c0cb434ea0aef7d2e32e3406316a6b79390b5d6b0b3b2b3217406c7988, slot: 3457 +2024-09-22T00:44:02.438880Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3457 +2024-09-22T00:44:02.438906Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3457 +2024-09-22T00:44:02.449955Z INFO fork_choice_control::block_processor: Validating block with slot: 3458 +2024-09-22T00:44:02.452519Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc5046f0a600e9e97568f3dd3990591d8c977e7eea4bc3da0e48135fcb8d5d9bc, slot: 3458 +2024-09-22T00:44:02.458163Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3458 +2024-09-22T00:44:02.458195Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3458 +2024-09-22T00:44:02.469248Z INFO fork_choice_control::block_processor: Validating block with slot: 3459 +2024-09-22T00:44:02.470653Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x83aeabafdd2d41e2bf5ee445906fb3a7b22e34f91556944dca53626fadf6a009, slot: 3459 +2024-09-22T00:44:02.473771Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3459 +2024-09-22T00:44:02.473786Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3459 +2024-09-22T00:44:02.485324Z INFO fork_choice_control::block_processor: Validating block with slot: 3460 +2024-09-22T00:44:02.486946Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x993089414f0cfe440de80b234169c76babecdf9cb29f8a09c1f55b3efc311dba, slot: 3460 +2024-09-22T00:44:02.490714Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3460 +2024-09-22T00:44:02.490732Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3460 +2024-09-22T00:44:02.502916Z INFO fork_choice_control::block_processor: Validating block with slot: 3461 +2024-09-22T00:44:02.504175Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x16e350a265f9102b15ae922cd175be23023950bae7e7b0619a491bf7cc37e578, slot: 3461 +2024-09-22T00:44:02.508859Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3461 +2024-09-22T00:44:02.508884Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3461 +2024-09-22T00:44:02.520879Z INFO fork_choice_control::block_processor: Validating block with slot: 3462 +2024-09-22T00:44:02.521879Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x566f35fe47e4a92e8d4d6b748d608813fc8008fcb0428cc7418a40477868bafd, slot: 3462 +2024-09-22T00:44:02.524809Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3462 +2024-09-22T00:44:02.524830Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3462 +2024-09-22T00:44:02.536793Z INFO fork_choice_control::block_processor: Validating block with slot: 3463 +2024-09-22T00:44:02.537774Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfb2e9ea0d5e461b77bbfca925253680584ab62cef0adea0565f224946f49bf86, slot: 3463 +2024-09-22T00:44:02.540383Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3463 +2024-09-22T00:44:02.540400Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3463 +2024-09-22T00:44:02.552875Z INFO fork_choice_control::block_processor: Validating block with slot: 3464 +2024-09-22T00:44:02.553990Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6643142b9f08e3629130104391f529a03c11ce1871125bff1115765e17338d74, slot: 3464 +2024-09-22T00:44:02.556868Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3464 +2024-09-22T00:44:02.556930Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3464 +2024-09-22T00:44:02.569567Z INFO fork_choice_control::block_processor: Validating block with slot: 3465 +2024-09-22T00:44:02.571116Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x63cbcba6de9f195d43760a5ba65456e672afb5710238bfce15d8092d40979eef, slot: 3465 +2024-09-22T00:44:02.574857Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3465 +2024-09-22T00:44:02.574893Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3465 +2024-09-22T00:44:02.587587Z INFO fork_choice_control::block_processor: Validating block with slot: 3466 +2024-09-22T00:44:02.588731Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3125b25377ae8d7baf600c851a16a0d569f9f07a982ef848c64b0f7827ff7e94, slot: 3466 +2024-09-22T00:44:02.591711Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3466 +2024-09-22T00:44:02.591736Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3466 +2024-09-22T00:44:02.604485Z INFO fork_choice_control::block_processor: Validating block with slot: 3467 +2024-09-22T00:44:02.605617Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x19f6d5ed6d7b2763590d184fbf541463a5dc45c9852fe47b7701aec46e68a0c6, slot: 3467 +2024-09-22T00:44:02.608707Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3467 +2024-09-22T00:44:02.608730Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3467 +2024-09-22T00:44:02.621917Z INFO fork_choice_control::block_processor: Validating block with slot: 3468 +2024-09-22T00:44:02.622922Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe6840bb09b7bcd0ebb622726d7d999a7f6dd439425d36454e271e0441af436a8, slot: 3468 +2024-09-22T00:44:02.625699Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3468 +2024-09-22T00:44:02.625720Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3468 +2024-09-22T00:44:02.638838Z INFO fork_choice_control::block_processor: Validating block with slot: 3469 +2024-09-22T00:44:02.640023Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4878ffdc0225191655ff6c27e6ee5984e12f2e4988a22e1ff5fb7ecdf3335985, slot: 3469 +2024-09-22T00:44:02.643247Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3469 +2024-09-22T00:44:02.643268Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3469 +2024-09-22T00:44:02.657200Z INFO fork_choice_control::block_processor: Validating block with slot: 3470 +2024-09-22T00:44:02.659303Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb806c1976f7c4507a86a91469eafc206233ecf5d2d1efa24ad6838f62bf88b64, slot: 3470 +2024-09-22T00:44:02.663674Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3470 +2024-09-22T00:44:02.663689Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3470 +2024-09-22T00:44:02.677946Z INFO fork_choice_control::block_processor: Validating block with slot: 3471 +2024-09-22T00:44:02.680267Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1eac2eb3528693fb418add4991b423cb0a7ec668e23712c99d1ae7d2ea0b421d, slot: 3471 +2024-09-22T00:44:02.684814Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3471 +2024-09-22T00:44:02.684837Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3471 +2024-09-22T00:44:02.700657Z INFO fork_choice_control::block_processor: Validating block with slot: 3472 +2024-09-22T00:44:02.701756Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4ab8d23157d6b7f714b807b7554c8df047a66c401b815f94786d67ec67e1f23f, slot: 3472 +2024-09-22T00:44:02.704432Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3472 +2024-09-22T00:44:02.704443Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3472 +2024-09-22T00:44:02.719307Z INFO fork_choice_control::block_processor: Validating block with slot: 3473 +2024-09-22T00:44:02.720302Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3566979647431210b35bbda50e5675fea91b13fd4130ed97ee333fda8ce81d11, slot: 3473 +2024-09-22T00:44:02.722951Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3473 +2024-09-22T00:44:02.722967Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3473 +2024-09-22T00:44:02.737219Z INFO fork_choice_control::block_processor: Validating block with slot: 3474 +2024-09-22T00:44:02.738200Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x685ede6441ff1b7e89bdd95b6fb6c39583b3ebda7a284dd382e8950d277d10ea, slot: 3474 +2024-09-22T00:44:02.740924Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3474 +2024-09-22T00:44:02.740948Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3474 +2024-09-22T00:44:02.755284Z INFO fork_choice_control::block_processor: Validating block with slot: 3475 +2024-09-22T00:44:02.756856Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8791851781e8d78b65c2b9d14f1230de0119c5d36b89bcc01c82ed7fb485e660, slot: 3475 +2024-09-22T00:44:02.760798Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3475 +2024-09-22T00:44:02.760818Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3475 +2024-09-22T00:44:02.776184Z INFO fork_choice_control::block_processor: Validating block with slot: 3476 +2024-09-22T00:44:02.777412Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x59dae914aa5310644e77859e3260e022a7ec8ad78378d7c021c1883686eee696, slot: 3476 +2024-09-22T00:44:02.780127Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3476 +2024-09-22T00:44:02.780142Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3476 +2024-09-22T00:44:02.796176Z INFO fork_choice_control::block_processor: Validating block with slot: 3477 +2024-09-22T00:44:02.800771Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd3862bc33bf09cf4a1ce8b7fbbb5b33703d3412a2ce71351f69e2eac973162a8, slot: 3477 +2024-09-22T00:44:02.804884Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3477 +2024-09-22T00:44:02.804910Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3477 +2024-09-22T00:44:02.825205Z INFO fork_choice_control::block_processor: Validating block with slot: 3478 +2024-09-22T00:44:02.826189Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x61ed8255b50ffa8e82adc3a2b68bd920ea2f5e3956e3c02b40cec197595d9d4c, slot: 3478 +2024-09-22T00:44:02.828818Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3478 +2024-09-22T00:44:02.828831Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3478 +2024-09-22T00:44:02.844673Z INFO fork_choice_control::block_processor: Validating block with slot: 3479 +2024-09-22T00:44:02.845811Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa4f88f1308ae7fde73a80c7f76c6c0aae28f26dd76ff4317e3138da75918b693, slot: 3479 +2024-09-22T00:44:02.848621Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3479 +2024-09-22T00:44:02.848632Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3479 +2024-09-22T00:44:02.864552Z INFO fork_choice_control::block_processor: Validating block with slot: 3480 +2024-09-22T00:44:02.866117Z INFO fork_choice_control::block_processor: Validating block with slot: 3481 +2024-09-22T00:44:02.867336Z INFO fork_choice_control::block_processor: Validating block with slot: 3482 +2024-09-22T00:44:02.869481Z INFO fork_choice_control::block_processor: Validating block with slot: 3483 +2024-09-22T00:44:02.871123Z INFO fork_choice_control::block_processor: Validating block with slot: 3484 +2024-09-22T00:44:02.872769Z INFO fork_choice_control::block_processor: Validating block with slot: 3485 +2024-09-22T00:44:02.874347Z INFO fork_choice_control::block_processor: Validating block with slot: 3486 +2024-09-22T00:44:02.876525Z INFO fork_choice_control::block_processor: Validating block with slot: 3487 +2024-09-22T00:44:02.880690Z INFO database: database: /Users/mercynaps/.grandine/mainnet/beacon/sync with name sync +2024-09-22T00:44:02.885153Z INFO database: database: /Users/mercynaps/.grandine/mainnet/validator with name proposer-configs +2024-09-22T00:44:02.910173Z INFO discv5::service: Discv5 Service started mode=Ip4 +2024-09-22T00:44:02.918566Z INFO libp2p_swarm: local_peer_id=16Uiu2HAm1MjWUF4J3qsovL8Wzccfuzy28tTQ8dmA2sazksHeR3bs +2024-09-22T00:44:02.986595Z INFO fork_choice_control::block_processor: Validating block with slot: 3480 +2024-09-22T00:44:02.987745Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf0cf54174dff591b4b95448b48ab216264f2b220201e9b9f0c47188df8894bec, slot: 3480 +2024-09-22T00:44:02.994636Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3480 +2024-09-22T00:44:02.994884Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3480 +2024-09-22T00:44:03.022717Z INFO fork_choice_control::block_processor: Validating block with slot: 3481 +2024-09-22T00:44:03.024738Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8a97a87cbd68c31aaf344a8d912baf13fc2b27a7e1dccddd19337755ade83983, slot: 3481 +2024-09-22T00:44:03.028003Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3481 +2024-09-22T00:44:03.028061Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3481 +2024-09-22T00:44:03.046848Z INFO fork_choice_control::block_processor: Validating block with slot: 3482 +2024-09-22T00:44:03.048694Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0f3e073f8d0bee1db6d027096f5330887bdb662c76d57f017fc7293c3ade204b, slot: 3482 +2024-09-22T00:44:03.052659Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3482 +2024-09-22T00:44:03.052669Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3482 +2024-09-22T00:44:03.069247Z INFO fork_choice_control::block_processor: Validating block with slot: 3483 +2024-09-22T00:44:03.070394Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaf60b39e572d6fb493c4a9774d6e94a5bd530c05f81d9d21c2bf694759cc7c5f, slot: 3483 +2024-09-22T00:44:03.073338Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3483 +2024-09-22T00:44:03.073359Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3483 +2024-09-22T00:44:03.089180Z INFO fork_choice_control::block_processor: Validating block with slot: 3484 +2024-09-22T00:44:03.090250Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x92b899f49b0c62dee18ed154e711908ed276fe254c439ad1174f517d475a54f9, slot: 3484 +2024-09-22T00:44:03.093053Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3484 +2024-09-22T00:44:03.093075Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3484 +2024-09-22T00:44:03.108868Z INFO fork_choice_control::block_processor: Validating block with slot: 3485 +2024-09-22T00:44:03.109912Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcf61cf507dcd52bce0d4214554b212815f41fb600e3b4b5ad6961cdf77e19ddd, slot: 3485 +2024-09-22T00:44:03.112470Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3485 +2024-09-22T00:44:03.112481Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3485 +2024-09-22T00:44:03.128433Z INFO fork_choice_control::block_processor: Validating block with slot: 3486 +2024-09-22T00:44:03.130271Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa53289826dd22b8fe44b6466d02f265228eb07361c91fb3664edf6cfb5d6ecb1, slot: 3486 +2024-09-22T00:44:03.134231Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3486 +2024-09-22T00:44:03.134242Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3486 +2024-09-22T00:44:03.150958Z INFO fork_choice_control::block_processor: Validating block with slot: 3487 +2024-09-22T00:44:03.151973Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfa95f58a41bf39979715bfede99dac1fec031f7be57fefc2906f32f083f67c11, slot: 3487 +2024-09-22T00:44:03.154602Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3487 +2024-09-22T00:44:03.154615Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3487 +2024-09-22T00:44:12.972265Z INFO http_api::task: HTTP server listening on 127.0.0.1:5052 +2024-09-22T00:44:13.910727Z INFO fork_choice_control::block_processor: Validating block with slot: 3617 +2024-09-22T00:44:13.910734Z INFO fork_choice_control::block_processor: Validating block with slot: 3618 +2024-09-22T00:44:13.910787Z INFO fork_choice_control::block_processor: Validating block with slot: 3616 +2024-09-22T00:44:13.910828Z INFO fork_choice_control::block_processor: Validating block with slot: 3619 +2024-09-22T00:44:13.937794Z INFO fork_choice_control::block_processor: Validating block with slot: 3620 +2024-09-22T00:44:13.937916Z INFO fork_choice_control::block_processor: Validating block with slot: 3623 +2024-09-22T00:44:13.937954Z INFO fork_choice_control::block_processor: Validating block with slot: 3621 +2024-09-22T00:44:13.937947Z INFO fork_choice_control::block_processor: Validating block with slot: 3622 +2024-09-22T00:44:13.986411Z INFO fork_choice_control::block_processor: Validating block with slot: 3627 +2024-09-22T00:44:13.986441Z INFO fork_choice_control::block_processor: Validating block with slot: 3628 +2024-09-22T00:44:13.986503Z INFO fork_choice_control::block_processor: Validating block with slot: 3624 +2024-09-22T00:44:13.986910Z INFO fork_choice_control::block_processor: Validating block with slot: 3629 +2024-09-22T00:44:14.071762Z INFO fork_choice_control::block_processor: Validating block with slot: 3630 +2024-09-22T00:44:14.110118Z INFO fork_choice_control::block_processor: Validating block with slot: 3631 +2024-09-22T00:44:14.116639Z INFO fork_choice_control::block_processor: Validating block with slot: 3632 +2024-09-22T00:44:14.123137Z INFO fork_choice_control::block_processor: Validating block with slot: 3633 +2024-09-22T00:44:14.149233Z INFO fork_choice_control::block_processor: Validating block with slot: 3635 +2024-09-22T00:44:14.149237Z INFO fork_choice_control::block_processor: Validating block with slot: 3634 +2024-09-22T00:44:14.155208Z INFO fork_choice_control::block_processor: Validating block with slot: 3636 +2024-09-22T00:44:14.155218Z INFO fork_choice_control::block_processor: Validating block with slot: 3637 +2024-09-22T00:44:14.176894Z INFO fork_choice_control::block_processor: Validating block with slot: 3638 +2024-09-22T00:44:14.183368Z INFO fork_choice_control::block_processor: Validating block with slot: 3639 +2024-09-22T00:44:14.206838Z INFO fork_choice_control::block_processor: Validating block with slot: 3641 +2024-09-22T00:44:14.206842Z INFO fork_choice_control::block_processor: Validating block with slot: 3640 +2024-09-22T00:44:14.217930Z INFO fork_choice_control::block_processor: Validating block with slot: 3642 +2024-09-22T00:44:14.258709Z INFO fork_choice_control::block_processor: Validating block with slot: 3644 +2024-09-22T00:44:14.258707Z INFO fork_choice_control::block_processor: Validating block with slot: 3643 +2024-09-22T00:44:14.258720Z INFO fork_choice_control::block_processor: Validating block with slot: 3646 +2024-09-22T00:44:14.258723Z INFO fork_choice_control::block_processor: Validating block with slot: 3645 +2024-09-22T00:44:14.297809Z INFO fork_choice_control::block_processor: Validating block with slot: 3647 +2024-09-22T00:44:14.297817Z INFO fork_choice_control::block_processor: Validating block with slot: 3648 +2024-09-22T00:44:14.297864Z INFO fork_choice_control::block_processor: Validating block with slot: 3649 +2024-09-22T00:44:14.297914Z INFO fork_choice_control::block_processor: Validating block with slot: 3650 +2024-09-22T00:44:14.331789Z INFO fork_choice_control::block_processor: Validating block with slot: 3651 +2024-09-22T00:44:14.338536Z INFO fork_choice_control::block_processor: Validating block with slot: 3652 +2024-09-22T00:44:14.338539Z INFO fork_choice_control::block_processor: Validating block with slot: 3653 +2024-09-22T00:44:14.346455Z INFO fork_choice_control::block_processor: Validating block with slot: 3654 +2024-09-22T00:44:14.356697Z INFO fork_choice_control::block_processor: Validating block with slot: 3655 +2024-09-22T00:44:14.370932Z INFO fork_choice_control::block_processor: Validating block with slot: 3656 +2024-09-22T00:44:14.370944Z INFO fork_choice_control::block_processor: Validating block with slot: 3657 +2024-09-22T00:44:14.372946Z INFO fork_choice_control::block_processor: Validating block with slot: 3658 +2024-09-22T00:44:14.386662Z INFO fork_choice_control::block_processor: Validating block with slot: 3659 +2024-09-22T00:44:14.386669Z INFO fork_choice_control::block_processor: Validating block with slot: 3660 +2024-09-22T00:44:14.392180Z INFO fork_choice_control::block_processor: Validating block with slot: 3661 +2024-09-22T00:44:14.403390Z INFO fork_choice_control::block_processor: Validating block with slot: 3662 +2024-09-22T00:44:14.412206Z INFO fork_choice_control::block_processor: Validating block with slot: 3663 +2024-09-22T00:44:14.430531Z INFO fork_choice_control::block_processor: Validating block with slot: 3664 +2024-09-22T00:44:14.430538Z INFO fork_choice_control::block_processor: Validating block with slot: 3665 +2024-09-22T00:44:14.438180Z INFO fork_choice_control::block_processor: Validating block with slot: 3666 +2024-09-22T00:44:14.438241Z INFO fork_choice_control::block_processor: Validating block with slot: 3667 +2024-09-22T00:44:14.444800Z INFO fork_choice_control::block_processor: Validating block with slot: 3668 +2024-09-22T00:44:14.444803Z INFO fork_choice_control::block_processor: Validating block with slot: 3669 +2024-09-22T00:44:14.454163Z INFO fork_choice_control::block_processor: Validating block with slot: 3670 +2024-09-22T00:44:14.454165Z INFO fork_choice_control::block_processor: Validating block with slot: 3671 +2024-09-22T00:44:14.461823Z INFO fork_choice_control::block_processor: Validating block with slot: 3673 +2024-09-22T00:44:14.461825Z INFO fork_choice_control::block_processor: Validating block with slot: 3672 +2024-09-22T00:44:14.479489Z INFO fork_choice_control::block_processor: Validating block with slot: 3675 +2024-09-22T00:44:14.479505Z INFO fork_choice_control::block_processor: Validating block with slot: 3674 +2024-09-22T00:44:14.486360Z INFO fork_choice_control::block_processor: Validating block with slot: 3676 +2024-09-22T00:44:14.486364Z INFO fork_choice_control::block_processor: Validating block with slot: 3677 +2024-09-22T00:44:14.497604Z INFO fork_choice_control::block_processor: Validating block with slot: 3678 +2024-09-22T00:44:14.497606Z INFO fork_choice_control::block_processor: Validating block with slot: 3679 +2024-09-22T00:44:14.501836Z INFO fork_choice_control::block_processor: Validating block with slot: 3552 +2024-09-22T00:44:14.501841Z INFO fork_choice_control::block_processor: Validating block with slot: 3553 +2024-09-22T00:44:14.552699Z INFO fork_choice_control::block_processor: Validating block with slot: 3554 +2024-09-22T00:44:14.552706Z INFO fork_choice_control::block_processor: Validating block with slot: 3555 +2024-09-22T00:44:14.552726Z INFO fork_choice_control::block_processor: Validating block with slot: 3560 +2024-09-22T00:44:14.552736Z INFO fork_choice_control::block_processor: Validating block with slot: 3561 +2024-09-22T00:44:14.552773Z INFO fork_choice_control::block_processor: Validating block with slot: 3562 +2024-09-22T00:44:14.552932Z INFO fork_choice_control::block_processor: Validating block with slot: 3558 +2024-09-22T00:44:14.553691Z INFO fork_choice_control::block_processor: Validating block with slot: 3564 +2024-09-22T00:44:14.553954Z INFO fork_choice_control::block_processor: Validating block with slot: 3565 +2024-09-22T00:44:14.555175Z INFO fork_choice_control::block_processor: Validating block with slot: 3556 +2024-09-22T00:44:14.555213Z INFO fork_choice_control::block_processor: Validating block with slot: 3557 +2024-09-22T00:44:14.558480Z INFO fork_choice_control::block_processor: Validating block with slot: 3566 +2024-09-22T00:44:14.558482Z INFO fork_choice_control::block_processor: Validating block with slot: 3567 +2024-09-22T00:44:14.569402Z INFO fork_choice_control::block_processor: Validating block with slot: 3568 +2024-09-22T00:44:14.569473Z INFO fork_choice_control::block_processor: Validating block with slot: 3571 +2024-09-22T00:44:14.569454Z INFO fork_choice_control::block_processor: Validating block with slot: 3569 +2024-09-22T00:44:14.569484Z INFO fork_choice_control::block_processor: Validating block with slot: 3570 +2024-09-22T00:44:14.578614Z INFO fork_choice_control::block_processor: Validating block with slot: 3572 +2024-09-22T00:44:14.599382Z INFO fork_choice_control::block_processor: Validating block with slot: 3574 +2024-09-22T00:44:14.599387Z INFO fork_choice_control::block_processor: Validating block with slot: 3576 +2024-09-22T00:44:14.599399Z INFO fork_choice_control::block_processor: Validating block with slot: 3573 +2024-09-22T00:44:14.599524Z INFO fork_choice_control::block_processor: Validating block with slot: 3575 +2024-09-22T00:44:14.601553Z INFO fork_choice_control::block_processor: Validating block with slot: 3577 +2024-09-22T00:44:14.622459Z INFO fork_choice_control::block_processor: Validating block with slot: 3579 +2024-09-22T00:44:14.622469Z INFO fork_choice_control::block_processor: Validating block with slot: 3581 +2024-09-22T00:44:14.622477Z INFO fork_choice_control::block_processor: Validating block with slot: 3580 +2024-09-22T00:44:14.622598Z INFO fork_choice_control::block_processor: Validating block with slot: 3582 +2024-09-22T00:44:14.625739Z INFO fork_choice_control::block_processor: Validating block with slot: 3584 +2024-09-22T00:44:14.625769Z INFO fork_choice_control::block_processor: Validating block with slot: 3583 +2024-09-22T00:44:14.628609Z INFO fork_choice_control::block_processor: Validating block with slot: 3586 +2024-09-22T00:44:14.628585Z INFO fork_choice_control::block_processor: Validating block with slot: 3585 +2024-09-22T00:44:14.634126Z INFO fork_choice_control::block_processor: Validating block with slot: 3587 +2024-09-22T00:44:14.640818Z INFO fork_choice_control::block_processor: Validating block with slot: 3588 +2024-09-22T00:44:14.643378Z INFO fork_choice_control::block_processor: Validating block with slot: 3589 +2024-09-22T00:44:14.643418Z INFO fork_choice_control::block_processor: Validating block with slot: 3590 +2024-09-22T00:44:14.649427Z INFO fork_choice_control::block_processor: Validating block with slot: 3591 +2024-09-22T00:44:14.649483Z INFO fork_choice_control::block_processor: Validating block with slot: 3592 +2024-09-22T00:44:14.650310Z INFO fork_choice_control::block_processor: Validating block with slot: 3593 +2024-09-22T00:44:14.679634Z INFO fork_choice_control::block_processor: Validating block with slot: 3594 +2024-09-22T00:44:14.679643Z INFO fork_choice_control::block_processor: Validating block with slot: 3596 +2024-09-22T00:44:14.679675Z INFO fork_choice_control::block_processor: Validating block with slot: 3597 +2024-09-22T00:44:14.679714Z INFO fork_choice_control::block_processor: Validating block with slot: 3598 +2024-09-22T00:44:14.679766Z INFO fork_choice_control::block_processor: Validating block with slot: 3600 +2024-09-22T00:44:14.679892Z INFO fork_choice_control::block_processor: Validating block with slot: 3599 +2024-09-22T00:44:14.680366Z INFO fork_choice_control::block_processor: Validating block with slot: 3601 +2024-09-22T00:44:14.680922Z INFO fork_choice_control::block_processor: Validating block with slot: 3602 +2024-09-22T00:44:14.681259Z INFO fork_choice_control::block_processor: Validating block with slot: 3603 +2024-09-22T00:44:14.681563Z INFO fork_choice_control::block_processor: Validating block with slot: 3595 +2024-09-22T00:44:14.682739Z INFO fork_choice_control::block_processor: Validating block with slot: 3604 +2024-09-22T00:44:14.698644Z INFO fork_choice_control::block_processor: Validating block with slot: 3605 +2024-09-22T00:44:14.698650Z INFO fork_choice_control::block_processor: Validating block with slot: 3609 +2024-09-22T00:44:14.698653Z INFO fork_choice_control::block_processor: Validating block with slot: 3610 +2024-09-22T00:44:14.698683Z INFO fork_choice_control::block_processor: Validating block with slot: 3608 +2024-09-22T00:44:14.698686Z INFO fork_choice_control::block_processor: Validating block with slot: 3607 +2024-09-22T00:44:14.698711Z INFO fork_choice_control::block_processor: Validating block with slot: 3611 +2024-09-22T00:44:14.706201Z INFO fork_choice_control::block_processor: Validating block with slot: 3613 +2024-09-22T00:44:14.706206Z INFO fork_choice_control::block_processor: Validating block with slot: 3614 +2024-09-22T00:44:14.706234Z INFO fork_choice_control::block_processor: Validating block with slot: 3612 +2024-09-22T00:44:14.714319Z INFO fork_choice_control::block_processor: Validating block with slot: 3615 +2024-09-22T00:44:14.722291Z INFO fork_choice_control::block_processor: Validating block with slot: 3488 +2024-09-22T00:44:14.722306Z INFO fork_choice_control::block_processor: Validating block with slot: 3492 +2024-09-22T00:44:14.722366Z INFO fork_choice_control::block_processor: Validating block with slot: 3491 +2024-09-22T00:44:14.722358Z INFO fork_choice_control::block_processor: Validating block with slot: 3489 +2024-09-22T00:44:14.722388Z INFO fork_choice_control::block_processor: Validating block with slot: 3490 +2024-09-22T00:44:14.723676Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x91c0e3170f560ea7080d5c425f426e7e6cb32b5512ca396c7587c6bdae09ba11, slot: 3488 +2024-09-22T00:44:14.739647Z INFO fork_choice_control::block_processor: Validating block with slot: 3494 +2024-09-22T00:44:14.739639Z INFO fork_choice_control::block_processor: Validating block with slot: 3493 +2024-09-22T00:44:14.739940Z INFO fork_choice_control::block_processor: Validating block with slot: 3496 +2024-09-22T00:44:14.740221Z INFO fork_choice_control::block_processor: Validating block with slot: 3495 +2024-09-22T00:44:14.744625Z INFO fork_choice_control::block_processor: Validating block with slot: 3499 +2024-09-22T00:44:14.744644Z INFO fork_choice_control::block_processor: Validating block with slot: 3497 +2024-09-22T00:44:14.744651Z INFO fork_choice_control::block_processor: Validating block with slot: 3498 +2024-09-22T00:44:14.769704Z INFO fork_choice_control::block_processor: Validating block with slot: 3500 +2024-09-22T00:44:14.769713Z INFO fork_choice_control::block_processor: Validating block with slot: 3501 +2024-09-22T00:44:14.769719Z INFO fork_choice_control::block_processor: Validating block with slot: 3502 +2024-09-22T00:44:14.769764Z INFO fork_choice_control::block_processor: Validating block with slot: 3504 +2024-09-22T00:44:14.769834Z INFO fork_choice_control::block_processor: Validating block with slot: 3503 +2024-09-22T00:44:14.769910Z INFO fork_choice_control::block_processor: Validating block with slot: 3505 +2024-09-22T00:44:14.769973Z INFO fork_choice_control::block_processor: Validating block with slot: 3506 +2024-09-22T00:44:14.770806Z INFO fork_choice_control::block_processor: Validating block with slot: 3507 +2024-09-22T00:44:14.770911Z INFO fork_choice_control::block_processor: Validating block with slot: 3508 +2024-09-22T00:44:14.771848Z INFO fork_choice_control::block_processor: Validating block with slot: 3509 +2024-09-22T00:44:14.772020Z INFO fork_choice_control::block_processor: Validating block with slot: 3511 +2024-09-22T00:44:14.772786Z INFO fork_choice_control::block_processor: Validating block with slot: 3512 +2024-09-22T00:44:14.773421Z INFO fork_choice_control::block_processor: Validating block with slot: 3513 +2024-09-22T00:44:14.773967Z INFO fork_choice_control::block_processor: Validating block with slot: 3514 +2024-09-22T00:44:14.793941Z INFO fork_choice_control::block_processor: Validating block with slot: 3515 +2024-09-22T00:44:14.794416Z INFO fork_choice_control::block_processor: Validating block with slot: 3516 +2024-09-22T00:44:14.794503Z INFO fork_choice_control::block_processor: Validating block with slot: 3517 +2024-09-22T00:44:14.794609Z INFO fork_choice_control::block_processor: Validating block with slot: 3518 +2024-09-22T00:44:14.798176Z INFO fork_choice_control::block_processor: Validating block with slot: 3519 +2024-09-22T00:44:14.800080Z INFO fork_choice_control::block_processor: Validating block with slot: 3520 +2024-09-22T00:44:14.800686Z INFO fork_choice_control::block_processor: Validating block with slot: 3521 +2024-09-22T00:44:14.800808Z INFO fork_choice_control::block_processor: Validating block with slot: 3522 +2024-09-22T00:44:14.801263Z INFO fork_choice_control::block_processor: Validating block with slot: 3523 +2024-09-22T00:44:14.814228Z INFO fork_choice_control::block_processor: Validating block with slot: 3524 +2024-09-22T00:44:14.814716Z INFO fork_choice_control::block_processor: Validating block with slot: 3525 +2024-09-22T00:44:14.815593Z INFO fork_choice_control::block_processor: Validating block with slot: 3526 +2024-09-22T00:44:14.815642Z INFO fork_choice_control::block_processor: Validating block with slot: 3527 +2024-09-22T00:44:14.816103Z INFO fork_choice_control::block_processor: Validating block with slot: 3528 +2024-09-22T00:44:14.842125Z INFO fork_choice_control::block_processor: Validating block with slot: 3530 +2024-09-22T00:44:14.842172Z INFO fork_choice_control::block_processor: Validating block with slot: 3531 +2024-09-22T00:44:14.842310Z INFO fork_choice_control::block_processor: Validating block with slot: 3533 +2024-09-22T00:44:14.842390Z INFO fork_choice_control::block_processor: Validating block with slot: 3532 +2024-09-22T00:44:14.842539Z INFO fork_choice_control::block_processor: Validating block with slot: 3534 +2024-09-22T00:44:14.842804Z INFO fork_choice_control::block_processor: Validating block with slot: 3535 +2024-09-22T00:44:14.843106Z INFO fork_choice_control::block_processor: Validating block with slot: 3536 +2024-09-22T00:44:14.843112Z INFO fork_choice_control::block_processor: Validating block with slot: 3537 +2024-09-22T00:44:14.844050Z INFO fork_choice_control::block_processor: Validating block with slot: 3538 +2024-09-22T00:44:14.844996Z INFO fork_choice_control::block_processor: Validating block with slot: 3540 +2024-09-22T00:44:14.845456Z INFO fork_choice_control::block_processor: Validating block with slot: 3541 +2024-09-22T00:44:14.846258Z INFO fork_choice_control::block_processor: Validating block with slot: 3542 +2024-09-22T00:44:14.846534Z INFO fork_choice_control::block_processor: Validating block with slot: 3543 +2024-09-22T00:44:14.846887Z INFO fork_choice_control::block_processor: Validating block with slot: 3544 +2024-09-22T00:44:14.847068Z INFO fork_choice_control::block_processor: Validating block with slot: 3545 +2024-09-22T00:44:14.847197Z INFO fork_choice_control::block_processor: Validating block with slot: 3546 +2024-09-22T00:44:14.847750Z INFO fork_choice_control::block_processor: Validating block with slot: 3547 +2024-09-22T00:44:14.848036Z INFO fork_choice_control::block_processor: Validating block with slot: 3548 +2024-09-22T00:44:14.848705Z INFO fork_choice_control::block_processor: Validating block with slot: 3549 +2024-09-22T00:44:14.848967Z INFO fork_choice_control::block_processor: Validating block with slot: 3550 +2024-09-22T00:44:14.849654Z INFO fork_choice_control::block_processor: Validating block with slot: 3529 +2024-09-22T00:44:14.863905Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3488 +2024-09-22T00:44:14.863929Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3488 +2024-09-22T00:44:14.873888Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3488) +2024-09-22T00:44:14.874139Z INFO fork_choice_control::block_processor: Validating block with slot: 3489 +2024-09-22T00:44:14.875130Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaa80979221991ca4501dc7d8583a694dedd761fe40e494363e9836c10b0b9e75, slot: 3489 +2024-09-22T00:44:14.961070Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3489 +2024-09-22T00:44:14.961092Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3489 +2024-09-22T00:44:14.971097Z INFO fork_choice_control::block_processor: Validating block with slot: 3490 +2024-09-22T00:44:14.973080Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x62949284300896bcb7e65b04219a4171b0c6e7eb731f6f2a62783ff5d30f21b5, slot: 3490 +2024-09-22T00:44:14.997727Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3490 +2024-09-22T00:44:14.997747Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3490 +2024-09-22T00:44:15.008031Z INFO fork_choice_control::block_processor: Validating block with slot: 3491 +2024-09-22T00:44:15.009154Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xba3da28c524f54de5da16e155e06da2400d44cacd105c201e2dc13aa94ec9242, slot: 3491 +2024-09-22T00:44:15.037170Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3491 +2024-09-22T00:44:15.037190Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3491 +2024-09-22T00:44:15.047656Z INFO fork_choice_control::block_processor: Validating block with slot: 3492 +2024-09-22T00:44:15.048635Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe74f94b2b96192549239c51469e27117b4d7d7f10ea6d47bcdf46908c52959f2, slot: 3492 +2024-09-22T00:44:15.050669Z INFO fork_choice_control::block_processor: Validating block with slot: 3551 +2024-09-22T00:44:15.070409Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3492 +2024-09-22T00:44:15.070430Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3492 +2024-09-22T00:44:15.082217Z INFO fork_choice_control::block_processor: Validating block with slot: 3493 +2024-09-22T00:44:15.083853Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa1cd159c43689dcc77fb84bcefcdc1ceb26628fb0430a3937e4aef327da0386c, slot: 3493 +2024-09-22T00:44:15.109217Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3493 +2024-09-22T00:44:15.109237Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3493 +2024-09-22T00:44:15.119589Z INFO fork_choice_control::block_processor: Validating block with slot: 3494 +2024-09-22T00:44:15.120851Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd91b58e874d2e75e45e6e46f0ff7310a7ea765a78baded3aa252b2665862ac7c, slot: 3494 +2024-09-22T00:44:15.146445Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3494 +2024-09-22T00:44:15.146468Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3494 +2024-09-22T00:44:15.157346Z INFO fork_choice_control::block_processor: Validating block with slot: 3495 +2024-09-22T00:44:15.159605Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb49529f026fc2756861c2fa082beb71711478527cfb659b07f5600f1ad4cacd3, slot: 3495 +2024-09-22T00:44:15.184571Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3495 +2024-09-22T00:44:15.184589Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3495 +2024-09-22T00:44:15.196230Z INFO fork_choice_control::block_processor: Validating block with slot: 3496 +2024-09-22T00:44:15.197327Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd9552de04ddce7e90c72d310ae1d8c0a32f6b6bb4ed18f76182cd615e754a3be, slot: 3496 +2024-09-22T00:44:15.214568Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3496 +2024-09-22T00:44:15.214589Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3496 +2024-09-22T00:44:15.225884Z INFO fork_choice_control::block_processor: Validating block with slot: 3497 +2024-09-22T00:44:15.226976Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x15b4cbd4660d0cdb269def36573595b164a352eecd939746de0429d378428c0b, slot: 3497 +2024-09-22T00:44:15.246945Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3497 +2024-09-22T00:44:15.246964Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3497 +2024-09-22T00:44:15.258608Z INFO fork_choice_control::block_processor: Validating block with slot: 3498 +2024-09-22T00:44:15.259979Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf162e4fc55d4dbf083e51aa8fb814b8e739aac749d3e30c7ef6a0ef505ad0d68, slot: 3498 +2024-09-22T00:44:15.278888Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3498 +2024-09-22T00:44:15.278911Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3498 +2024-09-22T00:44:15.290558Z INFO fork_choice_control::block_processor: Validating block with slot: 3499 +2024-09-22T00:44:15.291560Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfb25d8982f9ecf9d756475e45f4931aeb46665484a1129d1bf662251c5089663, slot: 3499 +2024-09-22T00:44:15.309531Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3499 +2024-09-22T00:44:15.309554Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3499 +2024-09-22T00:44:15.321168Z INFO fork_choice_control::block_processor: Validating block with slot: 3500 +2024-09-22T00:44:15.322713Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5486fa2f54651b3f0c20a70b6cc8640898f196893a854a6890409abbe87a5913, slot: 3500 +2024-09-22T00:44:15.340825Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3500 +2024-09-22T00:44:15.340846Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3500 +2024-09-22T00:44:15.352618Z INFO fork_choice_control::block_processor: Validating block with slot: 3501 +2024-09-22T00:44:15.353578Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3afaea5a393ac23eb9f2b800662981315b671463e3d1ad1a66ad89461027cdea, slot: 3501 +2024-09-22T00:44:15.371606Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3501 +2024-09-22T00:44:15.371619Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3501 +2024-09-22T00:44:15.383788Z INFO fork_choice_control::block_processor: Validating block with slot: 3502 +2024-09-22T00:44:15.384880Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0eb9311434f57a7e41032a923df489e4e922ce9d6cd068779fdc38785a46f8f8, slot: 3502 +2024-09-22T00:44:15.403925Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3502 +2024-09-22T00:44:15.403940Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3502 +2024-09-22T00:44:15.416402Z INFO fork_choice_control::block_processor: Validating block with slot: 3503 +2024-09-22T00:44:15.417372Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5f784049dc5986b5180a05b892fab1d3d55c4e02bb0cf5b572a37eb88b04d78b, slot: 3503 +2024-09-22T00:44:15.435880Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3503 +2024-09-22T00:44:15.435899Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3503 +2024-09-22T00:44:15.448497Z INFO fork_choice_control::block_processor: Validating block with slot: 3504 +2024-09-22T00:44:15.449620Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x21c31b67c48207ae16ffd5b403112a495efab1f8808814776ff788cc47d2f1a0, slot: 3504 +2024-09-22T00:44:15.469322Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3504 +2024-09-22T00:44:15.469339Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3504 +2024-09-22T00:44:15.482375Z INFO fork_choice_control::block_processor: Validating block with slot: 3505 +2024-09-22T00:44:15.483497Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x35a71d1c2ce7b87b70fdf8ddf2ec569f68dba8c356caa38e37cf9325cd1edba4, slot: 3505 +2024-09-22T00:44:15.503188Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3505 +2024-09-22T00:44:15.503204Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3505 +2024-09-22T00:44:15.516450Z INFO fork_choice_control::block_processor: Validating block with slot: 3506 +2024-09-22T00:44:15.517429Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x847eeb72c68d19aed8d132beef712da8671d8a96eaf5c5ca9d18142712d8f2fd, slot: 3506 +2024-09-22T00:44:15.534785Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3506 +2024-09-22T00:44:15.534804Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3506 +2024-09-22T00:44:15.547804Z INFO fork_choice_control::block_processor: Validating block with slot: 3507 +2024-09-22T00:44:15.549044Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x56df2961b2eb723b6447f9b76213f83ebac434bd26e007f6d9ba94410e5ec24c, slot: 3507 +2024-09-22T00:44:15.567280Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3507 +2024-09-22T00:44:15.567294Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3507 +2024-09-22T00:44:15.580541Z INFO fork_choice_control::block_processor: Validating block with slot: 3508 +2024-09-22T00:44:15.581506Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x40f683b4cc6c5762abd9268276cb89e37b881fcc620862cb5e45313a1c12bacc, slot: 3508 +2024-09-22T00:44:15.598029Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3508 +2024-09-22T00:44:15.598046Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3508 +2024-09-22T00:44:15.611551Z INFO fork_choice_control::block_processor: Validating block with slot: 3509 +2024-09-22T00:44:15.612519Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4e433518d511970c3efc91bf8de3ed6815735f7520268211320f384e0ca867d7, slot: 3509 +2024-09-22T00:44:15.631551Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3509 +2024-09-22T00:44:15.631571Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3509 +2024-09-22T00:44:15.645435Z INFO fork_choice_control::block_processor: Validating block with slot: 3511 +2024-09-22T00:44:15.647209Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x861ccfccf95c05b8cbbce87e87382a5326cfe844652e29a3bb4475b76a557e07, slot: 3511 +2024-09-22T00:44:15.683914Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3511 +2024-09-22T00:44:15.683937Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3511 +2024-09-22T00:44:15.697922Z INFO fork_choice_control::block_processor: Validating block with slot: 3512 +2024-09-22T00:44:15.698905Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x817203375fce258b44b3a69e32d7b927290f74b8fe2660ba96b24a78e4198a26, slot: 3512 +2024-09-22T00:44:15.718165Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3512 +2024-09-22T00:44:15.718187Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3512 +2024-09-22T00:44:15.737381Z INFO fork_choice_control::block_processor: Validating block with slot: 3513 +2024-09-22T00:44:15.737384Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 108, root: 0x14677b12fb43cbd2523a8797782556dd21869257c31602ec6b323fb819b85ef4, head slot: 3512, head root: 0x817203375fce258b44b3a69e32d7b927290f74b8fe2660ba96b24a78e4198a26) +2024-09-22T00:44:15.738356Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8dab9437013cc3ab58827b0fef82b68cee5f3d35a83d25d12fbefc8374435b04, slot: 3513 +2024-09-22T00:44:15.756924Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3513 +2024-09-22T00:44:15.756942Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3513 +2024-09-22T00:44:15.770863Z INFO fork_choice_control::block_processor: Validating block with slot: 3514 +2024-09-22T00:44:15.771820Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1e421d47f975bf07e06ef6c8fa8c82c2fd1c12c533326c46854b01150c4df8b8, slot: 3514 +2024-09-22T00:44:15.789259Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3514 +2024-09-22T00:44:15.789278Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3514 +2024-09-22T00:44:15.803863Z INFO fork_choice_control::block_processor: Validating block with slot: 3515 +2024-09-22T00:44:15.807490Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf8a14b7c56953d9bdf515cd75a35d08bd502b1e7b982afaf52e3273e9ce6d6ba, slot: 3515 +2024-09-22T00:44:15.832511Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3515 +2024-09-22T00:44:15.832530Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3515 +2024-09-22T00:44:15.848074Z INFO fork_choice_control::block_processor: Validating block with slot: 3516 +2024-09-22T00:44:15.849619Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd778c453da00c0750070b1d80925172212736845fc72525f6b7438c08d27c395, slot: 3516 +2024-09-22T00:44:15.874115Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3516 +2024-09-22T00:44:15.874139Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3516 +2024-09-22T00:44:15.888939Z INFO fork_choice_control::block_processor: Validating block with slot: 3517 +2024-09-22T00:44:15.889129Z INFO fork_choice_control::block_processor: Validating block with slot: 3744 +2024-09-22T00:44:15.890337Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaf5518ea2978855d1a35d85c785032af5e64cdf979f18926b556a867a988fbe4, slot: 3517 +2024-09-22T00:44:15.899942Z INFO fork_choice_control::block_processor: Validating block with slot: 3746 +2024-09-22T00:44:15.910437Z INFO fork_choice_control::block_processor: Validating block with slot: 3747 +2024-09-22T00:44:15.910448Z INFO fork_choice_control::block_processor: Validating block with slot: 3749 +2024-09-22T00:44:15.910466Z INFO fork_choice_control::block_processor: Validating block with slot: 3750 +2024-09-22T00:44:15.910504Z INFO fork_choice_control::block_processor: Validating block with slot: 3752 +2024-09-22T00:44:15.910651Z INFO fork_choice_control::block_processor: Validating block with slot: 3751 +2024-09-22T00:44:15.911246Z INFO fork_choice_control::block_processor: Validating block with slot: 3748 +2024-09-22T00:44:15.911460Z INFO fork_choice_control::block_processor: Validating block with slot: 3753 +2024-09-22T00:44:15.911637Z INFO fork_choice_control::block_processor: Validating block with slot: 3754 +2024-09-22T00:44:15.913125Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3517 +2024-09-22T00:44:15.913141Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3517 +2024-09-22T00:44:15.929280Z INFO fork_choice_control::block_processor: Validating block with slot: 3518 +2024-09-22T00:44:15.930382Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb532a71c66753409dc311e1b8e5a870905d332225335a38f71bac7b0f7a22a9d, slot: 3518 +2024-09-22T00:44:15.944376Z INFO fork_choice_control::block_processor: Validating block with slot: 3755 +2024-09-22T00:44:15.944458Z INFO fork_choice_control::block_processor: Validating block with slot: 3756 +2024-09-22T00:44:15.944604Z INFO fork_choice_control::block_processor: Validating block with slot: 3757 +2024-09-22T00:44:15.944619Z INFO fork_choice_control::block_processor: Validating block with slot: 3758 +2024-09-22T00:44:15.945490Z INFO fork_choice_control::block_processor: Validating block with slot: 3759 +2024-09-22T00:44:15.946880Z INFO fork_choice_control::block_processor: Validating block with slot: 3760 +2024-09-22T00:44:15.947467Z INFO fork_choice_control::block_processor: Validating block with slot: 3761 +2024-09-22T00:44:15.947600Z INFO fork_choice_control::block_processor: Validating block with slot: 3762 +2024-09-22T00:44:15.947798Z INFO fork_choice_control::block_processor: Validating block with slot: 3763 +2024-09-22T00:44:15.948974Z INFO fork_choice_control::block_processor: Validating block with slot: 3764 +2024-09-22T00:44:15.948979Z INFO fork_choice_control::block_processor: Validating block with slot: 3765 +2024-09-22T00:44:15.949341Z INFO fork_choice_control::block_processor: Validating block with slot: 3766 +2024-09-22T00:44:15.949744Z INFO fork_choice_control::block_processor: Validating block with slot: 3768 +2024-09-22T00:44:15.949919Z INFO fork_choice_control::block_processor: Validating block with slot: 3769 +2024-09-22T00:44:15.949969Z INFO fork_choice_control::block_processor: Validating block with slot: 3770 +2024-09-22T00:44:15.950326Z INFO fork_choice_control::block_processor: Validating block with slot: 3771 +2024-09-22T00:44:15.950858Z INFO fork_choice_control::block_processor: Validating block with slot: 3772 +2024-09-22T00:44:15.951093Z INFO fork_choice_control::block_processor: Validating block with slot: 3773 +2024-09-22T00:44:15.951581Z INFO fork_choice_control::block_processor: Validating block with slot: 3767 +2024-09-22T00:44:15.956641Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3518 +2024-09-22T00:44:15.956661Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3518 +2024-09-22T00:44:15.972487Z INFO fork_choice_control::block_processor: Validating block with slot: 3519 +2024-09-22T00:44:15.973460Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x589bd53a8426e5d48850d8774a1f6ea63b1566e23c990f3beb0f500aff90d33f, slot: 3519 +2024-09-22T00:44:15.994972Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3519 +2024-09-22T00:44:15.994997Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3519 +2024-09-22T00:44:16.011374Z INFO fork_choice_control::block_processor: Validating block with slot: 3520 +2024-09-22T00:44:16.012664Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb4190ffc864af0f5fd4e69d804434ed98877ccdd2e32f5eefcb025ef40598916, slot: 3520 +2024-09-22T00:44:16.083512Z INFO fork_choice_control::block_processor: Validating block with slot: 3774 +2024-09-22T00:44:16.083542Z INFO fork_choice_control::block_processor: Validating block with slot: 3775 +2024-09-22T00:44:16.083686Z INFO fork_choice_control::block_processor: Validating block with slot: 3776 +2024-09-22T00:44:16.085182Z INFO fork_choice_control::block_processor: Validating block with slot: 3778 +2024-09-22T00:44:16.085202Z INFO fork_choice_control::block_processor: Validating block with slot: 3779 +2024-09-22T00:44:16.085968Z INFO fork_choice_control::block_processor: Validating block with slot: 3780 +2024-09-22T00:44:16.086906Z INFO fork_choice_control::block_processor: Validating block with slot: 3781 +2024-09-22T00:44:16.087521Z INFO fork_choice_control::block_processor: Validating block with slot: 3782 +2024-09-22T00:44:16.087591Z INFO fork_choice_control::block_processor: Validating block with slot: 3783 +2024-09-22T00:44:16.090695Z INFO fork_choice_control::block_processor: Validating block with slot: 3784 +2024-09-22T00:44:16.091529Z INFO fork_choice_control::block_processor: Validating block with slot: 3785 +2024-09-22T00:44:16.092131Z INFO fork_choice_control::block_processor: Validating block with slot: 3786 +2024-09-22T00:44:16.092366Z INFO fork_choice_control::block_processor: Validating block with slot: 3790 +2024-09-22T00:44:16.092596Z INFO fork_choice_control::block_processor: Validating block with slot: 3787 +2024-09-22T00:44:16.093004Z INFO fork_choice_control::block_processor: Validating block with slot: 3791 +2024-09-22T00:44:16.093579Z INFO fork_choice_control::block_processor: Validating block with slot: 3792 +2024-09-22T00:44:16.094516Z INFO fork_choice_control::block_processor: Validating block with slot: 3793 +2024-09-22T00:44:16.095070Z INFO fork_choice_control::block_processor: Validating block with slot: 3794 +2024-09-22T00:44:16.095452Z INFO fork_choice_control::block_processor: Validating block with slot: 3795 +2024-09-22T00:44:16.095497Z INFO fork_choice_control::block_processor: Validating block with slot: 3796 +2024-09-22T00:44:16.096625Z INFO fork_choice_control::block_processor: Validating block with slot: 3797 +2024-09-22T00:44:16.096796Z INFO fork_choice_control::block_processor: Validating block with slot: 3799 +2024-09-22T00:44:16.096846Z INFO fork_choice_control::block_processor: Validating block with slot: 3798 +2024-09-22T00:44:16.097095Z INFO fork_choice_control::block_processor: Validating block with slot: 3800 +2024-09-22T00:44:16.097868Z INFO fork_choice_control::block_processor: Validating block with slot: 3801 +2024-09-22T00:44:16.097945Z INFO fork_choice_control::block_processor: Validating block with slot: 3788 +2024-09-22T00:44:16.098472Z INFO fork_choice_control::block_processor: Validating block with slot: 3802 +2024-09-22T00:44:16.098604Z INFO fork_choice_control::block_processor: Validating block with slot: 3803 +2024-09-22T00:44:16.098807Z INFO fork_choice_control::block_processor: Validating block with slot: 3804 +2024-09-22T00:44:16.099043Z INFO fork_choice_control::block_processor: Validating block with slot: 3789 +2024-09-22T00:44:16.099550Z INFO fork_choice_control::block_processor: Validating block with slot: 3805 +2024-09-22T00:44:16.099745Z INFO fork_choice_control::block_processor: Validating block with slot: 3806 +2024-09-22T00:44:16.100692Z INFO fork_choice_control::block_processor: Validating block with slot: 3807 +2024-09-22T00:44:16.100885Z INFO fork_choice_control::block_processor: Validating block with slot: 3684 +2024-09-22T00:44:16.101766Z INFO fork_choice_control::block_processor: Validating block with slot: 3685 +2024-09-22T00:44:16.102082Z INFO fork_choice_control::block_processor: Validating block with slot: 3680 +2024-09-22T00:44:16.102222Z INFO fork_choice_control::block_processor: Validating block with slot: 3686 +2024-09-22T00:44:16.102322Z INFO fork_choice_control::block_processor: Validating block with slot: 3681 +2024-09-22T00:44:16.102667Z INFO fork_choice_control::block_processor: Validating block with slot: 3687 +2024-09-22T00:44:16.102806Z INFO fork_choice_control::block_processor: Validating block with slot: 3688 +2024-09-22T00:44:16.103159Z INFO fork_choice_control::block_processor: Validating block with slot: 3689 +2024-09-22T00:44:16.103724Z INFO fork_choice_control::block_processor: Validating block with slot: 3690 +2024-09-22T00:44:16.104235Z INFO fork_choice_control::block_processor: Validating block with slot: 3692 +2024-09-22T00:44:16.104248Z INFO fork_choice_control::block_processor: Validating block with slot: 3693 +2024-09-22T00:44:16.104325Z INFO fork_choice_control::block_processor: Validating block with slot: 3691 +2024-09-22T00:44:16.104728Z INFO fork_choice_control::block_processor: Validating block with slot: 3694 +2024-09-22T00:44:16.105186Z INFO fork_choice_control::block_processor: Validating block with slot: 3696 +2024-09-22T00:44:16.105241Z INFO fork_choice_control::block_processor: Validating block with slot: 3697 +2024-09-22T00:44:16.105308Z INFO fork_choice_control::block_processor: Validating block with slot: 3698 +2024-09-22T00:44:16.105942Z INFO fork_choice_control::block_processor: Validating block with slot: 3699 +2024-09-22T00:44:16.106824Z INFO fork_choice_control::block_processor: Validating block with slot: 3700 +2024-09-22T00:44:16.106887Z INFO fork_choice_control::block_processor: Validating block with slot: 3701 +2024-09-22T00:44:16.107012Z INFO fork_choice_control::block_processor: Validating block with slot: 3702 +2024-09-22T00:44:16.107226Z INFO fork_choice_control::block_processor: Validating block with slot: 3703 +2024-09-22T00:44:16.107779Z INFO fork_choice_control::block_processor: Validating block with slot: 3704 +2024-09-22T00:44:16.107894Z INFO fork_choice_control::block_processor: Validating block with slot: 3706 +2024-09-22T00:44:16.107933Z INFO fork_choice_control::block_processor: Validating block with slot: 3682 +2024-09-22T00:44:16.107949Z INFO fork_choice_control::block_processor: Validating block with slot: 3707 +2024-09-22T00:44:16.109707Z INFO fork_choice_control::block_processor: Validating block with slot: 3709 +2024-09-22T00:44:16.109753Z INFO fork_choice_control::block_processor: Validating block with slot: 3710 +2024-09-22T00:44:16.110332Z INFO fork_choice_control::block_processor: Validating block with slot: 3712 +2024-09-22T00:44:16.110705Z INFO fork_choice_control::block_processor: Validating block with slot: 3713 +2024-09-22T00:44:16.110807Z INFO fork_choice_control::block_processor: Validating block with slot: 3714 +2024-09-22T00:44:16.110828Z INFO fork_choice_control::block_processor: Validating block with slot: 3715 +2024-09-22T00:44:16.111545Z INFO fork_choice_control::block_processor: Validating block with slot: 3716 +2024-09-22T00:44:16.112044Z INFO fork_choice_control::block_processor: Validating block with slot: 3717 +2024-09-22T00:44:16.112619Z INFO fork_choice_control::block_processor: Validating block with slot: 3718 +2024-09-22T00:44:16.112625Z INFO fork_choice_control::block_processor: Validating block with slot: 3719 +2024-09-22T00:44:16.113558Z INFO fork_choice_control::block_processor: Validating block with slot: 3720 +2024-09-22T00:44:16.113696Z INFO fork_choice_control::block_processor: Validating block with slot: 3721 +2024-09-22T00:44:16.113792Z INFO fork_choice_control::block_processor: Validating block with slot: 3722 +2024-09-22T00:44:16.114241Z INFO fork_choice_control::block_processor: Validating block with slot: 3723 +2024-09-22T00:44:16.114634Z INFO fork_choice_control::block_processor: Validating block with slot: 3724 +2024-09-22T00:44:16.114870Z INFO fork_choice_control::block_processor: Validating block with slot: 3725 +2024-09-22T00:44:16.115900Z INFO fork_choice_control::block_processor: Validating block with slot: 3726 +2024-09-22T00:44:16.116042Z INFO fork_choice_control::block_processor: Validating block with slot: 3727 +2024-09-22T00:44:16.116974Z INFO fork_choice_control::block_processor: Validating block with slot: 3728 +2024-09-22T00:44:16.117114Z INFO fork_choice_control::block_processor: Validating block with slot: 3729 +2024-09-22T00:44:16.117210Z INFO fork_choice_control::block_processor: Validating block with slot: 3730 +2024-09-22T00:44:16.117867Z INFO fork_choice_control::block_processor: Validating block with slot: 3731 +2024-09-22T00:44:16.118147Z INFO fork_choice_control::block_processor: Validating block with slot: 3732 +2024-09-22T00:44:16.118326Z INFO fork_choice_control::block_processor: Validating block with slot: 3733 +2024-09-22T00:44:16.118480Z INFO fork_choice_control::block_processor: Validating block with slot: 3734 +2024-09-22T00:44:16.119081Z INFO fork_choice_control::block_processor: Validating block with slot: 3735 +2024-09-22T00:44:16.119218Z INFO fork_choice_control::block_processor: Validating block with slot: 3736 +2024-09-22T00:44:16.119715Z INFO fork_choice_control::block_processor: Validating block with slot: 3737 +2024-09-22T00:44:16.120158Z INFO fork_choice_control::block_processor: Validating block with slot: 3739 +2024-09-22T00:44:16.120435Z INFO fork_choice_control::block_processor: Validating block with slot: 3740 +2024-09-22T00:44:16.120657Z INFO fork_choice_control::block_processor: Validating block with slot: 3741 +2024-09-22T00:44:16.121737Z INFO fork_choice_control::block_processor: Validating block with slot: 3708 +2024-09-22T00:44:16.122131Z INFO fork_choice_control::block_processor: Validating block with slot: 3711 +2024-09-22T00:44:16.125334Z INFO fork_choice_control::block_processor: Validating block with slot: 3738 +2024-09-22T00:44:16.159765Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3520 +2024-09-22T00:44:16.159794Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3520 +2024-09-22T00:44:16.170057Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3520) +2024-09-22T00:44:16.170254Z INFO fork_choice_control::block_processor: Validating block with slot: 3521 +2024-09-22T00:44:16.171637Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x758d0ff7187f21229665455c891839f99ab83a38d47017496d5a2ea2d1e72a47, slot: 3521 +2024-09-22T00:44:16.192781Z INFO fork_choice_control::block_processor: Validating block with slot: 3742 +2024-09-22T00:44:16.192796Z INFO fork_choice_control::block_processor: Validating block with slot: 3743 +2024-09-22T00:44:16.192813Z INFO fork_choice_control::block_processor: Validating block with slot: 3808 +2024-09-22T00:44:16.192906Z INFO fork_choice_control::block_processor: Validating block with slot: 3811 +2024-09-22T00:44:16.192998Z INFO fork_choice_control::block_processor: Validating block with slot: 3812 +2024-09-22T00:44:16.193283Z INFO fork_choice_control::block_processor: Validating block with slot: 3809 +2024-09-22T00:44:16.193768Z INFO fork_choice_control::block_processor: Validating block with slot: 3813 +2024-09-22T00:44:16.193764Z INFO fork_choice_control::block_processor: Validating block with slot: 3810 +2024-09-22T00:44:16.193982Z INFO fork_choice_control::block_processor: Validating block with slot: 3814 +2024-09-22T00:44:16.194433Z INFO fork_choice_control::block_processor: Validating block with slot: 3815 +2024-09-22T00:44:16.195054Z INFO fork_choice_control::block_processor: Validating block with slot: 3816 +2024-09-22T00:44:16.195275Z INFO fork_choice_control::block_processor: Validating block with slot: 3817 +2024-09-22T00:44:16.195504Z INFO fork_choice_control::block_processor: Validating block with slot: 3818 +2024-09-22T00:44:16.196280Z INFO fork_choice_control::block_processor: Validating block with slot: 3819 +2024-09-22T00:44:16.196444Z INFO fork_choice_control::block_processor: Validating block with slot: 3820 +2024-09-22T00:44:16.196715Z INFO fork_choice_control::block_processor: Validating block with slot: 3822 +2024-09-22T00:44:16.197283Z INFO fork_choice_control::block_processor: Validating block with slot: 3823 +2024-09-22T00:44:16.197329Z INFO fork_choice_control::block_processor: Validating block with slot: 3824 +2024-09-22T00:44:16.197653Z INFO fork_choice_control::block_processor: Validating block with slot: 3825 +2024-09-22T00:44:16.198354Z INFO fork_choice_control::block_processor: Validating block with slot: 3826 +2024-09-22T00:44:16.198677Z INFO fork_choice_control::block_processor: Validating block with slot: 3827 +2024-09-22T00:44:16.199064Z INFO fork_choice_control::block_processor: Validating block with slot: 3828 +2024-09-22T00:44:16.199302Z INFO fork_choice_control::block_processor: Validating block with slot: 3830 +2024-09-22T00:44:16.199392Z INFO fork_choice_control::block_processor: Validating block with slot: 3831 +2024-09-22T00:44:16.199618Z INFO fork_choice_control::block_processor: Validating block with slot: 3832 +2024-09-22T00:44:16.200045Z INFO fork_choice_control::block_processor: Validating block with slot: 3833 +2024-09-22T00:44:16.200382Z INFO fork_choice_control::block_processor: Validating block with slot: 3834 +2024-09-22T00:44:16.200867Z INFO fork_choice_control::block_processor: Validating block with slot: 3835 +2024-09-22T00:44:16.201042Z INFO fork_choice_control::block_processor: Validating block with slot: 3837 +2024-09-22T00:44:16.201943Z INFO fork_choice_control::block_processor: Validating block with slot: 3829 +2024-09-22T00:44:16.202002Z INFO fork_choice_control::block_processor: Validating block with slot: 3839 +2024-09-22T00:44:16.202694Z INFO fork_choice_control::block_processor: Validating block with slot: 3841 +2024-09-22T00:44:16.202952Z INFO fork_choice_control::block_processor: Validating block with slot: 3821 +2024-09-22T00:44:16.203036Z INFO fork_choice_control::block_processor: Validating block with slot: 3838 +2024-09-22T00:44:16.203060Z INFO fork_choice_control::block_processor: Validating block with slot: 3843 +2024-09-22T00:44:16.203075Z INFO fork_choice_control::block_processor: Validating block with slot: 3844 +2024-09-22T00:44:16.203591Z INFO fork_choice_control::block_processor: Validating block with slot: 3845 +2024-09-22T00:44:16.204286Z INFO fork_choice_control::block_processor: Validating block with slot: 3847 +2024-09-22T00:44:16.204599Z INFO fork_choice_control::block_processor: Validating block with slot: 3848 +2024-09-22T00:44:16.204808Z INFO fork_choice_control::block_processor: Validating block with slot: 3849 +2024-09-22T00:44:16.205773Z INFO fork_choice_control::block_processor: Validating block with slot: 3850 +2024-09-22T00:44:16.205926Z INFO fork_choice_control::block_processor: Validating block with slot: 3851 +2024-09-22T00:44:16.206319Z INFO fork_choice_control::block_processor: Validating block with slot: 3852 +2024-09-22T00:44:16.206846Z INFO fork_choice_control::block_processor: Validating block with slot: 3853 +2024-09-22T00:44:16.206863Z INFO fork_choice_control::block_processor: Validating block with slot: 3854 +2024-09-22T00:44:16.207389Z INFO fork_choice_control::block_processor: Validating block with slot: 3855 +2024-09-22T00:44:16.207473Z INFO fork_choice_control::block_processor: Validating block with slot: 3842 +2024-09-22T00:44:16.208692Z INFO fork_choice_control::block_processor: Validating block with slot: 3859 +2024-09-22T00:44:16.208610Z INFO fork_choice_control::block_processor: Validating block with slot: 3856 +2024-09-22T00:44:16.209240Z INFO fork_choice_control::block_processor: Validating block with slot: 3860 +2024-09-22T00:44:16.209638Z INFO fork_choice_control::block_processor: Validating block with slot: 3861 +2024-09-22T00:44:16.209650Z INFO fork_choice_control::block_processor: Validating block with slot: 3857 +2024-09-22T00:44:16.209857Z INFO fork_choice_control::block_processor: Validating block with slot: 3858 +2024-09-22T00:44:16.210745Z INFO fork_choice_control::block_processor: Validating block with slot: 3862 +2024-09-22T00:44:16.210851Z INFO fork_choice_control::block_processor: Validating block with slot: 3863 +2024-09-22T00:44:16.211379Z INFO fork_choice_control::block_processor: Validating block with slot: 3864 +2024-09-22T00:44:16.211418Z INFO fork_choice_control::block_processor: Validating block with slot: 3865 +2024-09-22T00:44:16.212358Z INFO fork_choice_control::block_processor: Validating block with slot: 3866 +2024-09-22T00:44:16.212782Z INFO fork_choice_control::block_processor: Validating block with slot: 3867 +2024-09-22T00:44:16.213217Z INFO fork_choice_control::block_processor: Validating block with slot: 3870 +2024-09-22T00:44:16.213352Z INFO fork_choice_control::block_processor: Validating block with slot: 3868 +2024-09-22T00:44:16.213427Z INFO fork_choice_control::block_processor: Validating block with slot: 3869 +2024-09-22T00:44:16.258675Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3521 +2024-09-22T00:44:16.258697Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3521 +2024-09-22T00:44:16.269220Z INFO fork_choice_control::block_processor: Validating block with slot: 3522 +2024-09-22T00:44:16.270326Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe1ee6b984045e13022f96cb2eec293810e392792dde828524ade0ee8a0268e13, slot: 3522 +2024-09-22T00:44:16.277114Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3522 +2024-09-22T00:44:16.277149Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3522 +2024-09-22T00:44:16.287534Z INFO fork_choice_control::block_processor: Validating block with slot: 3523 +2024-09-22T00:44:16.288505Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x49870a40ab7dcb36092122fa6ae7d41577c56cca0a32172c5ee5f6a9f93f97cd, slot: 3523 +2024-09-22T00:44:16.299424Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3523 +2024-09-22T00:44:16.299441Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3523 +2024-09-22T00:44:16.310766Z INFO fork_choice_control::block_processor: Validating block with slot: 3524 +2024-09-22T00:44:16.313348Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5e2f92e143647667d6173f641b08f651c9e40d41bdef7154adc5c6ab6511aea2, slot: 3524 +2024-09-22T00:44:16.333399Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3524 +2024-09-22T00:44:16.333422Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3524 +2024-09-22T00:44:16.338517Z INFO fork_choice_control::block_processor: Validating block with slot: 3871 +2024-09-22T00:44:16.345159Z INFO fork_choice_control::block_processor: Validating block with slot: 3525 +2024-09-22T00:44:16.346379Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xecdad830b1e49122c096b0cd752fe56e3329e7d795e764786f5701c1fa31f0bb, slot: 3525 +2024-09-22T00:44:16.354672Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3525 +2024-09-22T00:44:16.354695Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3525 +2024-09-22T00:44:16.367625Z INFO fork_choice_control::block_processor: Validating block with slot: 3526 +2024-09-22T00:44:16.368637Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x31210ee6d0b7f05437d642991af49dd93cbe20b80b494e8b342b2fdaf4aa439f, slot: 3526 +2024-09-22T00:44:16.375233Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3526 +2024-09-22T00:44:16.375258Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3526 +2024-09-22T00:44:16.386579Z INFO fork_choice_control::block_processor: Validating block with slot: 3527 +2024-09-22T00:44:16.388773Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc0f4c28b09f0f075f4b0638e8a5732a39be658ec77dfab42215334046bfe4919, slot: 3527 +2024-09-22T00:44:16.397628Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3527 +2024-09-22T00:44:16.397643Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3527 +2024-09-22T00:44:16.409089Z INFO fork_choice_control::block_processor: Validating block with slot: 3528 +2024-09-22T00:44:16.410067Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4ccc33907c2d2cb343c6e69c505ed791e0d9a7da9333cc378ac83bf1edebea51, slot: 3528 +2024-09-22T00:44:16.416323Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3528 +2024-09-22T00:44:16.416341Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3528 +2024-09-22T00:44:16.428025Z INFO fork_choice_control::block_processor: Validating block with slot: 3529 +2024-09-22T00:44:16.429990Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbb790b7468f5d55a22aaba1eee6ccf7fe5a867ad768a0ee9ee6eb3c8ce250157, slot: 3529 +2024-09-22T00:44:16.438626Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3529 +2024-09-22T00:44:16.438642Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3529 +2024-09-22T00:44:16.450449Z INFO fork_choice_control::block_processor: Validating block with slot: 3530 +2024-09-22T00:44:16.451408Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1a954d8f2682aa9ef0174c7aa59bca7519818244d6a80c84acc54b47ee858296, slot: 3530 +2024-09-22T00:44:16.457274Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3530 +2024-09-22T00:44:16.457290Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3530 +2024-09-22T00:44:16.469073Z INFO fork_choice_control::block_processor: Validating block with slot: 3531 +2024-09-22T00:44:16.470026Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x261f0f6e8b301a6e3c7406c4022a290eb3373e359df01adc44b5d1299b6ad10d, slot: 3531 +2024-09-22T00:44:16.476256Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3531 +2024-09-22T00:44:16.476278Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3531 +2024-09-22T00:44:16.488267Z INFO fork_choice_control::block_processor: Validating block with slot: 3532 +2024-09-22T00:44:16.489237Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb64a7d05358efa058017e14b5664cbac0134eb05dfa98cc9ba5ee4c0fc874a6a, slot: 3532 +2024-09-22T00:44:16.495338Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3532 +2024-09-22T00:44:16.495360Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3532 +2024-09-22T00:44:16.507796Z INFO fork_choice_control::block_processor: Validating block with slot: 3533 +2024-09-22T00:44:16.508928Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdae32500c4f3cc870d5ed9f3caee4cc48cb82c9022e08cb585b8c48247aa5456, slot: 3533 +2024-09-22T00:44:16.514940Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3533 +2024-09-22T00:44:16.514957Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3533 +2024-09-22T00:44:16.527546Z INFO fork_choice_control::block_processor: Validating block with slot: 3534 +2024-09-22T00:44:16.528651Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x604e08b9abc201e795ba424566c785ad32a7daa278d9e0ddcb37847097b4769b, slot: 3534 +2024-09-22T00:44:16.535250Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3534 +2024-09-22T00:44:16.535270Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3534 +2024-09-22T00:44:16.547940Z INFO fork_choice_control::block_processor: Validating block with slot: 3535 +2024-09-22T00:44:16.549312Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe4987b1132e88aeb5a42161b5b720b0062a5ab3d036c5f4024d2f199b0d01828, slot: 3535 +2024-09-22T00:44:16.556076Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3535 +2024-09-22T00:44:16.556089Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3535 +2024-09-22T00:44:16.568918Z INFO fork_choice_control::block_processor: Validating block with slot: 3536 +2024-09-22T00:44:16.569881Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8092df711b45dc2eb042269b20ea2e7c89644e3a501b08738e5552b36df656e2, slot: 3536 +2024-09-22T00:44:16.575841Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3536 +2024-09-22T00:44:16.575861Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3536 +2024-09-22T00:44:16.588596Z INFO fork_choice_control::block_processor: Validating block with slot: 3537 +2024-09-22T00:44:16.590988Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd1eabb77e45983f2e3a863aae0d91c0e3206aaab83cc00eb0a9c91fdd67565ba, slot: 3537 +2024-09-22T00:44:16.600105Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3537 +2024-09-22T00:44:16.600118Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3537 +2024-09-22T00:44:16.613588Z INFO fork_choice_control::block_processor: Validating block with slot: 3538 +2024-09-22T00:44:16.614554Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc6b3cf76ebae94b7ee2be10477fafec50c4ca56b71866e71dfa9f1683b988f75, slot: 3538 +2024-09-22T00:44:16.620366Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3538 +2024-09-22T00:44:16.620379Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3538 +2024-09-22T00:44:16.634245Z INFO fork_choice_control::block_processor: Validating block with slot: 3540 +2024-09-22T00:44:16.636482Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x14b663d3aef1c69964b858cec04a7644bb07ac4f5c8ec98bdc00da930b595928, slot: 3540 +2024-09-22T00:44:16.647797Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3540 +2024-09-22T00:44:16.647818Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3540 +2024-09-22T00:44:16.661743Z INFO fork_choice_control::block_processor: Validating block with slot: 3541 +2024-09-22T00:44:16.662841Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x78402d07df2c26f125a0e9f35569e5e3cc593eaa05fc77924cee9676f5399502, slot: 3541 +2024-09-22T00:44:16.668998Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3541 +2024-09-22T00:44:16.669014Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3541 +2024-09-22T00:44:16.683207Z INFO fork_choice_control::block_processor: Validating block with slot: 3542 +2024-09-22T00:44:16.684295Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf545774620a71d972b8a55306b7d067aca88e6abd747c7acfff6d4b318c79b9c, slot: 3542 +2024-09-22T00:44:16.690307Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3542 +2024-09-22T00:44:16.690323Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3542 +2024-09-22T00:44:16.704499Z INFO fork_choice_control::block_processor: Validating block with slot: 3543 +2024-09-22T00:44:16.705733Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa5f958147abda97fa746be481d01692177f00a810c0e2564eb9c2e79d8e44fb3, slot: 3543 +2024-09-22T00:44:16.712359Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3543 +2024-09-22T00:44:16.712380Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3543 +2024-09-22T00:44:16.736579Z INFO fork_choice_control::block_processor: Validating block with slot: 3544 +2024-09-22T00:44:16.736584Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 109, root: 0x91c0e3170f560ea7080d5c425f426e7e6cb32b5512ca396c7587c6bdae09ba11, head slot: 3543, head root: 0xa5f958147abda97fa746be481d01692177f00a810c0e2564eb9c2e79d8e44fb3) +2024-09-22T00:44:16.737770Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3ae07c2a707f9dd550fd6d94dfa7a0ba42aa9af32a867e3242905c6ef369886f, slot: 3544 +2024-09-22T00:44:16.746290Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3544 +2024-09-22T00:44:16.746315Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3544 +2024-09-22T00:44:16.762805Z INFO fork_choice_control::block_processor: Validating block with slot: 3545 +2024-09-22T00:44:16.764010Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9415fadf1958bc0ac54037ed34e1e5cef864cf93e7eb2d3d11626400cf5b564f, slot: 3545 +2024-09-22T00:44:16.771134Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3545 +2024-09-22T00:44:16.771159Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3545 +2024-09-22T00:44:16.786287Z INFO fork_choice_control::block_processor: Validating block with slot: 3546 +2024-09-22T00:44:16.787835Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5d8dd8aeffeee2a4f8ed5444de71c4c09fa37e1d872e1fbf4aca2dff0ac9e434, slot: 3546 +2024-09-22T00:44:16.796560Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3546 +2024-09-22T00:44:16.796582Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3546 +2024-09-22T00:44:16.811950Z INFO fork_choice_control::block_processor: Validating block with slot: 3547 +2024-09-22T00:44:16.813221Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4ac88687901a03cdf4479e03eefb9211f7914b02a6147b478eb9b2e042e16382, slot: 3547 +2024-09-22T00:44:16.821040Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3547 +2024-09-22T00:44:16.821059Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3547 +2024-09-22T00:44:16.842376Z INFO fork_choice_control::block_processor: Validating block with slot: 3548 +2024-09-22T00:44:16.845167Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb1102d97d79ee9f673a687974f92c5ce7c4c855afc32ebe547f7e5a9de830ec2, slot: 3548 +2024-09-22T00:44:16.857134Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3548 +2024-09-22T00:44:16.857159Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3548 +2024-09-22T00:44:16.873331Z INFO fork_choice_control::block_processor: Validating block with slot: 3549 +2024-09-22T00:44:16.874329Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x280755f86c08ed071db8944f41cd5da86f82f46d53a30b41d69ab74805940269, slot: 3549 +2024-09-22T00:44:16.875392Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 3488 +2024-09-22T00:44:16.880761Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3549 +2024-09-22T00:44:16.880775Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3549 +2024-09-22T00:44:16.896847Z INFO fork_choice_control::block_processor: Validating block with slot: 3550 +2024-09-22T00:44:16.897839Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3e39f96cfaf47bcc2bf8dbbc3b6e4733fcae0751514e0a75f8876f5bed8b12da, slot: 3550 +2024-09-22T00:44:16.904253Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3550 +2024-09-22T00:44:16.904271Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3550 +2024-09-22T00:44:16.920998Z INFO fork_choice_control::block_processor: Validating block with slot: 3551 +2024-09-22T00:44:16.926377Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf3f7c22203430bbbd2c517350848364af292191fb1b52007a9eb63ae9f7bdcd5, slot: 3551 +2024-09-22T00:44:16.932991Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3551 +2024-09-22T00:44:16.933011Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3551 +2024-09-22T00:44:16.951340Z INFO fork_choice_control::block_processor: Validating block with slot: 3552 +2024-09-22T00:44:16.952332Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa0a1a72a9c909fe136f4c67161d2bbcd78b0c79d9ec4151e63a91fc5dc3c65f9, slot: 3552 +2024-09-22T00:44:17.050043Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3552 +2024-09-22T00:44:17.050076Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3552 +2024-09-22T00:44:17.052391Z INFO fork_choice_control::block_processor: Validating block with slot: 3874 +2024-09-22T00:44:17.052430Z INFO fork_choice_control::block_processor: Validating block with slot: 3873 +2024-09-22T00:44:17.052464Z INFO fork_choice_control::block_processor: Validating block with slot: 3875 +2024-09-22T00:44:17.052519Z INFO fork_choice_control::block_processor: Validating block with slot: 3876 +2024-09-22T00:44:17.063397Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3552) +2024-09-22T00:44:17.063582Z INFO fork_choice_control::block_processor: Validating block with slot: 3553 +2024-09-22T00:44:17.065473Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3fc74f128b136511f762fc1a8136b1840ac08713aa142e120be7b12bb6e32caa, slot: 3553 +2024-09-22T00:44:17.145369Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3553 +2024-09-22T00:44:17.145393Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3553 +2024-09-22T00:44:17.156198Z INFO fork_choice_control::block_processor: Validating block with slot: 3554 +2024-09-22T00:44:17.157177Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd2aaf4b08bb9ebf3a04f65bc2d8f25e392271f2488756a4125e298c879ac05fc, slot: 3554 +2024-09-22T00:44:17.168908Z WARN discv5::handler: Authentication response already sent. Dropping session. Node: Node: 0x4497..0f04, addr: 54.39.139.54:30303 +2024-09-22T00:44:17.169517Z WARN discv5::service: RPC Request failed: id: 8b76cd43be53c7f5, error InvalidRemotePacket +2024-09-22T00:44:17.169652Z WARN discv5::service: RPC Request failed: id: ad1277d9984d55ea, error InvalidRemotePacket +2024-09-22T00:44:17.186918Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3554 +2024-09-22T00:44:17.186967Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3554 +2024-09-22T00:44:17.198757Z INFO fork_choice_control::block_processor: Validating block with slot: 3555 +2024-09-22T00:44:17.203169Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x85f9eedc62034bb4d010da19e82bde6a5a0c4bef24f7cd42a73d23bc3849a3ef, slot: 3555 +2024-09-22T00:44:17.215568Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3555 +2024-09-22T00:44:17.215591Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3555 +2024-09-22T00:44:17.226381Z INFO fork_choice_control::block_processor: Validating block with slot: 3556 +2024-09-22T00:44:17.227384Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x150412b08cdc4d6a0743e7fa86e02fb66efbed86f7d9dddc4d3a431f49a01d1d, slot: 3556 +2024-09-22T00:44:17.235492Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3556 +2024-09-22T00:44:17.235511Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3556 +2024-09-22T00:44:17.246688Z INFO fork_choice_control::block_processor: Validating block with slot: 3557 +2024-09-22T00:44:17.250831Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x963647de1cf030d0e2694745e2beecd0e8ad9a20f6a70a0a9def70ddbfdd2a47, slot: 3557 +2024-09-22T00:44:17.264989Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3557 +2024-09-22T00:44:17.265012Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3557 +2024-09-22T00:44:17.278116Z INFO fork_choice_control::block_processor: Validating block with slot: 3558 +2024-09-22T00:44:17.279082Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5fe440b571e88e0d297031f2283ceab7e8980e426c870d2922937be163452503, slot: 3558 +2024-09-22T00:44:17.286025Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3558 +2024-09-22T00:44:17.286041Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3558 +2024-09-22T00:44:17.298271Z INFO fork_choice_control::block_processor: Validating block with slot: 3560 +2024-09-22T00:44:17.300657Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1dce00886cc5ccd33229339bb37787ceb9e0ae3c6f3f9348cfb580e1f1e43781, slot: 3560 +2024-09-22T00:44:17.313719Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3560 +2024-09-22T00:44:17.313740Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3560 +2024-09-22T00:44:17.325717Z INFO fork_choice_control::block_processor: Validating block with slot: 3561 +2024-09-22T00:44:17.326973Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2572c1993371236e2abf0018a7a02a9196b6826d345788ab696f3c3de2d2cbc4, slot: 3561 +2024-09-22T00:44:17.334399Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3561 +2024-09-22T00:44:17.334420Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3561 +2024-09-22T00:44:17.346340Z INFO fork_choice_control::block_processor: Validating block with slot: 3562 +2024-09-22T00:44:17.347308Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x205587f7cd3509929c88b2e08de68395e4a3b46b0c8e6804771d5e43cfc14eda, slot: 3562 +2024-09-22T00:44:17.353695Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3562 +2024-09-22T00:44:17.353710Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3562 +2024-09-22T00:44:17.357845Z INFO fork_choice_control::block_processor: Validating block with slot: 3877 +2024-09-22T00:44:17.357857Z INFO fork_choice_control::block_processor: Validating block with slot: 3880 +2024-09-22T00:44:17.357876Z INFO fork_choice_control::block_processor: Validating block with slot: 3878 +2024-09-22T00:44:17.358073Z INFO fork_choice_control::block_processor: Validating block with slot: 3879 +2024-09-22T00:44:17.358141Z INFO fork_choice_control::block_processor: Validating block with slot: 3881 +2024-09-22T00:44:17.358165Z INFO fork_choice_control::block_processor: Validating block with slot: 3882 +2024-09-22T00:44:17.358843Z INFO fork_choice_control::block_processor: Validating block with slot: 3883 +2024-09-22T00:44:17.359093Z INFO fork_choice_control::block_processor: Validating block with slot: 3884 +2024-09-22T00:44:17.359218Z INFO fork_choice_control::block_processor: Validating block with slot: 3885 +2024-09-22T00:44:17.359786Z INFO fork_choice_control::block_processor: Validating block with slot: 3886 +2024-09-22T00:44:17.360033Z INFO fork_choice_control::block_processor: Validating block with slot: 3887 +2024-09-22T00:44:17.360289Z INFO fork_choice_control::block_processor: Validating block with slot: 3888 +2024-09-22T00:44:17.360970Z INFO fork_choice_control::block_processor: Validating block with slot: 3889 +2024-09-22T00:44:17.361277Z INFO fork_choice_control::block_processor: Validating block with slot: 3890 +2024-09-22T00:44:17.361502Z INFO fork_choice_control::block_processor: Validating block with slot: 3891 +2024-09-22T00:44:17.361873Z INFO fork_choice_control::block_processor: Validating block with slot: 3892 +2024-09-22T00:44:17.361963Z INFO fork_choice_control::block_processor: Validating block with slot: 3893 +2024-09-22T00:44:17.362181Z INFO fork_choice_control::block_processor: Validating block with slot: 3894 +2024-09-22T00:44:17.362425Z INFO fork_choice_control::block_processor: Validating block with slot: 3895 +2024-09-22T00:44:17.362438Z INFO fork_choice_control::block_processor: Validating block with slot: 3896 +2024-09-22T00:44:17.363832Z INFO fork_choice_control::block_processor: Validating block with slot: 3897 +2024-09-22T00:44:17.364012Z INFO fork_choice_control::block_processor: Validating block with slot: 3900 +2024-09-22T00:44:17.364430Z INFO fork_choice_control::block_processor: Validating block with slot: 3901 +2024-09-22T00:44:17.364787Z INFO fork_choice_control::block_processor: Validating block with slot: 3898 +2024-09-22T00:44:17.364812Z INFO fork_choice_control::block_processor: Validating block with slot: 3902 +2024-09-22T00:44:17.364950Z INFO fork_choice_control::block_processor: Validating block with slot: 3903 +2024-09-22T00:44:17.365749Z INFO fork_choice_control::block_processor: Validating block with slot: 3904 +2024-09-22T00:44:17.365777Z INFO fork_choice_control::block_processor: Validating block with slot: 3905 +2024-09-22T00:44:17.365838Z INFO fork_choice_control::block_processor: Validating block with slot: 3906 +2024-09-22T00:44:17.366021Z INFO fork_choice_control::block_processor: Validating block with slot: 3907 +2024-09-22T00:44:17.366978Z INFO fork_choice_control::block_processor: Validating block with slot: 3908 +2024-09-22T00:44:17.367255Z INFO fork_choice_control::block_processor: Validating block with slot: 3910 +2024-09-22T00:44:17.367434Z INFO fork_choice_control::block_processor: Validating block with slot: 3912 +2024-09-22T00:44:17.367550Z INFO fork_choice_control::block_processor: Validating block with slot: 3899 +2024-09-22T00:44:17.367698Z INFO fork_choice_control::block_processor: Validating block with slot: 3913 +2024-09-22T00:44:17.368251Z INFO fork_choice_control::block_processor: Validating block with slot: 3915 +2024-09-22T00:44:17.368385Z INFO fork_choice_control::block_processor: Validating block with slot: 3916 +2024-09-22T00:44:17.368492Z INFO fork_choice_control::block_processor: Validating block with slot: 3918 +2024-09-22T00:44:17.369801Z INFO fork_choice_control::block_processor: Validating block with slot: 3919 +2024-09-22T00:44:17.370025Z INFO fork_choice_control::block_processor: Validating block with slot: 3920 +2024-09-22T00:44:17.370061Z INFO fork_choice_control::block_processor: Validating block with slot: 3921 +2024-09-22T00:44:17.370267Z INFO fork_choice_control::block_processor: Validating block with slot: 3922 +2024-09-22T00:44:17.370667Z INFO fork_choice_control::block_processor: Validating block with slot: 3923 +2024-09-22T00:44:17.370967Z INFO fork_choice_control::block_processor: Validating block with slot: 3924 +2024-09-22T00:44:17.371129Z INFO fork_choice_control::block_processor: Validating block with slot: 3925 +2024-09-22T00:44:17.371284Z INFO fork_choice_control::block_processor: Validating block with slot: 3926 +2024-09-22T00:44:17.371883Z INFO fork_choice_control::block_processor: Validating block with slot: 3927 +2024-09-22T00:44:17.372196Z INFO fork_choice_control::block_processor: Validating block with slot: 3928 +2024-09-22T00:44:17.372469Z INFO fork_choice_control::block_processor: Validating block with slot: 3929 +2024-09-22T00:44:17.372741Z INFO fork_choice_control::block_processor: Validating block with slot: 3930 +2024-09-22T00:44:17.372817Z INFO fork_choice_control::block_processor: Validating block with slot: 3931 +2024-09-22T00:44:17.373682Z INFO fork_choice_control::block_processor: Validating block with slot: 4002 +2024-09-22T00:44:17.373686Z INFO fork_choice_control::block_processor: Validating block with slot: 3932 +2024-09-22T00:44:17.373757Z INFO fork_choice_control::block_processor: Validating block with slot: 3934 +2024-09-22T00:44:17.373877Z INFO fork_choice_control::block_processor: Validating block with slot: 3933 +2024-09-22T00:44:17.374000Z INFO fork_choice_control::block_processor: Validating block with slot: 3935 +2024-09-22T00:44:17.374505Z INFO fork_choice_control::block_processor: Validating block with slot: 4000 +2024-09-22T00:44:17.374831Z INFO fork_choice_control::block_processor: Validating block with slot: 4003 +2024-09-22T00:44:17.374937Z INFO fork_choice_control::block_processor: Validating block with slot: 4004 +2024-09-22T00:44:17.375107Z INFO fork_choice_control::block_processor: Validating block with slot: 4005 +2024-09-22T00:44:17.375766Z INFO fork_choice_control::block_processor: Validating block with slot: 4006 +2024-09-22T00:44:17.375878Z INFO fork_choice_control::block_processor: Validating block with slot: 4007 +2024-09-22T00:44:17.376933Z INFO fork_choice_control::block_processor: Validating block with slot: 4001 +2024-09-22T00:44:17.376952Z INFO fork_choice_control::block_processor: Validating block with slot: 4008 +2024-09-22T00:44:17.377233Z INFO fork_choice_control::block_processor: Validating block with slot: 4011 +2024-09-22T00:44:17.377309Z INFO fork_choice_control::block_processor: Validating block with slot: 4009 +2024-09-22T00:44:17.377355Z INFO fork_choice_control::block_processor: Validating block with slot: 4013 +2024-09-22T00:44:17.377892Z INFO fork_choice_control::block_processor: Validating block with slot: 4014 +2024-09-22T00:44:17.378033Z INFO fork_choice_control::block_processor: Validating block with slot: 4015 +2024-09-22T00:44:17.378306Z INFO fork_choice_control::block_processor: Validating block with slot: 4016 +2024-09-22T00:44:17.378826Z INFO fork_choice_control::block_processor: Validating block with slot: 4017 +2024-09-22T00:44:17.380612Z INFO fork_choice_control::block_processor: Validating block with slot: 4018 +2024-09-22T00:44:17.380721Z INFO fork_choice_control::block_processor: Validating block with slot: 4010 +2024-09-22T00:44:17.381024Z INFO fork_choice_control::block_processor: Validating block with slot: 4020 +2024-09-22T00:44:17.381178Z INFO fork_choice_control::block_processor: Validating block with slot: 4022 +2024-09-22T00:44:17.381301Z INFO fork_choice_control::block_processor: Validating block with slot: 4023 +2024-09-22T00:44:17.381516Z INFO fork_choice_control::block_processor: Validating block with slot: 4024 +2024-09-22T00:44:17.382096Z INFO fork_choice_control::block_processor: Validating block with slot: 4025 +2024-09-22T00:44:17.382185Z INFO fork_choice_control::block_processor: Validating block with slot: 4026 +2024-09-22T00:44:17.382315Z INFO fork_choice_control::block_processor: Validating block with slot: 4028 +2024-09-22T00:44:17.382977Z INFO fork_choice_control::block_processor: Validating block with slot: 4019 +2024-09-22T00:44:17.383085Z INFO fork_choice_control::block_processor: Validating block with slot: 4030 +2024-09-22T00:44:17.383166Z INFO fork_choice_control::block_processor: Validating block with slot: 4031 +2024-09-22T00:44:17.383341Z INFO fork_choice_control::block_processor: Validating block with slot: 4032 +2024-09-22T00:44:17.383828Z INFO fork_choice_control::block_processor: Validating block with slot: 4033 +2024-09-22T00:44:17.383838Z INFO fork_choice_control::block_processor: Validating block with slot: 4029 +2024-09-22T00:44:17.384101Z INFO fork_choice_control::block_processor: Validating block with slot: 4034 +2024-09-22T00:44:17.384159Z INFO fork_choice_control::block_processor: Validating block with slot: 4035 +2024-09-22T00:44:17.384556Z INFO fork_choice_control::block_processor: Validating block with slot: 4036 +2024-09-22T00:44:17.385036Z INFO fork_choice_control::block_processor: Validating block with slot: 4037 +2024-09-22T00:44:17.385453Z INFO fork_choice_control::block_processor: Validating block with slot: 4038 +2024-09-22T00:44:17.385495Z INFO fork_choice_control::block_processor: Validating block with slot: 4039 +2024-09-22T00:44:17.385974Z INFO fork_choice_control::block_processor: Validating block with slot: 4040 +2024-09-22T00:44:17.386431Z INFO fork_choice_control::block_processor: Validating block with slot: 4041 +2024-09-22T00:44:17.386788Z INFO fork_choice_control::block_processor: Validating block with slot: 4042 +2024-09-22T00:44:17.386911Z INFO fork_choice_control::block_processor: Validating block with slot: 4043 +2024-09-22T00:44:17.386969Z INFO fork_choice_control::block_processor: Validating block with slot: 4044 +2024-09-22T00:44:17.387645Z INFO fork_choice_control::block_processor: Validating block with slot: 4045 +2024-09-22T00:44:17.387776Z INFO fork_choice_control::block_processor: Validating block with slot: 4046 +2024-09-22T00:44:17.388056Z INFO fork_choice_control::block_processor: Validating block with slot: 4048 +2024-09-22T00:44:17.388583Z INFO fork_choice_control::block_processor: Validating block with slot: 4049 +2024-09-22T00:44:17.388993Z INFO fork_choice_control::block_processor: Validating block with slot: 4050 +2024-09-22T00:44:17.389172Z INFO fork_choice_control::block_processor: Validating block with slot: 4051 +2024-09-22T00:44:17.389930Z INFO fork_choice_control::block_processor: Validating block with slot: 4053 +2024-09-22T00:44:17.389984Z INFO fork_choice_control::block_processor: Validating block with slot: 4054 +2024-09-22T00:44:17.390361Z INFO fork_choice_control::block_processor: Validating block with slot: 4055 +2024-09-22T00:44:17.390389Z INFO fork_choice_control::block_processor: Validating block with slot: 4056 +2024-09-22T00:44:17.391456Z INFO fork_choice_control::block_processor: Validating block with slot: 4057 +2024-09-22T00:44:17.391719Z INFO fork_choice_control::block_processor: Validating block with slot: 4060 +2024-09-22T00:44:17.391726Z INFO fork_choice_control::block_processor: Validating block with slot: 4047 +2024-09-22T00:44:17.392057Z INFO fork_choice_control::block_processor: Validating block with slot: 4058 +2024-09-22T00:44:17.392512Z INFO fork_choice_control::block_processor: Validating block with slot: 4061 +2024-09-22T00:44:17.392655Z INFO fork_choice_control::block_processor: Validating block with slot: 4062 +2024-09-22T00:44:17.393452Z INFO fork_choice_control::block_processor: Validating block with slot: 3936 +2024-09-22T00:44:17.393534Z INFO fork_choice_control::block_processor: Validating block with slot: 3937 +2024-09-22T00:44:17.393610Z INFO fork_choice_control::block_processor: Validating block with slot: 4059 +2024-09-22T00:44:17.393701Z INFO fork_choice_control::block_processor: Validating block with slot: 3938 +2024-09-22T00:44:17.393866Z INFO fork_choice_control::block_processor: Validating block with slot: 3939 +2024-09-22T00:44:17.393933Z INFO fork_choice_control::block_processor: Validating block with slot: 3940 +2024-09-22T00:44:17.394471Z INFO fork_choice_control::block_processor: Validating block with slot: 3941 +2024-09-22T00:44:17.394522Z INFO fork_choice_control::block_processor: Validating block with slot: 3942 +2024-09-22T00:44:17.394923Z INFO fork_choice_control::block_processor: Validating block with slot: 3943 +2024-09-22T00:44:17.396074Z INFO fork_choice_control::block_processor: Validating block with slot: 3944 +2024-09-22T00:44:17.396114Z INFO fork_choice_control::block_processor: Validating block with slot: 3947 +2024-09-22T00:44:17.396186Z INFO fork_choice_control::block_processor: Validating block with slot: 3945 +2024-09-22T00:44:17.396765Z INFO fork_choice_control::block_processor: Validating block with slot: 3946 +2024-09-22T00:44:17.396975Z INFO fork_choice_control::block_processor: Validating block with slot: 3948 +2024-09-22T00:44:17.397051Z INFO fork_choice_control::block_processor: Validating block with slot: 3949 +2024-09-22T00:44:17.397578Z INFO fork_choice_control::block_processor: Validating block with slot: 3950 +2024-09-22T00:44:17.397912Z INFO fork_choice_control::block_processor: Validating block with slot: 3951 +2024-09-22T00:44:17.398514Z INFO fork_choice_control::block_processor: Validating block with slot: 3952 +2024-09-22T00:44:17.398858Z INFO fork_choice_control::block_processor: Validating block with slot: 3953 +2024-09-22T00:44:17.399719Z INFO fork_choice_control::block_processor: Validating block with slot: 3954 +2024-09-22T00:44:17.399798Z INFO fork_choice_control::block_processor: Validating block with slot: 3956 +2024-09-22T00:44:17.399932Z INFO fork_choice_control::block_processor: Validating block with slot: 3957 +2024-09-22T00:44:17.400868Z INFO fork_choice_control::block_processor: Validating block with slot: 3958 +2024-09-22T00:44:17.401052Z INFO fork_choice_control::block_processor: Validating block with slot: 3959 +2024-09-22T00:44:17.401151Z INFO fork_choice_control::block_processor: Validating block with slot: 3960 +2024-09-22T00:44:17.401669Z INFO fork_choice_control::block_processor: Validating block with slot: 3961 +2024-09-22T00:44:17.401998Z INFO fork_choice_control::block_processor: Validating block with slot: 3962 +2024-09-22T00:44:17.402408Z INFO fork_choice_control::block_processor: Validating block with slot: 3955 +2024-09-22T00:44:17.402531Z INFO fork_choice_control::block_processor: Validating block with slot: 3965 +2024-09-22T00:44:17.402826Z INFO fork_choice_control::block_processor: Validating block with slot: 3966 +2024-09-22T00:44:17.403067Z INFO fork_choice_control::block_processor: Validating block with slot: 3967 +2024-09-22T00:44:17.403228Z INFO fork_choice_control::block_processor: Validating block with slot: 3968 +2024-09-22T00:44:17.403470Z INFO fork_choice_control::block_processor: Validating block with slot: 3969 +2024-09-22T00:44:17.403469Z INFO fork_choice_control::block_processor: Validating block with slot: 3963 +2024-09-22T00:44:17.404460Z INFO fork_choice_control::block_processor: Validating block with slot: 3964 +2024-09-22T00:44:17.404570Z INFO fork_choice_control::block_processor: Validating block with slot: 3970 +2024-09-22T00:44:17.404684Z INFO fork_choice_control::block_processor: Validating block with slot: 3971 +2024-09-22T00:44:17.404728Z INFO fork_choice_control::block_processor: Validating block with slot: 3972 +2024-09-22T00:44:17.404943Z INFO fork_choice_control::block_processor: Validating block with slot: 3973 +2024-09-22T00:44:17.405121Z INFO fork_choice_control::block_processor: Validating block with slot: 3974 +2024-09-22T00:44:17.406076Z INFO fork_choice_control::block_processor: Validating block with slot: 3975 +2024-09-22T00:44:17.406514Z INFO fork_choice_control::block_processor: Validating block with slot: 3976 +2024-09-22T00:44:17.406906Z INFO fork_choice_control::block_processor: Validating block with slot: 3978 +2024-09-22T00:44:17.407145Z INFO fork_choice_control::block_processor: Validating block with slot: 3979 +2024-09-22T00:44:17.407258Z INFO fork_choice_control::block_processor: Validating block with slot: 3980 +2024-09-22T00:44:17.407636Z INFO fork_choice_control::block_processor: Validating block with slot: 3981 +2024-09-22T00:44:17.407657Z INFO fork_choice_control::block_processor: Validating block with slot: 3977 +2024-09-22T00:44:17.407882Z INFO fork_choice_control::block_processor: Validating block with slot: 3982 +2024-09-22T00:44:17.407978Z INFO fork_choice_control::block_processor: Validating block with slot: 3983 +2024-09-22T00:44:17.408220Z INFO fork_choice_control::block_processor: Validating block with slot: 3984 +2024-09-22T00:44:17.408308Z INFO fork_choice_control::block_processor: Validating block with slot: 3985 +2024-09-22T00:44:17.408331Z INFO fork_choice_control::block_processor: Validating block with slot: 3986 +2024-09-22T00:44:17.409052Z INFO fork_choice_control::block_processor: Validating block with slot: 3987 +2024-09-22T00:44:17.409097Z INFO fork_choice_control::block_processor: Validating block with slot: 3988 +2024-09-22T00:44:17.409159Z INFO fork_choice_control::block_processor: Validating block with slot: 3989 +2024-09-22T00:44:17.410127Z INFO fork_choice_control::block_processor: Validating block with slot: 3990 +2024-09-22T00:44:17.410231Z INFO fork_choice_control::block_processor: Validating block with slot: 3991 +2024-09-22T00:44:17.410417Z INFO fork_choice_control::block_processor: Validating block with slot: 3992 +2024-09-22T00:44:17.410802Z INFO fork_choice_control::block_processor: Validating block with slot: 3993 +2024-09-22T00:44:17.411198Z INFO fork_choice_control::block_processor: Validating block with slot: 3994 +2024-09-22T00:44:17.411698Z INFO fork_choice_control::block_processor: Validating block with slot: 3996 +2024-09-22T00:44:17.411734Z INFO fork_choice_control::block_processor: Validating block with slot: 3997 +2024-09-22T00:44:17.412089Z INFO fork_choice_control::block_processor: Validating block with slot: 3998 +2024-09-22T00:44:17.412487Z INFO fork_choice_control::block_processor: Validating block with slot: 3564 +2024-09-22T00:44:17.414276Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeffa9d67337ef064270243548710e810e80eeb4267bb5c63b3f7d6fd6409dd17, slot: 3564 +2024-09-22T00:44:17.424542Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3564 +2024-09-22T00:44:17.424568Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3564 +2024-09-22T00:44:17.436389Z INFO fork_choice_control::block_processor: Validating block with slot: 3565 +2024-09-22T00:44:17.437647Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf963ee3108d9baee6ae3550156112a65f84e9cc46fd6393a7f1410f02412d6d6, slot: 3565 +2024-09-22T00:44:17.444785Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3565 +2024-09-22T00:44:17.444804Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3565 +2024-09-22T00:44:17.457044Z INFO fork_choice_control::block_processor: Validating block with slot: 3566 +2024-09-22T00:44:17.460340Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6dc7f6269e174517148d987ec3345ecf15848dd66a25203063bed4dd8f102576, slot: 3566 +2024-09-22T00:44:17.472130Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3566 +2024-09-22T00:44:17.472148Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3566 +2024-09-22T00:44:17.484781Z INFO fork_choice_control::block_processor: Validating block with slot: 3567 +2024-09-22T00:44:17.485872Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x65434e636be505547950637e966cc1ba18ca115f85b343c50c599f0116b9f4f1, slot: 3567 +2024-09-22T00:44:17.492163Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3567 +2024-09-22T00:44:17.492181Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3567 +2024-09-22T00:44:17.496838Z INFO fork_choice_control::block_processor: Validating block with slot: 3999 +2024-09-22T00:44:17.504987Z INFO fork_choice_control::block_processor: Validating block with slot: 3568 +2024-09-22T00:44:17.505960Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeb6dac72058997b729265950925b74963cd0d52f7354b3e6daf1e7fe7fe7bc2d, slot: 3568 +2024-09-22T00:44:17.511820Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3568 +2024-09-22T00:44:17.511838Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3568 +2024-09-22T00:44:17.524951Z INFO fork_choice_control::block_processor: Validating block with slot: 3569 +2024-09-22T00:44:17.526048Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5f952381565969b7c84f1bc8674b2ac65e4ef74a623876df982bd87cd855c0b0, slot: 3569 +2024-09-22T00:44:17.532140Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3569 +2024-09-22T00:44:17.532156Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3569 +2024-09-22T00:44:17.545346Z INFO fork_choice_control::block_processor: Validating block with slot: 3570 +2024-09-22T00:44:17.546995Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa05ce800f57cbfac2c2082acb472651cc9e5eca86e6c7dd02d03096f6c934e0c, slot: 3570 +2024-09-22T00:44:17.554229Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3570 +2024-09-22T00:44:17.554242Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3570 +2024-09-22T00:44:17.567792Z INFO fork_choice_control::block_processor: Validating block with slot: 3571 +2024-09-22T00:44:17.568755Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xde90db316842b5e34c6b431d487791d60338b8295f0f054bb1dc829f117f43d9, slot: 3571 +2024-09-22T00:44:17.576121Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3571 +2024-09-22T00:44:17.576143Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3571 +2024-09-22T00:44:17.589469Z INFO fork_choice_control::block_processor: Validating block with slot: 3572 +2024-09-22T00:44:17.590608Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xffb5d8e5f70277a0ca73b295d8f9e7d7d2d99bd38b3d275c4748815612846cac, slot: 3572 +2024-09-22T00:44:17.596929Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3572 +2024-09-22T00:44:17.596946Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3572 +2024-09-22T00:44:17.610974Z INFO fork_choice_control::block_processor: Validating block with slot: 3573 +2024-09-22T00:44:17.613576Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3529e74bde9e14d4d7d904784ff98ffedf62a19f676addda136379001ba5db8d, slot: 3573 +2024-09-22T00:44:17.623721Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3573 +2024-09-22T00:44:17.623751Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3573 +2024-09-22T00:44:17.638580Z INFO fork_choice_control::block_processor: Validating block with slot: 3574 +2024-09-22T00:44:17.639609Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe8398b9dbcfa5d6774d247bb3b28014495bde3deb97cfa16e6afab0663f10fe7, slot: 3574 +2024-09-22T00:44:17.645568Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3574 +2024-09-22T00:44:17.645585Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3574 +2024-09-22T00:44:17.659937Z INFO fork_choice_control::block_processor: Validating block with slot: 3575 +2024-09-22T00:44:17.661592Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x27d300b7a549276e8b6d278b0346e843e6b9773564c5ae5b6947716cd600d894, slot: 3575 +2024-09-22T00:44:17.669075Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3575 +2024-09-22T00:44:17.669088Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3575 +2024-09-22T00:44:17.689492Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 110, root: 0xb4190ffc864af0f5fd4e69d804434ed98877ccdd2e32f5eefcb025ef40598916, head slot: 3575, head root: 0x27d300b7a549276e8b6d278b0346e843e6b9773564c5ae5b6947716cd600d894) +2024-09-22T00:44:17.689559Z INFO fork_choice_control::block_processor: Validating block with slot: 3576 +2024-09-22T00:44:17.690655Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2c3a03a556977f08d8757f921b2e3dc3639890daeb4bbbe9a54cdd7cf5e6749e, slot: 3576 +2024-09-22T00:44:17.697027Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3576 +2024-09-22T00:44:17.697042Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3576 +2024-09-22T00:44:17.712076Z INFO fork_choice_control::block_processor: Validating block with slot: 3577 +2024-09-22T00:44:17.713057Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcada24254c14be4a9b0ddd163a6fbfe27c8f6812d72f287dc631be702ced43d5, slot: 3577 +2024-09-22T00:44:17.719564Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3577 +2024-09-22T00:44:17.719580Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3577 +2024-09-22T00:44:17.734806Z INFO fork_choice_control::block_processor: Validating block with slot: 3579 +2024-09-22T00:44:17.737468Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9f52069d9d70ce8d9d8003b33e59dfba51eb78f529f17f0ee3e89ebb419663b0, slot: 3579 +2024-09-22T00:44:17.750664Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3579 +2024-09-22T00:44:17.750684Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3579 +2024-09-22T00:44:17.766433Z INFO fork_choice_control::block_processor: Validating block with slot: 3580 +2024-09-22T00:44:17.767419Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xda9caf18d37dcc692a890e0ee4fa5805913fe89a0b554c6b12de5785e9697d90, slot: 3580 +2024-09-22T00:44:17.774577Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3580 +2024-09-22T00:44:17.774603Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3580 +2024-09-22T00:44:17.790759Z INFO fork_choice_control::block_processor: Validating block with slot: 3581 +2024-09-22T00:44:17.792456Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb436bd694237519067d85a8f858247c2e56dffb7cc42cb7216d577653fe866aa, slot: 3581 +2024-09-22T00:44:17.801113Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3581 +2024-09-22T00:44:17.801135Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3581 +2024-09-22T00:44:17.816727Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 3520 +2024-09-22T00:44:17.817236Z INFO fork_choice_control::block_processor: Validating block with slot: 3582 +2024-09-22T00:44:17.818350Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcfcc6e2e8a045f0dd14c871494b66134f52104a8e2d14ef36f510693342a1ed4, slot: 3582 +2024-09-22T00:44:17.825101Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3582 +2024-09-22T00:44:17.825120Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3582 +2024-09-22T00:44:17.841393Z INFO fork_choice_control::block_processor: Validating block with slot: 3583 +2024-09-22T00:44:17.843227Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf16fa1213a180bbfc7ff67f9d27042385c9e5f32693a17f2d73eade17135b466, slot: 3583 +2024-09-22T00:44:17.851904Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3583 +2024-09-22T00:44:17.851919Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3583 +2024-09-22T00:44:17.868518Z INFO fork_choice_control::block_processor: Validating block with slot: 3584 +2024-09-22T00:44:17.869515Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf7b53557e5860599f6ab4eec1b056d2e70a64647bae6e28ae7ff11f821d13c5f, slot: 3584 +2024-09-22T00:44:17.966633Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3584 +2024-09-22T00:44:17.966655Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3584 +2024-09-22T00:44:17.977142Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3584) +2024-09-22T00:44:17.977324Z INFO fork_choice_control::block_processor: Validating block with slot: 3585 +2024-09-22T00:44:17.978323Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x65db10dcba65db88937662302a01af3ffe6a61a64143d56f8f53771033f42a05, slot: 3585 +2024-09-22T00:44:17.996992Z WARN discv5::handler: Authentication response already sent. Dropping session. Node: Node: 0x4488..c410, addr: 194.33.40.241:30324 +2024-09-22T00:44:17.997233Z WARN discv5::service: RPC Request failed: id: 99c32b8ca532926b, error InvalidRemotePacket +2024-09-22T00:44:17.997464Z WARN discv5::service: RPC Request failed: id: 11e39b705512ec3f, error InvalidRemotePacket +2024-09-22T00:44:18.051675Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3585 +2024-09-22T00:44:18.051695Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3585 +2024-09-22T00:44:18.062075Z INFO fork_choice_control::block_processor: Validating block with slot: 3586 +2024-09-22T00:44:18.063314Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4a75eed1c6870afcab76c73f0c5bac501ec08c21c7d83e301a60b693907b0176, slot: 3586 +2024-09-22T00:44:18.070199Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3586 +2024-09-22T00:44:18.070211Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3586 +2024-09-22T00:44:18.080626Z INFO fork_choice_control::block_processor: Validating block with slot: 3587 +2024-09-22T00:44:18.082954Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8b9f9dba6b6586e14442452c857fc4e4140f8f40a348799be99c8c4374eb5e1d, slot: 3587 +2024-09-22T00:44:18.093434Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3587 +2024-09-22T00:44:18.093455Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3587 +2024-09-22T00:44:18.104397Z INFO fork_choice_control::block_processor: Validating block with slot: 3588 +2024-09-22T00:44:18.105477Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x465188f6e42d196c19da378950a1993257ae9b9fee734bfca7b9dbd7f09b5081, slot: 3588 +2024-09-22T00:44:18.112629Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3588 +2024-09-22T00:44:18.112649Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3588 +2024-09-22T00:44:18.123693Z INFO fork_choice_control::block_processor: Validating block with slot: 3589 +2024-09-22T00:44:18.124803Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9fb08fa8760490fca1a2a6c40ba75debeef3c893a0926b24152a46412419c945, slot: 3589 +2024-09-22T00:44:18.131618Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3589 +2024-09-22T00:44:18.131633Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3589 +2024-09-22T00:44:18.143030Z INFO fork_choice_control::block_processor: Validating block with slot: 3590 +2024-09-22T00:44:18.144021Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4c3658df24d390a309d805fb1975c1754b9c7292c378149ea57ce48ce2c23e65, slot: 3590 +2024-09-22T00:44:18.150948Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3590 +2024-09-22T00:44:18.150971Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3590 +2024-09-22T00:44:18.162902Z INFO fork_choice_control::block_processor: Validating block with slot: 3591 +2024-09-22T00:44:18.164617Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe5505ff3658f3eb1da5dd76b206963c97aae99d0ff3a9049bda2c61f4366647b, slot: 3591 +2024-09-22T00:44:18.175086Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3591 +2024-09-22T00:44:18.175109Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3591 +2024-09-22T00:44:18.187270Z INFO fork_choice_control::block_processor: Validating block with slot: 3592 +2024-09-22T00:44:18.188313Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6e3f0b4ee373f24c8260cc2e3eee8e28a9f4c7184d5b14832008feb58542454f, slot: 3592 +2024-09-22T00:44:18.196895Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3592 +2024-09-22T00:44:18.196917Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3592 +2024-09-22T00:44:18.198231Z INFO fork_choice_control::block_processor: Validating block with slot: 4193 +2024-09-22T00:44:18.198285Z INFO fork_choice_control::block_processor: Validating block with slot: 4192 +2024-09-22T00:44:18.208754Z INFO fork_choice_control::block_processor: Validating block with slot: 4195 +2024-09-22T00:44:18.211101Z INFO fork_choice_control::block_processor: Validating block with slot: 3593 +2024-09-22T00:44:18.212126Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd414a84c6bdb3c759462700c4aac0e5db0188d5fbfb1a58894496bc0b6997aac, slot: 3593 +2024-09-22T00:44:18.219902Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3593 +2024-09-22T00:44:18.219923Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3593 +2024-09-22T00:44:18.234373Z INFO fork_choice_control::block_processor: Validating block with slot: 3594 +2024-09-22T00:44:18.237354Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x089e8ce08fada407b2e68710c51146b8a75a28bdda5145f408778a5a8e2cfec5, slot: 3594 +2024-09-22T00:44:18.250609Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3594 +2024-09-22T00:44:18.250630Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3594 +2024-09-22T00:44:18.263589Z INFO fork_choice_control::block_processor: Validating block with slot: 3595 +2024-09-22T00:44:18.264689Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x500a150521c2f9d8ebbdfd90deae15ad8edfe36a26a17a32d7a013eee3418127, slot: 3595 +2024-09-22T00:44:18.271219Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3595 +2024-09-22T00:44:18.271235Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3595 +2024-09-22T00:44:18.286182Z INFO fork_choice_control::block_processor: Validating block with slot: 3596 +2024-09-22T00:44:18.287433Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x46fec634fbee7671db9ba45fa866e4cfb88add0826eb71c020ee006701aca541, slot: 3596 +2024-09-22T00:44:18.302484Z INFO fork_choice_control::block_processor: Validating block with slot: 4197 +2024-09-22T00:44:18.302496Z INFO fork_choice_control::block_processor: Validating block with slot: 4196 +2024-09-22T00:44:18.302602Z INFO fork_choice_control::block_processor: Validating block with slot: 4198 +2024-09-22T00:44:18.302770Z INFO fork_choice_control::block_processor: Validating block with slot: 4199 +2024-09-22T00:44:18.302891Z INFO fork_choice_control::block_processor: Validating block with slot: 4200 +2024-09-22T00:44:18.303445Z INFO fork_choice_control::block_processor: Validating block with slot: 4201 +2024-09-22T00:44:18.303463Z INFO fork_choice_control::block_processor: Validating block with slot: 4202 +2024-09-22T00:44:18.305707Z INFO fork_choice_control::block_processor: Validating block with slot: 4203 +2024-09-22T00:44:18.306020Z INFO fork_choice_control::block_processor: Validating block with slot: 4204 +2024-09-22T00:44:18.306281Z INFO fork_choice_control::block_processor: Validating block with slot: 4209 +2024-09-22T00:44:18.306964Z INFO fork_choice_control::block_processor: Validating block with slot: 4210 +2024-09-22T00:44:18.307015Z INFO fork_choice_control::block_processor: Validating block with slot: 4207 +2024-09-22T00:44:18.307356Z INFO fork_choice_control::block_processor: Validating block with slot: 4211 +2024-09-22T00:44:18.308076Z INFO fork_choice_control::block_processor: Validating block with slot: 4212 +2024-09-22T00:44:18.308168Z INFO fork_choice_control::block_processor: Validating block with slot: 4205 +2024-09-22T00:44:18.308357Z INFO fork_choice_control::block_processor: Validating block with slot: 4213 +2024-09-22T00:44:18.308569Z INFO fork_choice_control::block_processor: Validating block with slot: 4206 +2024-09-22T00:44:18.308621Z INFO fork_choice_control::block_processor: Validating block with slot: 4214 +2024-09-22T00:44:18.309150Z INFO fork_choice_control::block_processor: Validating block with slot: 4215 +2024-09-22T00:44:18.309364Z INFO fork_choice_control::block_processor: Validating block with slot: 4216 +2024-09-22T00:44:18.309695Z INFO fork_choice_control::block_processor: Validating block with slot: 4217 +2024-09-22T00:44:18.313290Z INFO fork_choice_control::block_processor: Validating block with slot: 4218 +2024-09-22T00:44:18.313938Z INFO fork_choice_control::block_processor: Validating block with slot: 4219 +2024-09-22T00:44:18.315478Z INFO fork_choice_control::block_processor: Validating block with slot: 4220 +2024-09-22T00:44:18.315560Z INFO fork_choice_control::block_processor: Validating block with slot: 4224 +2024-09-22T00:44:18.315757Z INFO fork_choice_control::block_processor: Validating block with slot: 4221 +2024-09-22T00:44:18.315989Z INFO fork_choice_control::block_processor: Validating block with slot: 4222 +2024-09-22T00:44:18.316506Z INFO fork_choice_control::block_processor: Validating block with slot: 4225 +2024-09-22T00:44:18.316514Z INFO fork_choice_control::block_processor: Validating block with slot: 4208 +2024-09-22T00:44:18.316778Z INFO fork_choice_control::block_processor: Validating block with slot: 4227 +2024-09-22T00:44:18.317022Z INFO fork_choice_control::block_processor: Validating block with slot: 4228 +2024-09-22T00:44:18.317328Z INFO fork_choice_control::block_processor: Validating block with slot: 4223 +2024-09-22T00:44:18.317578Z INFO fork_choice_control::block_processor: Validating block with slot: 4229 +2024-09-22T00:44:18.318242Z INFO fork_choice_control::block_processor: Validating block with slot: 4230 +2024-09-22T00:44:18.318790Z INFO fork_choice_control::block_processor: Validating block with slot: 4231 +2024-09-22T00:44:18.319174Z INFO fork_choice_control::block_processor: Validating block with slot: 4232 +2024-09-22T00:44:18.319353Z INFO fork_choice_control::block_processor: Validating block with slot: 4233 +2024-09-22T00:44:18.320491Z INFO fork_choice_control::block_processor: Validating block with slot: 4234 +2024-09-22T00:44:18.320625Z INFO fork_choice_control::block_processor: Validating block with slot: 4239 +2024-09-22T00:44:18.320702Z INFO fork_choice_control::block_processor: Validating block with slot: 4240 +2024-09-22T00:44:18.321116Z INFO fork_choice_control::block_processor: Validating block with slot: 4235 +2024-09-22T00:44:18.321822Z INFO fork_choice_control::block_processor: Validating block with slot: 4236 +2024-09-22T00:44:18.322222Z INFO fork_choice_control::block_processor: Validating block with slot: 4241 +2024-09-22T00:44:18.322702Z INFO fork_choice_control::block_processor: Validating block with slot: 4242 +2024-09-22T00:44:18.322898Z INFO fork_choice_control::block_processor: Validating block with slot: 4237 +2024-09-22T00:44:18.323161Z INFO fork_choice_control::block_processor: Validating block with slot: 4243 +2024-09-22T00:44:18.323831Z INFO fork_choice_control::block_processor: Validating block with slot: 4244 +2024-09-22T00:44:18.325527Z INFO fork_choice_control::block_processor: Validating block with slot: 4246 +2024-09-22T00:44:18.325675Z INFO fork_choice_control::block_processor: Validating block with slot: 4248 +2024-09-22T00:44:18.325907Z INFO fork_choice_control::block_processor: Validating block with slot: 4249 +2024-09-22T00:44:18.326851Z INFO fork_choice_control::block_processor: Validating block with slot: 4250 +2024-09-22T00:44:18.327312Z INFO fork_choice_control::block_processor: Validating block with slot: 4251 +2024-09-22T00:44:18.327923Z INFO fork_choice_control::block_processor: Validating block with slot: 4247 +2024-09-22T00:44:18.328523Z INFO fork_choice_control::block_processor: Validating block with slot: 4253 +2024-09-22T00:44:18.329177Z INFO fork_choice_control::block_processor: Validating block with slot: 4254 +2024-09-22T00:44:18.329871Z INFO fork_choice_control::block_processor: Validating block with slot: 4255 +2024-09-22T00:44:18.330137Z INFO fork_choice_control::block_processor: Validating block with slot: 4128 +2024-09-22T00:44:18.331083Z INFO fork_choice_control::block_processor: Validating block with slot: 4129 +2024-09-22T00:44:18.331207Z INFO fork_choice_control::block_processor: Validating block with slot: 4130 +2024-09-22T00:44:18.332354Z INFO fork_choice_control::block_processor: Validating block with slot: 4252 +2024-09-22T00:44:18.334061Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3596 +2024-09-22T00:44:18.334104Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3596 +2024-09-22T00:44:18.352980Z INFO fork_choice_control::block_processor: Validating block with slot: 3597 +2024-09-22T00:44:18.354125Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x747cea9049c61c16f484257fc6271f669dc3627ca963494bf71e3f70c1e2ec68, slot: 3597 +2024-09-22T00:44:18.361920Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3597 +2024-09-22T00:44:18.361943Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3597 +2024-09-22T00:44:18.375552Z INFO fork_choice_control::block_processor: Validating block with slot: 3598 +2024-09-22T00:44:18.376660Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x64e7b313f313734cab6f9d8eb6bf77051dec8affd90a586a13ad3e33d3666a02, slot: 3598 +2024-09-22T00:44:18.382878Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3598 +2024-09-22T00:44:18.382891Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3598 +2024-09-22T00:44:18.396498Z INFO fork_choice_control::block_processor: Validating block with slot: 3599 +2024-09-22T00:44:18.397610Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb9868022c27bb2f1ce3dbf5f712d58eaa78932985d76ebf08b23f5268f19404e, slot: 3599 +2024-09-22T00:44:18.403855Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3599 +2024-09-22T00:44:18.403868Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3599 +2024-09-22T00:44:18.417672Z INFO fork_choice_control::block_processor: Validating block with slot: 3600 +2024-09-22T00:44:18.418769Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbe0e7d680f67420fefddf5884ce7f20805e602a581c6bde0aacfdbb09c8c6b7c, slot: 3600 +2024-09-22T00:44:18.425650Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3600 +2024-09-22T00:44:18.425672Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3600 +2024-09-22T00:44:18.433451Z INFO fork_choice_control::block_processor: Validating block with slot: 4132 +2024-09-22T00:44:18.433454Z INFO fork_choice_control::block_processor: Validating block with slot: 4131 +2024-09-22T00:44:18.433469Z INFO fork_choice_control::block_processor: Validating block with slot: 4135 +2024-09-22T00:44:18.433497Z INFO fork_choice_control::block_processor: Validating block with slot: 4133 +2024-09-22T00:44:18.433504Z INFO fork_choice_control::block_processor: Validating block with slot: 4134 +2024-09-22T00:44:18.433529Z INFO fork_choice_control::block_processor: Validating block with slot: 4137 +2024-09-22T00:44:18.433630Z INFO fork_choice_control::block_processor: Validating block with slot: 4136 +2024-09-22T00:44:18.434594Z INFO fork_choice_control::block_processor: Validating block with slot: 4138 +2024-09-22T00:44:18.434818Z INFO fork_choice_control::block_processor: Validating block with slot: 4140 +2024-09-22T00:44:18.435534Z INFO fork_choice_control::block_processor: Validating block with slot: 4141 +2024-09-22T00:44:18.436471Z INFO fork_choice_control::block_processor: Validating block with slot: 4142 +2024-09-22T00:44:18.436586Z INFO fork_choice_control::block_processor: Validating block with slot: 4143 +2024-09-22T00:44:18.436604Z INFO fork_choice_control::block_processor: Validating block with slot: 4145 +2024-09-22T00:44:18.437076Z INFO fork_choice_control::block_processor: Validating block with slot: 4146 +2024-09-22T00:44:18.437408Z INFO fork_choice_control::block_processor: Validating block with slot: 4147 +2024-09-22T00:44:18.437490Z INFO fork_choice_control::block_processor: Validating block with slot: 4148 +2024-09-22T00:44:18.437757Z INFO fork_choice_control::block_processor: Validating block with slot: 4144 +2024-09-22T00:44:18.438149Z INFO fork_choice_control::block_processor: Validating block with slot: 4149 +2024-09-22T00:44:18.438477Z INFO fork_choice_control::block_processor: Validating block with slot: 4150 +2024-09-22T00:44:18.438524Z INFO fork_choice_control::block_processor: Validating block with slot: 4151 +2024-09-22T00:44:18.439098Z INFO fork_choice_control::block_processor: Validating block with slot: 4152 +2024-09-22T00:44:18.440441Z INFO fork_choice_control::block_processor: Validating block with slot: 4158 +2024-09-22T00:44:18.440435Z INFO fork_choice_control::block_processor: Validating block with slot: 4153 +2024-09-22T00:44:18.440616Z INFO fork_choice_control::block_processor: Validating block with slot: 4159 +2024-09-22T00:44:18.440669Z INFO fork_choice_control::block_processor: Validating block with slot: 4154 +2024-09-22T00:44:18.440967Z INFO fork_choice_control::block_processor: Validating block with slot: 4155 +2024-09-22T00:44:18.441359Z INFO fork_choice_control::block_processor: Validating block with slot: 4156 +2024-09-22T00:44:18.441377Z INFO fork_choice_control::block_processor: Validating block with slot: 4157 +2024-09-22T00:44:18.441388Z INFO fork_choice_control::block_processor: Validating block with slot: 4161 +2024-09-22T00:44:18.441472Z INFO fork_choice_control::block_processor: Validating block with slot: 4162 +2024-09-22T00:44:18.441689Z INFO fork_choice_control::block_processor: Validating block with slot: 4163 +2024-09-22T00:44:18.443490Z INFO fork_choice_control::block_processor: Validating block with slot: 4164 +2024-09-22T00:44:18.443722Z INFO fork_choice_control::block_processor: Validating block with slot: 4165 +2024-09-22T00:44:18.444072Z INFO fork_choice_control::block_processor: Validating block with slot: 4166 +2024-09-22T00:44:18.444317Z INFO fork_choice_control::block_processor: Validating block with slot: 4170 +2024-09-22T00:44:18.444393Z INFO fork_choice_control::block_processor: Validating block with slot: 4171 +2024-09-22T00:44:18.444716Z INFO fork_choice_control::block_processor: Validating block with slot: 4172 +2024-09-22T00:44:18.444715Z INFO fork_choice_control::block_processor: Validating block with slot: 4167 +2024-09-22T00:44:18.445136Z INFO fork_choice_control::block_processor: Validating block with slot: 4168 +2024-09-22T00:44:18.445561Z INFO fork_choice_control::block_processor: Validating block with slot: 4173 +2024-09-22T00:44:18.445657Z INFO fork_choice_control::block_processor: Validating block with slot: 4174 +2024-09-22T00:44:18.445955Z INFO fork_choice_control::block_processor: Validating block with slot: 4175 +2024-09-22T00:44:18.446067Z INFO fork_choice_control::block_processor: Validating block with slot: 4176 +2024-09-22T00:44:18.446593Z INFO fork_choice_control::block_processor: Validating block with slot: 4177 +2024-09-22T00:44:18.447236Z INFO fork_choice_control::block_processor: Validating block with slot: 4178 +2024-09-22T00:44:18.447421Z INFO fork_choice_control::block_processor: Validating block with slot: 4180 +2024-09-22T00:44:18.447429Z INFO fork_choice_control::block_processor: Validating block with slot: 4181 +2024-09-22T00:44:18.447558Z INFO fork_choice_control::block_processor: Validating block with slot: 4182 +2024-09-22T00:44:18.447761Z INFO fork_choice_control::block_processor: Validating block with slot: 4183 +2024-09-22T00:44:18.447920Z INFO fork_choice_control::block_processor: Validating block with slot: 4179 +2024-09-22T00:44:18.448252Z INFO fork_choice_control::block_processor: Validating block with slot: 4184 +2024-09-22T00:44:18.448653Z INFO fork_choice_control::block_processor: Validating block with slot: 4185 +2024-09-22T00:44:18.449109Z INFO fork_choice_control::block_processor: Validating block with slot: 4186 +2024-09-22T00:44:18.449189Z INFO fork_choice_control::block_processor: Validating block with slot: 4188 +2024-09-22T00:44:18.450650Z INFO fork_choice_control::block_processor: Validating block with slot: 4189 +2024-09-22T00:44:18.450831Z INFO fork_choice_control::block_processor: Validating block with slot: 4190 +2024-09-22T00:44:18.451040Z INFO fork_choice_control::block_processor: Validating block with slot: 4191 +2024-09-22T00:44:18.451142Z INFO fork_choice_control::block_processor: Validating block with slot: 4064 +2024-09-22T00:44:18.451229Z INFO fork_choice_control::block_processor: Validating block with slot: 4065 +2024-09-22T00:44:18.451362Z INFO fork_choice_control::block_processor: Validating block with slot: 4067 +2024-09-22T00:44:18.451529Z INFO fork_choice_control::block_processor: Validating block with slot: 4068 +2024-09-22T00:44:18.451939Z INFO fork_choice_control::block_processor: Validating block with slot: 4069 +2024-09-22T00:44:18.452468Z INFO fork_choice_control::block_processor: Validating block with slot: 4071 +2024-09-22T00:44:18.452545Z INFO fork_choice_control::block_processor: Validating block with slot: 4072 +2024-09-22T00:44:18.452713Z INFO fork_choice_control::block_processor: Validating block with slot: 4073 +2024-09-22T00:44:18.453185Z INFO fork_choice_control::block_processor: Validating block with slot: 4066 +2024-09-22T00:44:18.453409Z INFO fork_choice_control::block_processor: Validating block with slot: 4075 +2024-09-22T00:44:18.453616Z INFO fork_choice_control::block_processor: Validating block with slot: 4076 +2024-09-22T00:44:18.453652Z INFO fork_choice_control::block_processor: Validating block with slot: 3601 +2024-09-22T00:44:18.454104Z INFO fork_choice_control::block_processor: Validating block with slot: 4077 +2024-09-22T00:44:18.454603Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xac0fac70822fc3de30e78fb566aea8f0c586ea2e27a414ccc462150bc3906294, slot: 3601 +2024-09-22T00:44:18.454623Z INFO fork_choice_control::block_processor: Validating block with slot: 4078 +2024-09-22T00:44:18.454929Z INFO fork_choice_control::block_processor: Validating block with slot: 4074 +2024-09-22T00:44:18.462265Z INFO fork_choice_control::block_processor: Validating block with slot: 4079 +2024-09-22T00:44:18.462932Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3601 +2024-09-22T00:44:18.462986Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3601 +2024-09-22T00:44:18.476651Z INFO fork_choice_control::block_processor: Validating block with slot: 3602 +2024-09-22T00:44:18.477621Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9daa0bf635cbd105c722da0a42c28de561fa0d1644a99e6de99c656dfe5dadda, slot: 3602 +2024-09-22T00:44:18.483292Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3602 +2024-09-22T00:44:18.483304Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3602 +2024-09-22T00:44:18.490832Z INFO fork_choice_control::block_processor: Validating block with slot: 4081 +2024-09-22T00:44:18.490859Z INFO fork_choice_control::block_processor: Validating block with slot: 4080 +2024-09-22T00:44:18.497553Z INFO fork_choice_control::block_processor: Validating block with slot: 3603 +2024-09-22T00:44:18.498490Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe35f8b7d6d81e8b2851f4a07487ad106247a970f6167046516cab0728b6251e3, slot: 3603 +2024-09-22T00:44:18.503987Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3603 +2024-09-22T00:44:18.504000Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3603 +2024-09-22T00:44:18.505876Z INFO fork_choice_control::block_processor: Validating block with slot: 4082 +2024-09-22T00:44:18.518117Z INFO fork_choice_control::block_processor: Validating block with slot: 3604 +2024-09-22T00:44:18.519791Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4c7fe5aced510d4f3be6f46688bbe1a58af588428a2fc6a80fce5a486b1f4c44, slot: 3604 +2024-09-22T00:44:18.521801Z INFO fork_choice_control::block_processor: Validating block with slot: 4083 +2024-09-22T00:44:18.528011Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3604 +2024-09-22T00:44:18.528031Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3604 +2024-09-22T00:44:18.542076Z INFO fork_choice_control::block_processor: Validating block with slot: 3605 +2024-09-22T00:44:18.544571Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb5f62858dc19397ea82f8826d230545a888a9aaa1e807a3d236f8e56676c3a2f, slot: 3605 +2024-09-22T00:44:18.550092Z INFO fork_choice_control::block_processor: Validating block with slot: 4084 +2024-09-22T00:44:18.554162Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3605 +2024-09-22T00:44:18.554172Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3605 +2024-09-22T00:44:18.558150Z INFO fork_choice_control::block_processor: Validating block with slot: 4085 +2024-09-22T00:44:18.568508Z INFO fork_choice_control::block_processor: Validating block with slot: 3607 +2024-09-22T00:44:18.570124Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7e75899d456e65065337ef930cf44a823613b297215d118ba234081d649998e0, slot: 3607 +2024-09-22T00:44:18.579039Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3607 +2024-09-22T00:44:18.579060Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3607 +2024-09-22T00:44:18.582108Z INFO fork_choice_control::block_processor: Validating block with slot: 4086 +2024-09-22T00:44:18.590032Z INFO fork_choice_control::block_processor: Validating block with slot: 4087 +2024-09-22T00:44:18.593886Z INFO fork_choice_control::block_processor: Validating block with slot: 3608 +2024-09-22T00:44:18.595092Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc877db87798eae2e16f485d66614690b9f362fcee985deec62df0c1cfc16c14f, slot: 3608 +2024-09-22T00:44:18.601313Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3608 +2024-09-22T00:44:18.601326Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3608 +2024-09-22T00:44:18.612783Z INFO fork_choice_control::block_processor: Validating block with slot: 4088 +2024-09-22T00:44:18.621775Z INFO fork_choice_control::block_processor: Validating block with slot: 3609 +2024-09-22T00:44:18.621778Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 111, root: 0xa0a1a72a9c909fe136f4c67161d2bbcd78b0c79d9ec4151e63a91fc5dc3c65f9, head slot: 3608, head root: 0xc877db87798eae2e16f485d66614690b9f362fcee985deec62df0c1cfc16c14f) +2024-09-22T00:44:18.623912Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x75a95a8db63356445e136bde7b939bf2c332bb5995242bad3fe16841e1d61dd8, slot: 3609 +2024-09-22T00:44:18.632594Z INFO fork_choice_control::block_processor: Validating block with slot: 4089 +2024-09-22T00:44:18.633770Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3609 +2024-09-22T00:44:18.633780Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3609 +2024-09-22T00:44:18.639165Z INFO fork_choice_control::block_processor: Validating block with slot: 4090 +2024-09-22T00:44:18.645758Z INFO fork_choice_control::block_processor: Validating block with slot: 4091 +2024-09-22T00:44:18.649604Z INFO fork_choice_control::block_processor: Validating block with slot: 3610 +2024-09-22T00:44:18.650702Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7e6763c390676c9cf5572306e8277d5a7be92a48d574813b2196ca4bd96bd68b, slot: 3610 +2024-09-22T00:44:18.658307Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3610 +2024-09-22T00:44:18.658332Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3610 +2024-09-22T00:44:18.674315Z INFO fork_choice_control::block_processor: Validating block with slot: 3611 +2024-09-22T00:44:18.676359Z INFO fork_choice_control::block_processor: Validating block with slot: 4092 +2024-09-22T00:44:18.677499Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdbac60ee8c8349c92b4594dc6bb10a2b24d46d1af661003c675076898a9b9aa6, slot: 3611 +2024-09-22T00:44:18.686116Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3611 +2024-09-22T00:44:18.686131Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3611 +2024-09-22T00:44:18.695313Z INFO fork_choice_control::block_processor: Validating block with slot: 4093 +2024-09-22T00:44:18.702289Z INFO fork_choice_control::block_processor: Validating block with slot: 3612 +2024-09-22T00:44:18.703250Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4c37fe1799e9340e6cb0cf1f8e44a7210069c861472272c3879796d365342847, slot: 3612 +2024-09-22T00:44:18.708424Z INFO fork_choice_control::block_processor: Validating block with slot: 4094 +2024-09-22T00:44:18.711520Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3612 +2024-09-22T00:44:18.711533Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3612 +2024-09-22T00:44:18.715665Z INFO fork_choice_control::block_processor: Validating block with slot: 4095 +2024-09-22T00:44:18.723092Z INFO fork_choice_control::block_processor: Validating block with slot: 4096 +2024-09-22T00:44:18.727882Z INFO fork_choice_control::block_processor: Validating block with slot: 3613 +2024-09-22T00:44:18.729269Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd0719bdfcf1a3b37779d4d5933619854c6201bf29acf44b1beffb23d76fcc8da, slot: 3613 +2024-09-22T00:44:18.735934Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3613 +2024-09-22T00:44:18.735949Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3613 +2024-09-22T00:44:18.739373Z INFO fork_choice_control::block_processor: Validating block with slot: 4097 +2024-09-22T00:44:18.752091Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 3552 +2024-09-22T00:44:18.752248Z INFO fork_choice_control::block_processor: Validating block with slot: 3614 +2024-09-22T00:44:18.754319Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc679f2839e135de5788007328b3bcbc9bf90bbb53ccaafdcf270a57b904cb1ca, slot: 3614 +2024-09-22T00:44:18.763629Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3614 +2024-09-22T00:44:18.763648Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3614 +2024-09-22T00:44:18.772121Z INFO fork_choice_control::block_processor: Validating block with slot: 4098 +2024-09-22T00:44:18.772151Z INFO fork_choice_control::block_processor: Validating block with slot: 4099 +2024-09-22T00:44:18.780487Z INFO fork_choice_control::block_processor: Validating block with slot: 3615 +2024-09-22T00:44:18.781467Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbb54659f5024ac5bd85873513533a157502b6f2f600793092367d70ee07d8d98, slot: 3615 +2024-09-22T00:44:18.788311Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3615 +2024-09-22T00:44:18.788327Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3615 +2024-09-22T00:44:18.790917Z INFO fork_choice_control::block_processor: Validating block with slot: 4100 +2024-09-22T00:44:18.804989Z INFO fork_choice_control::block_processor: Validating block with slot: 3616 +2024-09-22T00:44:18.806252Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6b07713961731091aef25c6a25095c9dbdc54fc782b045c0de5fdd6f0942f80a, slot: 3616 +2024-09-22T00:44:18.812018Z INFO fork_choice_control::block_processor: Validating block with slot: 4101 +2024-09-22T00:44:18.840617Z INFO fork_choice_control::block_processor: Validating block with slot: 4102 +2024-09-22T00:44:18.840654Z INFO fork_choice_control::block_processor: Validating block with slot: 4103 +2024-09-22T00:44:18.855631Z INFO fork_choice_control::block_processor: Validating block with slot: 4104 +2024-09-22T00:44:18.860094Z INFO fork_choice_control::block_processor: Validating block with slot: 4105 +2024-09-22T00:44:18.894332Z INFO fork_choice_control::block_processor: Validating block with slot: 4106 +2024-09-22T00:44:18.901027Z INFO fork_choice_control::block_processor: Validating block with slot: 4107 +2024-09-22T00:44:18.905345Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3616 +2024-09-22T00:44:18.905357Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3616 +2024-09-22T00:44:18.915812Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3616) +2024-09-22T00:44:18.915917Z INFO fork_choice_control::block_processor: Validating block with slot: 3617 +2024-09-22T00:44:18.917015Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9a07bd59bc2d88f54cfacccd9a888c6560dbc0939b69fbb3e3947575b658bff0, slot: 3617 +2024-09-22T00:44:18.920128Z INFO fork_choice_control::block_processor: Validating block with slot: 4109 +2024-09-22T00:44:18.954427Z INFO fork_choice_control::block_processor: Validating block with slot: 4110 +2024-09-22T00:44:18.962788Z INFO fork_choice_control::block_processor: Validating block with slot: 4111 +2024-09-22T00:44:18.987786Z INFO fork_choice_control::block_processor: Validating block with slot: 4112 +2024-09-22T00:44:18.993793Z INFO fork_choice_control::block_processor: Validating block with slot: 4113 +2024-09-22T00:44:18.996567Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3617 +2024-09-22T00:44:18.996579Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3617 +2024-09-22T00:44:19.007124Z INFO fork_choice_control::block_processor: Validating block with slot: 3618 +2024-09-22T00:44:19.008260Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x57ae36fd96404d4eebd6cafc2a832ae5bb76896345a7ff2c2006c2caed0c8790, slot: 3618 +2024-09-22T00:44:19.014834Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3618 +2024-09-22T00:44:19.014847Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3618 +2024-09-22T00:44:19.024260Z INFO fork_choice_control::block_processor: Validating block with slot: 4115 +2024-09-22T00:44:19.024275Z INFO fork_choice_control::block_processor: Validating block with slot: 4114 +2024-09-22T00:44:19.025674Z INFO fork_choice_control::block_processor: Validating block with slot: 3619 +2024-09-22T00:44:19.027351Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe7465413ab43d063c0e8100ab64ef467d221668ddb988c4676dee852284a99f2, slot: 3619 +2024-09-22T00:44:19.031402Z INFO fork_choice_control::block_processor: Validating block with slot: 4116 +2024-09-22T00:44:19.036316Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3619 +2024-09-22T00:44:19.036326Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3619 +2024-09-22T00:44:19.047114Z INFO fork_choice_control::block_processor: Validating block with slot: 3620 +2024-09-22T00:44:19.049169Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x06295aa7d928cf2d03315e4db47a427f1450df19e8e3466f76582227f09ee2ac, slot: 3620 +2024-09-22T00:44:19.051944Z INFO fork_choice_control::block_processor: Validating block with slot: 4117 +2024-09-22T00:44:19.058664Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3620 +2024-09-22T00:44:19.058685Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3620 +2024-09-22T00:44:19.065706Z INFO fork_choice_control::block_processor: Validating block with slot: 4119 +2024-09-22T00:44:19.069719Z INFO fork_choice_control::block_processor: Validating block with slot: 3621 +2024-09-22T00:44:19.070790Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4b6e7c7326beb8e7cfe8c6de87730dec614feec547f5c9312e3a12ed9e4fe95b, slot: 3621 +2024-09-22T00:44:19.074460Z INFO fork_choice_control::block_processor: Validating block with slot: 4120 +2024-09-22T00:44:19.079324Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3621 +2024-09-22T00:44:19.079341Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3621 +2024-09-22T00:44:19.079755Z INFO fork_choice_control::block_processor: Validating block with slot: 4122 +2024-09-22T00:44:19.090676Z INFO fork_choice_control::block_processor: Validating block with slot: 3622 +2024-09-22T00:44:19.091793Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd34c379eba31876ae22e2fd9e9778a601ec30c8cf3aef2ec5e4e0cf71bd21ac9, slot: 3622 +2024-09-22T00:44:19.097731Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3622 +2024-09-22T00:44:19.097747Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3622 +2024-09-22T00:44:19.102240Z INFO fork_choice_control::block_processor: Validating block with slot: 4123 +2024-09-22T00:44:19.109423Z INFO fork_choice_control::block_processor: Validating block with slot: 3623 +2024-09-22T00:44:19.110389Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9b6deab649b48fb33aa5fc4efc59644318d0b3f1c1ca23a2b9f7bf0ac31753f7, slot: 3623 +2024-09-22T00:44:19.115967Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3623 +2024-09-22T00:44:19.115980Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3623 +2024-09-22T00:44:19.125460Z INFO fork_choice_control::block_processor: Validating block with slot: 4124 +2024-09-22T00:44:19.127715Z INFO fork_choice_control::block_processor: Validating block with slot: 3624 +2024-09-22T00:44:19.128809Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8c323be3c4649fe557fa11f7303fa3a612f0213f2385831b88a229c0a6544974, slot: 3624 +2024-09-22T00:44:19.135156Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3624 +2024-09-22T00:44:19.135171Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3624 +2024-09-22T00:44:19.147084Z INFO fork_choice_control::block_processor: Validating block with slot: 3627 +2024-09-22T00:44:19.149522Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x72b23ae2bfec9df45ef557619b686da893b79e410e3cd44f43db95c165038a75, slot: 3627 +2024-09-22T00:44:19.158977Z INFO fork_choice_control::block_processor: Validating block with slot: 4125 +2024-09-22T00:44:19.158975Z INFO fork_choice_control::block_processor: Validating block with slot: 4126 +2024-09-22T00:44:19.163492Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3627 +2024-09-22T00:44:19.163503Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3627 +2024-09-22T00:44:19.175676Z INFO fork_choice_control::block_processor: Validating block with slot: 3628 +2024-09-22T00:44:19.176783Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6b28f9d8ca0a63ed5ec753ae24650764fe2aea4f59e137acaae57bcd893753bf, slot: 3628 +2024-09-22T00:44:19.182910Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3628 +2024-09-22T00:44:19.182923Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3628 +2024-09-22T00:44:19.195451Z INFO fork_choice_control::block_processor: Validating block with slot: 3629 +2024-09-22T00:44:19.196680Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x03a167a287e514c4d577cb4d5c469f81bc51b6ed56f889612206d8bc0cab6624, slot: 3629 +2024-09-22T00:44:19.202870Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3629 +2024-09-22T00:44:19.202882Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3629 +2024-09-22T00:44:19.215497Z INFO fork_choice_control::block_processor: Validating block with slot: 3630 +2024-09-22T00:44:19.216460Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9109b2e5a1d7c09c9c8e367a44d2a8c6301be0507d460462d7160aa393bc8089, slot: 3630 +2024-09-22T00:44:19.221976Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3630 +2024-09-22T00:44:19.221990Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3630 +2024-09-22T00:44:19.234901Z INFO fork_choice_control::block_processor: Validating block with slot: 3631 +2024-09-22T00:44:19.236150Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6ce196060b2846b2e9f6ffe48eb531898d8b72a094264ce316b99c769e1e4a08, slot: 3631 +2024-09-22T00:44:19.242944Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3631 +2024-09-22T00:44:19.242963Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3631 +2024-09-22T00:44:19.255512Z INFO fork_choice_control::block_processor: Validating block with slot: 3632 +2024-09-22T00:44:19.257499Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa910908e069ce28192aa2994e5b8b79737226629a6e6d8d19f562795e4c8149d, slot: 3632 +2024-09-22T00:44:19.265585Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3632 +2024-09-22T00:44:19.265599Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3632 +2024-09-22T00:44:19.278936Z INFO fork_choice_control::block_processor: Validating block with slot: 3633 +2024-09-22T00:44:19.279896Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0325e90c593ed7c9bcbad8223af845614fe046fa138c0f2e1beaffd6e152fc1d, slot: 3633 +2024-09-22T00:44:19.285280Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3633 +2024-09-22T00:44:19.285294Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3633 +2024-09-22T00:44:19.298844Z INFO fork_choice_control::block_processor: Validating block with slot: 4127 +2024-09-22T00:44:19.299256Z INFO fork_choice_control::block_processor: Validating block with slot: 3634 +2024-09-22T00:44:19.300941Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x80ab2b260e05ff04da5e1ee2e69f61df810b6473a40b587cb70b2038e776570f, slot: 3634 +2024-09-22T00:44:19.308859Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3634 +2024-09-22T00:44:19.308880Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3634 +2024-09-22T00:44:19.327443Z INFO fork_choice_control::block_processor: Validating block with slot: 3635 +2024-09-22T00:44:19.329329Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb2144dfd7c6aeb7e152ad0328f19b63d86f8bd6656cd6669aaaa91ad921fec37, slot: 3635 +2024-09-22T00:44:19.340089Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3635 +2024-09-22T00:44:19.340112Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3635 +2024-09-22T00:44:19.355278Z INFO fork_choice_control::block_processor: Validating block with slot: 3636 +2024-09-22T00:44:19.356299Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x274591ad72271c1d6d7b18cdf9764a5fb4b9a363652224a90bb038b9ae4ddc13, slot: 3636 +2024-09-22T00:44:19.366364Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3636 +2024-09-22T00:44:19.366385Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3636 +2024-09-22T00:44:19.380875Z INFO fork_choice_control::block_processor: Validating block with slot: 3637 +2024-09-22T00:44:19.381973Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe72bc93a92aeee684f59590d0d40d4312859445c5c74cb21470f03fc48dae157, slot: 3637 +2024-09-22T00:44:19.388001Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3637 +2024-09-22T00:44:19.388014Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3637 +2024-09-22T00:44:19.402314Z INFO fork_choice_control::block_processor: Validating block with slot: 3638 +2024-09-22T00:44:19.403283Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x12849ba82077d9fec04758e400404f9e7c7697b362505bbade6e0d1213cccc80, slot: 3638 +2024-09-22T00:44:19.409689Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3638 +2024-09-22T00:44:19.409709Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3638 +2024-09-22T00:44:19.424123Z INFO fork_choice_control::block_processor: Validating block with slot: 3639 +2024-09-22T00:44:19.426894Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x16b60f758ac60dbea2fd735b4d1eab72caffff60e767ac1b367ee0ac59e1a368, slot: 3639 +2024-09-22T00:44:19.436874Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3639 +2024-09-22T00:44:19.436887Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3639 +2024-09-22T00:44:19.457284Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 112, root: 0xf7b53557e5860599f6ab4eec1b056d2e70a64647bae6e28ae7ff11f821d13c5f, head slot: 3639, head root: 0x16b60f758ac60dbea2fd735b4d1eab72caffff60e767ac1b367ee0ac59e1a368) +2024-09-22T00:44:19.457333Z INFO fork_choice_control::block_processor: Validating block with slot: 3640 +2024-09-22T00:44:19.458654Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcfbef18318b595c73a66ee7dc55734b858bd5413bbe5ea418f909e9abb61e40f, slot: 3640 +2024-09-22T00:44:19.465081Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3640 +2024-09-22T00:44:19.465100Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3640 +2024-09-22T00:44:19.480379Z INFO fork_choice_control::block_processor: Validating block with slot: 3641 +2024-09-22T00:44:19.481500Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x29f2f8c67ce058a386248e9f46fca653898b5049dc9cf730c4b5edd38e4bd3a2, slot: 3641 +2024-09-22T00:44:19.488143Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3641 +2024-09-22T00:44:19.488156Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3641 +2024-09-22T00:44:19.503301Z INFO fork_choice_control::block_processor: Validating block with slot: 3642 +2024-09-22T00:44:19.504561Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2e45b0a070bc60b507fbc57491353db518675001e0b38032a0a664ef93ac3646, slot: 3642 +2024-09-22T00:44:19.512100Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3642 +2024-09-22T00:44:19.512122Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3642 +2024-09-22T00:44:19.527622Z INFO fork_choice_control::block_processor: Validating block with slot: 3643 +2024-09-22T00:44:19.528884Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcb62294106feff6acda457c41bb0b49c767611c2b580ebc6c3df1e36f1986ae4, slot: 3643 +2024-09-22T00:44:19.535712Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3643 +2024-09-22T00:44:19.535725Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3643 +2024-09-22T00:44:19.551581Z INFO fork_choice_control::block_processor: Validating block with slot: 3644 +2024-09-22T00:44:19.552571Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe8d16c0b56d1c086c992154db76f925cca655099bffd55deedf3ee7d0484c9a9, slot: 3644 +2024-09-22T00:44:19.559793Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3644 +2024-09-22T00:44:19.559816Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3644 +2024-09-22T00:44:19.575707Z INFO fork_choice_control::block_processor: Validating block with slot: 3645 +2024-09-22T00:44:19.576976Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa7263312cb6f72b855bf55892d126284df47e98187bf4305a7ebcc24c37a5daa, slot: 3645 +2024-09-22T00:44:19.583608Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3645 +2024-09-22T00:44:19.583623Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3645 +2024-09-22T00:44:19.585431Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 3584 +2024-09-22T00:44:19.599689Z INFO fork_choice_control::block_processor: Validating block with slot: 3646 +2024-09-22T00:44:19.600807Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbc55b7a2ab9d7ec1dd68fb8ec9727bb28e311117cc9f89ffe6d3e37583f98954, slot: 3646 +2024-09-22T00:44:19.607888Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3646 +2024-09-22T00:44:19.607915Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3646 +2024-09-22T00:44:19.624725Z INFO fork_choice_control::block_processor: Validating block with slot: 3647 +2024-09-22T00:44:19.627819Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x755004ca56c9a2d31d457212f832d768f94207564da1d91cc84a4d5314cf9807, slot: 3647 +2024-09-22T00:44:19.639090Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3647 +2024-09-22T00:44:19.639116Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3647 +2024-09-22T00:44:19.655845Z INFO fork_choice_control::block_processor: Validating block with slot: 3648 +2024-09-22T00:44:19.657112Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x91fa22c1764581a0b6b455243a55c36e0f72d887fb949521bf5f4d95664c638a, slot: 3648 +2024-09-22T00:44:19.756376Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3648 +2024-09-22T00:44:19.756396Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3648 +2024-09-22T00:44:19.766237Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3648) +2024-09-22T00:44:19.766355Z INFO fork_choice_control::block_processor: Validating block with slot: 3649 +2024-09-22T00:44:19.767612Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf551d83c6aca091d093e13a9eb46efb9a12fd32f92bd745f01843c8b590175a5, slot: 3649 +2024-09-22T00:44:19.840214Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3649 +2024-09-22T00:44:19.840236Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3649 +2024-09-22T00:44:19.850257Z INFO fork_choice_control::block_processor: Validating block with slot: 3650 +2024-09-22T00:44:19.852092Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3038dc0882dfa8941d5e639d42540226e0857897e539df78f1d0974e3d2fd345, slot: 3650 +2024-09-22T00:44:19.861519Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3650 +2024-09-22T00:44:19.861538Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3650 +2024-09-22T00:44:19.871786Z INFO fork_choice_control::block_processor: Validating block with slot: 3651 +2024-09-22T00:44:19.873369Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xab45edc7b7ca1266c134d348a7a830a0dfe935fba1f202a77f5f91d72bb4b9f9, slot: 3651 +2024-09-22T00:44:19.881787Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3651 +2024-09-22T00:44:19.881802Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3651 +2024-09-22T00:44:19.892623Z INFO fork_choice_control::block_processor: Validating block with slot: 3652 +2024-09-22T00:44:19.894142Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xce0852723d636ec0987497fa4fed46d5252af39c502c0f62fe63061f3f7fc5b6, slot: 3652 +2024-09-22T00:44:19.901763Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3652 +2024-09-22T00:44:19.901775Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3652 +2024-09-22T00:44:19.912789Z INFO fork_choice_control::block_processor: Validating block with slot: 3653 +2024-09-22T00:44:19.913884Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa3e416002ce9ac76abc7729231357fcf9c0a67a71c490b8bed1b6450645647b3, slot: 3653 +2024-09-22T00:44:19.920919Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3653 +2024-09-22T00:44:19.920937Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3653 +2024-09-22T00:44:19.932211Z INFO fork_choice_control::block_processor: Validating block with slot: 3654 +2024-09-22T00:44:19.933340Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8365e1d44a195bde5f383c08b663039a76fac201e9f537bd5f1606156d10ad43, slot: 3654 +2024-09-22T00:44:19.940073Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3654 +2024-09-22T00:44:19.940092Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3654 +2024-09-22T00:44:19.951411Z INFO fork_choice_control::block_processor: Validating block with slot: 3655 +2024-09-22T00:44:19.952673Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0e04ab791b4816b49217fc4628f00827afb91487236e672169077c50f0670427, slot: 3655 +2024-09-22T00:44:19.962022Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3655 +2024-09-22T00:44:19.962056Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3655 +2024-09-22T00:44:19.974327Z INFO fork_choice_control::block_processor: Validating block with slot: 3656 +2024-09-22T00:44:19.975451Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5056f464e05a4a7c24b984f47ee95ae3814fe59062bb6405e7a8d3588f02e3f8, slot: 3656 +2024-09-22T00:44:19.981980Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3656 +2024-09-22T00:44:19.981993Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3656 +2024-09-22T00:44:19.993786Z INFO fork_choice_control::block_processor: Validating block with slot: 3657 +2024-09-22T00:44:19.994883Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc6edffd29b331a49197707859fce83caceab43c5786dc80dbb0e17eecc647f55, slot: 3657 +2024-09-22T00:44:20.000722Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3657 +2024-09-22T00:44:20.000735Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3657 +2024-09-22T00:44:20.012561Z INFO fork_choice_control::block_processor: Validating block with slot: 3658 +2024-09-22T00:44:20.013532Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaddd20e6d72b4be0f2b536893c4ffad45e8bfe8cbca812efcedb6e132b9ea3ac, slot: 3658 +2024-09-22T00:44:20.019234Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3658 +2024-09-22T00:44:20.019248Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3658 +2024-09-22T00:44:20.031070Z INFO fork_choice_control::block_processor: Validating block with slot: 3659 +2024-09-22T00:44:20.033252Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x32702ff6be5a3bb91238cc62c6564a50c2072f9eee7b1ebc6cf8528e86baacc4, slot: 3659 +2024-09-22T00:44:20.042060Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3659 +2024-09-22T00:44:20.042084Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3659 +2024-09-22T00:44:20.054183Z INFO fork_choice_control::block_processor: Validating block with slot: 3660 +2024-09-22T00:44:20.055148Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb01dc420f9a2ca01c6d5384bc1994041155bf8d860bc4d9cef6d988bb5ccd60b, slot: 3660 +2024-09-22T00:44:20.061610Z INFO fork_choice_control::block_processor: Validating block with slot: 4384 +2024-09-22T00:44:20.062388Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3660 +2024-09-22T00:44:20.062399Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3660 +2024-09-22T00:44:20.064924Z INFO fork_choice_control::block_processor: Validating block with slot: 4385 +2024-09-22T00:44:20.069761Z INFO fork_choice_control::block_processor: Validating block with slot: 4387 +2024-09-22T00:44:20.069794Z INFO fork_choice_control::block_processor: Validating block with slot: 4386 +2024-09-22T00:44:20.072399Z INFO fork_choice_control::block_processor: Validating block with slot: 4388 +2024-09-22T00:44:20.072459Z INFO fork_choice_control::block_processor: Validating block with slot: 4389 +2024-09-22T00:44:20.075255Z INFO fork_choice_control::block_processor: Validating block with slot: 3661 +2024-09-22T00:44:20.076207Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc4c2b4ea0ed790a44e8a8717c866887bb688c2bb189af5ba22ad89094f4547cd, slot: 3661 +2024-09-22T00:44:20.082289Z INFO fork_choice_control::block_processor: Validating block with slot: 4390 +2024-09-22T00:44:20.082320Z INFO fork_choice_control::block_processor: Validating block with slot: 4391 +2024-09-22T00:44:20.082333Z INFO fork_choice_control::block_processor: Validating block with slot: 4392 +2024-09-22T00:44:20.082673Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3661 +2024-09-22T00:44:20.082683Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3661 +2024-09-22T00:44:20.094233Z INFO fork_choice_control::block_processor: Validating block with slot: 4393 +2024-09-22T00:44:20.095331Z INFO fork_choice_control::block_processor: Validating block with slot: 3662 +2024-09-22T00:44:20.097743Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3b38b49460404bbef91e853368c255bdb20103a5617140c79f0e8e2e40036d7b, slot: 3662 +2024-09-22T00:44:20.108866Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3662 +2024-09-22T00:44:20.108888Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3662 +2024-09-22T00:44:20.122643Z INFO fork_choice_control::block_processor: Validating block with slot: 3663 +2024-09-22T00:44:20.124594Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaffc6366158f4ac90b2c0ea5538efce95293f0f89fe9471ef957f73b4ba7b6ed, slot: 3663 +2024-09-22T00:44:20.133117Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3663 +2024-09-22T00:44:20.133136Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3663 +2024-09-22T00:44:20.147662Z INFO fork_choice_control::block_processor: Validating block with slot: 3664 +2024-09-22T00:44:20.150526Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9a8b41a768dd05894c9573d2d34e034640218b44bb520e2fbbdfbf8e826d21f0, slot: 3664 +2024-09-22T00:44:20.163005Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3664 +2024-09-22T00:44:20.163031Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3664 +2024-09-22T00:44:20.168992Z INFO fork_choice_control::block_processor: Validating block with slot: 4394 +2024-09-22T00:44:20.169035Z INFO fork_choice_control::block_processor: Validating block with slot: 4396 +2024-09-22T00:44:20.169055Z INFO fork_choice_control::block_processor: Validating block with slot: 4395 +2024-09-22T00:44:20.169090Z INFO fork_choice_control::block_processor: Validating block with slot: 4399 +2024-09-22T00:44:20.169184Z INFO fork_choice_control::block_processor: Validating block with slot: 4397 +2024-09-22T00:44:20.169214Z INFO fork_choice_control::block_processor: Validating block with slot: 4400 +2024-09-22T00:44:20.170726Z INFO fork_choice_control::block_processor: Validating block with slot: 4401 +2024-09-22T00:44:20.170796Z INFO fork_choice_control::block_processor: Validating block with slot: 4398 +2024-09-22T00:44:20.171819Z INFO fork_choice_control::block_processor: Validating block with slot: 4402 +2024-09-22T00:44:20.172900Z INFO fork_choice_control::block_processor: Validating block with slot: 4403 +2024-09-22T00:44:20.173023Z INFO fork_choice_control::block_processor: Validating block with slot: 4404 +2024-09-22T00:44:20.173210Z INFO fork_choice_control::block_processor: Validating block with slot: 4405 +2024-09-22T00:44:20.173840Z INFO fork_choice_control::block_processor: Validating block with slot: 4406 +2024-09-22T00:44:20.174292Z INFO fork_choice_control::block_processor: Validating block with slot: 4407 +2024-09-22T00:44:20.174847Z INFO fork_choice_control::block_processor: Validating block with slot: 4408 +2024-09-22T00:44:20.174966Z INFO fork_choice_control::block_processor: Validating block with slot: 4411 +2024-09-22T00:44:20.175075Z INFO fork_choice_control::block_processor: Validating block with slot: 4409 +2024-09-22T00:44:20.175194Z INFO fork_choice_control::block_processor: Validating block with slot: 4412 +2024-09-22T00:44:20.175232Z INFO fork_choice_control::block_processor: Validating block with slot: 4413 +2024-09-22T00:44:20.176039Z INFO fork_choice_control::block_processor: Validating block with slot: 4414 +2024-09-22T00:44:20.176168Z INFO fork_choice_control::block_processor: Validating block with slot: 4416 +2024-09-22T00:44:20.176263Z INFO fork_choice_control::block_processor: Validating block with slot: 4417 +2024-09-22T00:44:20.176976Z INFO fork_choice_control::block_processor: Validating block with slot: 4418 +2024-09-22T00:44:20.177401Z INFO fork_choice_control::block_processor: Validating block with slot: 4410 +2024-09-22T00:44:20.177968Z INFO fork_choice_control::block_processor: Validating block with slot: 4419 +2024-09-22T00:44:20.178203Z INFO fork_choice_control::block_processor: Validating block with slot: 4420 +2024-09-22T00:44:20.178327Z INFO fork_choice_control::block_processor: Validating block with slot: 4422 +2024-09-22T00:44:20.178463Z INFO fork_choice_control::block_processor: Validating block with slot: 4423 +2024-09-22T00:44:20.178510Z INFO fork_choice_control::block_processor: Validating block with slot: 4424 +2024-09-22T00:44:20.179238Z INFO fork_choice_control::block_processor: Validating block with slot: 4421 +2024-09-22T00:44:20.179282Z INFO fork_choice_control::block_processor: Validating block with slot: 4425 +2024-09-22T00:44:20.179320Z INFO fork_choice_control::block_processor: Validating block with slot: 4426 +2024-09-22T00:44:20.179404Z INFO fork_choice_control::block_processor: Validating block with slot: 4427 +2024-09-22T00:44:20.180102Z INFO fork_choice_control::block_processor: Validating block with slot: 4428 +2024-09-22T00:44:20.180322Z INFO fork_choice_control::block_processor: Validating block with slot: 4429 +2024-09-22T00:44:20.180477Z INFO fork_choice_control::block_processor: Validating block with slot: 4430 +2024-09-22T00:44:20.181549Z INFO fork_choice_control::block_processor: Validating block with slot: 4436 +2024-09-22T00:44:20.181540Z INFO fork_choice_control::block_processor: Validating block with slot: 4431 +2024-09-22T00:44:20.181668Z INFO fork_choice_control::block_processor: Validating block with slot: 4437 +2024-09-22T00:44:20.181959Z INFO fork_choice_control::block_processor: Validating block with slot: 4438 +2024-09-22T00:44:20.182610Z INFO fork_choice_control::block_processor: Validating block with slot: 4439 +2024-09-22T00:44:20.182954Z INFO fork_choice_control::block_processor: Validating block with slot: 4432 +2024-09-22T00:44:20.183077Z INFO fork_choice_control::block_processor: Validating block with slot: 4433 +2024-09-22T00:44:20.183140Z INFO fork_choice_control::block_processor: Validating block with slot: 4440 +2024-09-22T00:44:20.183547Z INFO fork_choice_control::block_processor: Validating block with slot: 4441 +2024-09-22T00:44:20.183687Z INFO fork_choice_control::block_processor: Validating block with slot: 3665 +2024-09-22T00:44:20.184631Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x38c7d9893399adca8c36b526f15290260ed4eec1bb2e7c21e5133492983b4b53, slot: 3665 +2024-09-22T00:44:20.191027Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3665 +2024-09-22T00:44:20.191050Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3665 +2024-09-22T00:44:20.204764Z INFO fork_choice_control::block_processor: Validating block with slot: 3666 +2024-09-22T00:44:20.205749Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc124ae5440b9129faa0c785e6fea111ac9585a8714947958da7ccde4e1d77c56, slot: 3666 +2024-09-22T00:44:20.211515Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3666 +2024-09-22T00:44:20.211533Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3666 +2024-09-22T00:44:20.225452Z INFO fork_choice_control::block_processor: Validating block with slot: 3667 +2024-09-22T00:44:20.226539Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x13dfdd52425461a8268762fa3bbff1a40df2972892bb9b19af3741ca6b6d4306, slot: 3667 +2024-09-22T00:44:20.232590Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3667 +2024-09-22T00:44:20.232605Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3667 +2024-09-22T00:44:20.246853Z INFO fork_choice_control::block_processor: Validating block with slot: 3668 +2024-09-22T00:44:20.247821Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0b892346479fca2d2845876b32243e813d8b5b5952ccbf698ff07a56d24d2c8a, slot: 3668 +2024-09-22T00:44:20.253673Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3668 +2024-09-22T00:44:20.253686Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3668 +2024-09-22T00:44:20.268210Z INFO fork_choice_control::block_processor: Validating block with slot: 3669 +2024-09-22T00:44:20.269302Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb08bb21176c8b3325e73da5872ed30242123b1d8d7e79f660597dc1782532add, slot: 3669 +2024-09-22T00:44:20.275428Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3669 +2024-09-22T00:44:20.275448Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3669 +2024-09-22T00:44:20.279561Z INFO fork_choice_control::block_processor: Validating block with slot: 4442 +2024-09-22T00:44:20.289877Z INFO fork_choice_control::block_processor: Validating block with slot: 3670 +2024-09-22T00:44:20.291275Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd3d6d274b247ca53211dc9e13913e3083ec70be576857e57e8eaf1a1640b523c, slot: 3670 +2024-09-22T00:44:20.297838Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3670 +2024-09-22T00:44:20.297851Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3670 +2024-09-22T00:44:20.312705Z INFO fork_choice_control::block_processor: Validating block with slot: 3671 +2024-09-22T00:44:20.313671Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x07d1ea980b884ce859e701af93b06edbac1340c731538d74a3d5945b8bee757a, slot: 3671 +2024-09-22T00:44:20.319390Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3671 +2024-09-22T00:44:20.319402Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3671 +2024-09-22T00:44:20.339754Z INFO fork_choice_control::block_processor: Validating block with slot: 3672 +2024-09-22T00:44:20.339751Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 113, root: 0x6b07713961731091aef25c6a25095c9dbdc54fc782b045c0de5fdd6f0942f80a, head slot: 3671, head root: 0x07d1ea980b884ce859e701af93b06edbac1340c731538d74a3d5945b8bee757a) +2024-09-22T00:44:20.340746Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x70e026f247f1451a4b111d5a29dabacc6253b79af6a7888abe0bfc00b20bfa51, slot: 3672 +2024-09-22T00:44:20.347129Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3672 +2024-09-22T00:44:20.347147Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3672 +2024-09-22T00:44:20.362301Z INFO fork_choice_control::block_processor: Validating block with slot: 3673 +2024-09-22T00:44:20.363290Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6558d347eeedb9ada580c199857a94ce02b4360eba4af3a9b4cc26307dd525bb, slot: 3673 +2024-09-22T00:44:20.370187Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3673 +2024-09-22T00:44:20.370206Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3673 +2024-09-22T00:44:20.385519Z INFO fork_choice_control::block_processor: Validating block with slot: 3674 +2024-09-22T00:44:20.386918Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x01dfc27436dbe790428c38d68b31a17aaba8a2e160380f2ad2dfd08dce8f14c2, slot: 3674 +2024-09-22T00:44:20.395113Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3674 +2024-09-22T00:44:20.395135Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3674 +2024-09-22T00:44:20.410748Z INFO fork_choice_control::block_processor: Validating block with slot: 3675 +2024-09-22T00:44:20.411741Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7b2e1a4fd443b8c0040480db7a23fcb8b8002ee7c59210c7ad0618549ae7d463, slot: 3675 +2024-09-22T00:44:20.417819Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3675 +2024-09-22T00:44:20.417834Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3675 +2024-09-22T00:44:20.433465Z INFO fork_choice_control::block_processor: Validating block with slot: 3676 +2024-09-22T00:44:20.435579Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x475ce6864aa4101fb3121cd31a3c0adc9f143d43fc820ade7114875d2eb3643e, slot: 3676 +2024-09-22T00:44:20.445310Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3676 +2024-09-22T00:44:20.445331Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3676 +2024-09-22T00:44:20.461483Z INFO fork_choice_control::block_processor: Validating block with slot: 3677 +2024-09-22T00:44:20.462743Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8f17623ea92d43ce83c17176b107e5fbbacdc1dd29b9f17c8f42fb1e370e1c23, slot: 3677 +2024-09-22T00:44:20.468619Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 3616 +2024-09-22T00:44:20.469219Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3677 +2024-09-22T00:44:20.469233Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3677 +2024-09-22T00:44:20.485797Z INFO fork_choice_control::block_processor: Validating block with slot: 3678 +2024-09-22T00:44:20.486924Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8a14d132478e92bb6464ad2b2ed2b353cca1eb77e2ecad9381fe9d257bb646d9, slot: 3678 +2024-09-22T00:44:20.494267Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3678 +2024-09-22T00:44:20.494286Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3678 +2024-09-22T00:44:20.510831Z INFO fork_choice_control::block_processor: Validating block with slot: 3679 +2024-09-22T00:44:20.511821Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x797b186145525bf6d4676c810b37c023d400eba69ecab5e2a8d1daf40fcbc9c1, slot: 3679 +2024-09-22T00:44:20.514219Z INFO fork_choice_control::block_processor: Validating block with slot: 4443 +2024-09-22T00:44:20.518412Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3679 +2024-09-22T00:44:20.518426Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3679 +2024-09-22T00:44:20.536734Z INFO fork_choice_control::block_processor: Validating block with slot: 3680 +2024-09-22T00:44:20.538329Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xec9e0c8d3cdcb8790d2a3f00598ad2dec4863ecad219995e2138d390ad00f914, slot: 3680 +2024-09-22T00:44:20.657063Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3680 +2024-09-22T00:44:20.657094Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3680 +2024-09-22T00:44:20.668203Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3680) +2024-09-22T00:44:20.668462Z INFO fork_choice_control::block_processor: Validating block with slot: 3681 +2024-09-22T00:44:20.669623Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x015a5ea760c88fcd5d1efe6b03b50a7f396b1a0d85077502349debd55f58f15b, slot: 3681 +2024-09-22T00:44:20.745474Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3681 +2024-09-22T00:44:20.745498Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3681 +2024-09-22T00:44:20.755869Z INFO fork_choice_control::block_processor: Validating block with slot: 3682 +2024-09-22T00:44:20.757608Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2b30516c56720d6178133309f149ec21b2c12bd4b7e51ec8b602304c66591049, slot: 3682 +2024-09-22T00:44:20.766622Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3682 +2024-09-22T00:44:20.766639Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3682 +2024-09-22T00:44:20.777635Z INFO fork_choice_control::block_processor: Validating block with slot: 3684 +2024-09-22T00:44:20.779486Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x566f0fa5bb229f530cb4de311158cebf019e5fa49dcc07762598ab09d90a3008, slot: 3684 +2024-09-22T00:44:20.793568Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3684 +2024-09-22T00:44:20.793590Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3684 +2024-09-22T00:44:20.804575Z INFO fork_choice_control::block_processor: Validating block with slot: 3685 +2024-09-22T00:44:20.805692Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa25e933904164ffbf39652caa67c9f6f38c345eed58b8fd335fffded06b83a78, slot: 3685 +2024-09-22T00:44:20.813072Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3685 +2024-09-22T00:44:20.813095Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3685 +2024-09-22T00:44:20.825533Z INFO fork_choice_control::block_processor: Validating block with slot: 3686 +2024-09-22T00:44:20.828040Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3a7b919e91594422eee3ca260a1f5a48d143a6e07d982a41860bbdec95859e20, slot: 3686 +2024-09-22T00:44:20.852514Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3686 +2024-09-22T00:44:20.852542Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3686 +2024-09-22T00:44:20.870410Z INFO fork_choice_control::block_processor: Validating block with slot: 3687 +2024-09-22T00:44:20.872607Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x81f046a0149bce34f03c2126052ed189fc34601c05114e833686e6033bf02e5c, slot: 3687 +2024-09-22T00:44:20.883994Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3687 +2024-09-22T00:44:20.884020Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3687 +2024-09-22T00:44:20.896185Z INFO fork_choice_control::block_processor: Validating block with slot: 3688 +2024-09-22T00:44:20.897187Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfb4fb71b6889f4a95df6b6591be1eea60b1271c7623669ce327faf6f7e304842, slot: 3688 +2024-09-22T00:44:20.903220Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3688 +2024-09-22T00:44:20.903235Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3688 +2024-09-22T00:44:20.915188Z INFO fork_choice_control::block_processor: Validating block with slot: 3689 +2024-09-22T00:44:20.916327Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf1c2e877d312a8e3b10a3a9573260a74d7918d30301096aac1eed6b232b982e5, slot: 3689 +2024-09-22T00:44:20.922706Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3689 +2024-09-22T00:44:20.922720Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3689 +2024-09-22T00:44:20.934520Z INFO fork_choice_control::block_processor: Validating block with slot: 3690 +2024-09-22T00:44:20.935484Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3f8c152376f2933925dd86d1027a6055a8a3f2ec01c2b0bd84ad957dd5d4ecc7, slot: 3690 +2024-09-22T00:44:20.941367Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3690 +2024-09-22T00:44:20.941389Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3690 +2024-09-22T00:44:20.953040Z INFO fork_choice_control::block_processor: Validating block with slot: 3691 +2024-09-22T00:44:20.954135Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb33d3ca865822b416325f57a4e057338f2ac610165dc0e19427acc7133b07db1, slot: 3691 +2024-09-22T00:44:20.970335Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3691 +2024-09-22T00:44:20.970378Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3691 +2024-09-22T00:44:20.984137Z INFO fork_choice_control::block_processor: Validating block with slot: 3692 +2024-09-22T00:44:20.985284Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9e1b681a1209127b361ef96f04795de8a984ef4ec153c1259b4ef797559f74eb, slot: 3692 +2024-09-22T00:44:20.997693Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3692 +2024-09-22T00:44:20.997712Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3692 +2024-09-22T00:44:21.010157Z INFO fork_choice_control::block_processor: Validating block with slot: 3693 +2024-09-22T00:44:21.011129Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x136acede25a920b9361d864bb759dca53c2abc38607d7af163a3167518c37e10, slot: 3693 +2024-09-22T00:44:21.016685Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3693 +2024-09-22T00:44:21.016700Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3693 +2024-09-22T00:44:21.029110Z INFO fork_choice_control::block_processor: Validating block with slot: 3694 +2024-09-22T00:44:21.030337Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcecf234a37fffbb3070bbde6be6b02391d1ee924c0b12c9de56a93da3bb9f20c, slot: 3694 +2024-09-22T00:44:21.036463Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3694 +2024-09-22T00:44:21.036475Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3694 +2024-09-22T00:44:21.049135Z INFO fork_choice_control::block_processor: Validating block with slot: 3696 +2024-09-22T00:44:21.050786Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x370151c471c031779dedfb9db3dc9736e450910772cd4e5dbb4625fb01b0ebd2, slot: 3696 +2024-09-22T00:44:21.060410Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3696 +2024-09-22T00:44:21.060432Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3696 +2024-09-22T00:44:21.073280Z INFO fork_choice_control::block_processor: Validating block with slot: 3697 +2024-09-22T00:44:21.074416Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdd0c2dfb275e867829710bacc871d94b9bbdf6f220f5e4de3ddd1a253be4337b, slot: 3697 +2024-09-22T00:44:21.080461Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3697 +2024-09-22T00:44:21.080476Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3697 +2024-09-22T00:44:21.093554Z INFO fork_choice_control::block_processor: Validating block with slot: 3698 +2024-09-22T00:44:21.095470Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7f35051e9447ad2a11c6e5fff9be9d1f63446007ba26fc45aadb2b03f5e39cdd, slot: 3698 +2024-09-22T00:44:21.103545Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3698 +2024-09-22T00:44:21.103560Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3698 +2024-09-22T00:44:21.110174Z INFO fork_choice_control::block_processor: Validating block with slot: 4320 +2024-09-22T00:44:21.115502Z INFO fork_choice_control::block_processor: Validating block with slot: 4321 +2024-09-22T00:44:21.115516Z INFO fork_choice_control::block_processor: Validating block with slot: 4322 +2024-09-22T00:44:21.117194Z INFO fork_choice_control::block_processor: Validating block with slot: 3699 +2024-09-22T00:44:21.118269Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x34503776b7d2301b50973e3943496e734735f65b1f964cd011f4fe9a1a1fcfaf, slot: 3699 +2024-09-22T00:44:21.124582Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3699 +2024-09-22T00:44:21.124604Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3699 +2024-09-22T00:44:21.138297Z INFO fork_choice_control::block_processor: Validating block with slot: 3700 +2024-09-22T00:44:21.139566Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc9a473d41f7dad9d92229fc21858beafb2f4215b934ae2d1b2113253636feb3e, slot: 3700 +2024-09-22T00:44:21.147440Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3700 +2024-09-22T00:44:21.147462Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3700 +2024-09-22T00:44:21.162039Z INFO fork_choice_control::block_processor: Validating block with slot: 3701 +2024-09-22T00:44:21.163162Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x800955bc7cec974e7e6d50638619cb4003b3f5fbecbec61f193e70ffb6baec38, slot: 3701 +2024-09-22T00:44:21.169738Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3701 +2024-09-22T00:44:21.169755Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3701 +2024-09-22T00:44:21.184356Z INFO fork_choice_control::block_processor: Validating block with slot: 3702 +2024-09-22T00:44:21.185451Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0df51fe3bae9b5502f2efe05a6fb8ba7eb321b7219fd367eaf9d3955ca2bba8a, slot: 3702 +2024-09-22T00:44:21.192122Z INFO fork_choice_control::block_processor: Validating block with slot: 4324 +2024-09-22T00:44:21.192128Z INFO fork_choice_control::block_processor: Validating block with slot: 4325 +2024-09-22T00:44:21.192139Z INFO fork_choice_control::block_processor: Validating block with slot: 4326 +2024-09-22T00:44:21.192141Z INFO fork_choice_control::block_processor: Validating block with slot: 4327 +2024-09-22T00:44:21.192705Z INFO fork_choice_control::block_processor: Validating block with slot: 4328 +2024-09-22T00:44:21.193113Z INFO fork_choice_control::block_processor: Validating block with slot: 4329 +2024-09-22T00:44:21.193380Z INFO fork_choice_control::block_processor: Validating block with slot: 4330 +2024-09-22T00:44:21.194790Z INFO fork_choice_control::block_processor: Validating block with slot: 4331 +2024-09-22T00:44:21.195052Z INFO fork_choice_control::block_processor: Validating block with slot: 4335 +2024-09-22T00:44:21.195499Z INFO fork_choice_control::block_processor: Validating block with slot: 4333 +2024-09-22T00:44:21.195698Z INFO fork_choice_control::block_processor: Validating block with slot: 4332 +2024-09-22T00:44:21.196515Z INFO fork_choice_control::block_processor: Validating block with slot: 4336 +2024-09-22T00:44:21.196602Z INFO fork_choice_control::block_processor: Validating block with slot: 4337 +2024-09-22T00:44:21.196623Z INFO fork_choice_control::block_processor: Validating block with slot: 4338 +2024-09-22T00:44:21.196805Z INFO fork_choice_control::block_processor: Validating block with slot: 4339 +2024-09-22T00:44:21.197476Z INFO fork_choice_control::block_processor: Validating block with slot: 4340 +2024-09-22T00:44:21.198419Z INFO fork_choice_control::block_processor: Validating block with slot: 4341 +2024-09-22T00:44:21.198724Z INFO fork_choice_control::block_processor: Validating block with slot: 4345 +2024-09-22T00:44:21.198946Z INFO fork_choice_control::block_processor: Validating block with slot: 4346 +2024-09-22T00:44:21.199350Z INFO fork_choice_control::block_processor: Validating block with slot: 4342 +2024-09-22T00:44:21.199589Z INFO fork_choice_control::block_processor: Validating block with slot: 4347 +2024-09-22T00:44:21.200137Z INFO fork_choice_control::block_processor: Validating block with slot: 4348 +2024-09-22T00:44:21.200402Z INFO fork_choice_control::block_processor: Validating block with slot: 4343 +2024-09-22T00:44:21.200647Z INFO fork_choice_control::block_processor: Validating block with slot: 4349 +2024-09-22T00:44:21.200995Z INFO fork_choice_control::block_processor: Validating block with slot: 4350 +2024-09-22T00:44:21.201076Z INFO fork_choice_control::block_processor: Validating block with slot: 4351 +2024-09-22T00:44:21.202067Z INFO fork_choice_control::block_processor: Validating block with slot: 4352 +2024-09-22T00:44:21.202609Z INFO fork_choice_control::block_processor: Validating block with slot: 4354 +2024-09-22T00:44:21.203022Z INFO fork_choice_control::block_processor: Validating block with slot: 4356 +2024-09-22T00:44:21.203059Z INFO fork_choice_control::block_processor: Validating block with slot: 4357 +2024-09-22T00:44:21.203962Z INFO fork_choice_control::block_processor: Validating block with slot: 4358 +2024-09-22T00:44:21.204139Z INFO fork_choice_control::block_processor: Validating block with slot: 4359 +2024-09-22T00:44:21.204142Z INFO fork_choice_control::block_processor: Validating block with slot: 4360 +2024-09-22T00:44:21.204845Z INFO fork_choice_control::block_processor: Validating block with slot: 4334 +2024-09-22T00:44:21.205105Z INFO fork_choice_control::block_processor: Validating block with slot: 4361 +2024-09-22T00:44:21.205773Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3702 +2024-09-22T00:44:21.205789Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3702 +2024-09-22T00:44:21.206915Z INFO fork_choice_control::block_processor: Validating block with slot: 4363 +2024-09-22T00:44:21.207208Z INFO fork_choice_control::block_processor: Validating block with slot: 4323 +2024-09-22T00:44:21.207714Z INFO fork_choice_control::block_processor: Validating block with slot: 4355 +2024-09-22T00:44:21.208016Z INFO fork_choice_control::block_processor: Validating block with slot: 4366 +2024-09-22T00:44:21.208637Z INFO fork_choice_control::block_processor: Validating block with slot: 4367 +2024-09-22T00:44:21.209080Z INFO fork_choice_control::block_processor: Validating block with slot: 4444 +2024-09-22T00:44:21.209349Z INFO fork_choice_control::block_processor: Validating block with slot: 4362 +2024-09-22T00:44:21.209813Z INFO fork_choice_control::block_processor: Validating block with slot: 4365 +2024-09-22T00:44:21.210028Z INFO fork_choice_control::block_processor: Validating block with slot: 4368 +2024-09-22T00:44:21.210143Z INFO fork_choice_control::block_processor: Validating block with slot: 4364 +2024-09-22T00:44:21.210429Z INFO fork_choice_control::block_processor: Validating block with slot: 4256 +2024-09-22T00:44:21.221354Z INFO fork_choice_control::block_processor: Validating block with slot: 3703 +2024-09-22T00:44:21.222916Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf16dff018146fc615452c3e940301156153d2bea7e6b040929bd072924688dc7, slot: 3703 +2024-09-22T00:44:21.223465Z INFO fork_choice_control::block_processor: Validating block with slot: 4445 +2024-09-22T00:44:21.230014Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3703 +2024-09-22T00:44:21.230033Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3703 +2024-09-22T00:44:21.249610Z INFO fork_choice_control::block_processor: Validating block with slot: 3704 +2024-09-22T00:44:21.249612Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 114, root: 0x91fa22c1764581a0b6b455243a55c36e0f72d887fb949521bf5f4d95664c638a, head slot: 3703, head root: 0xf16dff018146fc615452c3e940301156153d2bea7e6b040929bd072924688dc7) +2024-09-22T00:44:21.251747Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc2a67c123961bf64e8728b55a9474e6320619873c9456683dbbb75c9a060b49d, slot: 3704 +2024-09-22T00:44:21.259891Z INFO fork_choice_control::block_processor: Validating block with slot: 4257 +2024-09-22T00:44:21.262169Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3704 +2024-09-22T00:44:21.262189Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3704 +2024-09-22T00:44:21.266946Z INFO fork_choice_control::block_processor: Validating block with slot: 4369 +2024-09-22T00:44:21.266988Z INFO fork_choice_control::block_processor: Validating block with slot: 4446 +2024-09-22T00:44:21.277446Z INFO fork_choice_control::block_processor: Validating block with slot: 3706 +2024-09-22T00:44:21.279128Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb2790a0535a2e86fdea8d5222e984b5958299cd358d97e43e1c541f93206db6a, slot: 3706 +2024-09-22T00:44:21.288955Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3706 +2024-09-22T00:44:21.288972Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3706 +2024-09-22T00:44:21.290464Z INFO fork_choice_control::block_processor: Validating block with slot: 4258 +2024-09-22T00:44:21.298045Z INFO fork_choice_control::block_processor: Validating block with slot: 4370 +2024-09-22T00:44:21.301675Z INFO fork_choice_control::block_processor: Validating block with slot: 4447 +2024-09-22T00:44:21.304472Z INFO fork_choice_control::block_processor: Validating block with slot: 3707 +2024-09-22T00:44:21.305434Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1c21a80ac00ee9b7498751a22229f557f819dec0bc8064a0ff950dec61735492, slot: 3707 +2024-09-22T00:44:21.313533Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3707 +2024-09-22T00:44:21.313553Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3707 +2024-09-22T00:44:21.328900Z INFO fork_choice_control::block_processor: Validating block with slot: 3708 +2024-09-22T00:44:21.329883Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8a7ee01a1a9d793c57deb134914f7f583d4a29c0218bc01fc5edca5568f7f80c, slot: 3708 +2024-09-22T00:44:21.335295Z INFO fork_choice_control::block_processor: Validating block with slot: 4259 +2024-09-22T00:44:21.336567Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3708 +2024-09-22T00:44:21.336582Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3708 +2024-09-22T00:44:21.352068Z INFO fork_choice_control::block_processor: Validating block with slot: 3709 +2024-09-22T00:44:21.353191Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4554f3a9fbe4368c4d5c7c9fb0c0ed1b10ed9b5a73478d5faee83135fe21ea9f, slot: 3709 +2024-09-22T00:44:21.356774Z INFO fork_choice_control::block_processor: Validating block with slot: 4371 +2024-09-22T00:44:21.360667Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3709 +2024-09-22T00:44:21.360685Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3709 +2024-09-22T00:44:21.376397Z INFO fork_choice_control::block_processor: Validating block with slot: 3710 +2024-09-22T00:44:21.377299Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 3648 +2024-09-22T00:44:21.377516Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc2c4382fd71c2f0aac6914ac167ac5d882c730f3e764c8c40b6737439b58a3cc, slot: 3710 +2024-09-22T00:44:21.384033Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3710 +2024-09-22T00:44:21.384050Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3710 +2024-09-22T00:44:21.390703Z INFO fork_choice_control::block_processor: Validating block with slot: 4372 +2024-09-22T00:44:21.390697Z INFO fork_choice_control::block_processor: Validating block with slot: 4373 +2024-09-22T00:44:21.390718Z INFO fork_choice_control::block_processor: Validating block with slot: 4260 +2024-09-22T00:44:21.400111Z INFO fork_choice_control::block_processor: Validating block with slot: 3711 +2024-09-22T00:44:21.401364Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa6deec58f894b99a45c09a883765940f29ff510dff8b015365e5e61f7153b7f7, slot: 3711 +2024-09-22T00:44:21.409515Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3711 +2024-09-22T00:44:21.409554Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3711 +2024-09-22T00:44:21.415281Z INFO fork_choice_control::block_processor: Validating block with slot: 4261 +2024-09-22T00:44:21.420864Z INFO fork_choice_control::block_processor: Validating block with slot: 4374 +2024-09-22T00:44:21.426054Z INFO fork_choice_control::block_processor: Validating block with slot: 3712 +2024-09-22T00:44:21.427308Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdc3e9b991d4054c1507de0efc3ea5fd29ab9d3e5dc48a314a70123a0f91e6b18, slot: 3712 +2024-09-22T00:44:21.440874Z INFO fork_choice_control::block_processor: Validating block with slot: 4262 +2024-09-22T00:44:21.449856Z INFO fork_choice_control::block_processor: Validating block with slot: 4375 +2024-09-22T00:44:21.461947Z INFO fork_choice_control::block_processor: Validating block with slot: 4263 +2024-09-22T00:44:21.477365Z INFO fork_choice_control::block_processor: Validating block with slot: 4376 +2024-09-22T00:44:21.527485Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3712 +2024-09-22T00:44:21.527505Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3712 +2024-09-22T00:44:21.536994Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3712) +2024-09-22T00:44:21.537189Z INFO fork_choice_control::block_processor: Validating block with slot: 3713 +2024-09-22T00:44:21.539141Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7017f4abf8b49e7d13b8fbe9cc5ae1c1fe3d3f49bb63dc7b021698931810b269, slot: 3713 +2024-09-22T00:44:21.546994Z INFO fork_choice_control::block_processor: Validating block with slot: 4264 +2024-09-22T00:44:21.614084Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3713 +2024-09-22T00:44:21.614109Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3713 +2024-09-22T00:44:21.624035Z INFO fork_choice_control::block_processor: Validating block with slot: 3714 +2024-09-22T00:44:21.625287Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x27b80d85344e3172fb97a5ef025c95662d3e84a806b565aaf62816a9433127c2, slot: 3714 +2024-09-22T00:44:21.631972Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3714 +2024-09-22T00:44:21.631987Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3714 +2024-09-22T00:44:21.642079Z INFO fork_choice_control::block_processor: Validating block with slot: 3715 +2024-09-22T00:44:21.643315Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x96ea1aa01f26b1396665fd13345e50fd445a0750028e583aa513defe771fc1d5, slot: 3715 +2024-09-22T00:44:21.650569Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3715 +2024-09-22T00:44:21.650584Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3715 +2024-09-22T00:44:21.660862Z INFO fork_choice_control::block_processor: Validating block with slot: 3716 +2024-09-22T00:44:21.661974Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfaf2a8da847ed846b3d914a5c728635cb5209e67e9e237388d22e776842b96d3, slot: 3716 +2024-09-22T00:44:21.668079Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3716 +2024-09-22T00:44:21.668091Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3716 +2024-09-22T00:44:21.678472Z INFO fork_choice_control::block_processor: Validating block with slot: 3717 +2024-09-22T00:44:21.680654Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc30099f33176b334dd28efc0173e219e3a602a4856010946dcb541ea6d0a12d6, slot: 3717 +2024-09-22T00:44:21.690596Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3717 +2024-09-22T00:44:21.690621Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3717 +2024-09-22T00:44:21.701549Z INFO fork_choice_control::block_processor: Validating block with slot: 3718 +2024-09-22T00:44:21.702533Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xde0a6ec76900e3623ab01f829c397b4e4d3054f5010fa3fe411a2550f3fc1bee, slot: 3718 +2024-09-22T00:44:21.708830Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3718 +2024-09-22T00:44:21.708852Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3718 +2024-09-22T00:44:21.719770Z INFO fork_choice_control::block_processor: Validating block with slot: 3719 +2024-09-22T00:44:21.720890Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8a7b81a946780d1f2882eed39b5566b0fbd988a32c471f683cff8eaf2b42b1be, slot: 3719 +2024-09-22T00:44:21.727944Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3719 +2024-09-22T00:44:21.727964Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3719 +2024-09-22T00:44:21.738815Z INFO fork_choice_control::block_processor: Validating block with slot: 3720 +2024-09-22T00:44:21.741225Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1565306f10bc02c64ecbb71d4ff9f91717268fadd5c3d750e4c9548ff0dfe5b5, slot: 3720 +2024-09-22T00:44:21.753178Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3720 +2024-09-22T00:44:21.753191Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3720 +2024-09-22T00:44:21.765246Z INFO fork_choice_control::block_processor: Validating block with slot: 3721 +2024-09-22T00:44:21.766225Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6a2f638a25a909bb4c8527911efb8541d0a1469f73354b76858a0efee14f4ec9, slot: 3721 +2024-09-22T00:44:21.772608Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3721 +2024-09-22T00:44:21.772622Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3721 +2024-09-22T00:44:21.784276Z INFO fork_choice_control::block_processor: Validating block with slot: 3722 +2024-09-22T00:44:21.785236Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3c27f578ef2005ffc973f24d6b118f8a8c330ab9410f5c95be7db03117849402, slot: 3722 +2024-09-22T00:44:21.791405Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3722 +2024-09-22T00:44:21.791429Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3722 +2024-09-22T00:44:21.803066Z INFO fork_choice_control::block_processor: Validating block with slot: 3723 +2024-09-22T00:44:21.806655Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf922dac1dac758441021379e85994b019632043e03ecfcc1609724200166c1b6, slot: 3723 +2024-09-22T00:44:21.820001Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3723 +2024-09-22T00:44:21.820024Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3723 +2024-09-22T00:44:21.832642Z INFO fork_choice_control::block_processor: Validating block with slot: 3724 +2024-09-22T00:44:21.833736Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5f6690d37f912134af47d9430df1d64156072c8eae709a69045a35d12794799f, slot: 3724 +2024-09-22T00:44:21.839725Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3724 +2024-09-22T00:44:21.839748Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3724 +2024-09-22T00:44:21.852225Z INFO fork_choice_control::block_processor: Validating block with slot: 3725 +2024-09-22T00:44:21.854540Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xff2dd45cb53e0c8b636bae00b5b093002fa603be2aed37f1beb83caa809e226d, slot: 3725 +2024-09-22T00:44:21.864063Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3725 +2024-09-22T00:44:21.864082Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3725 +2024-09-22T00:44:21.877300Z INFO fork_choice_control::block_processor: Validating block with slot: 3726 +2024-09-22T00:44:21.878402Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe7c2e8646c10a41aa80599086af4d03e9272911a60a417552528fd8f41355837, slot: 3726 +2024-09-22T00:44:21.884248Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3726 +2024-09-22T00:44:21.884261Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3726 +2024-09-22T00:44:21.897727Z INFO fork_choice_control::block_processor: Validating block with slot: 3727 +2024-09-22T00:44:21.898815Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x29a0f5910cde271cce83521277c7d0be68a4514b7080cbdb7dded094eef98296, slot: 3727 +2024-09-22T00:44:21.904638Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3727 +2024-09-22T00:44:21.904651Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3727 +2024-09-22T00:44:21.917953Z INFO fork_choice_control::block_processor: Validating block with slot: 3728 +2024-09-22T00:44:21.919509Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x812eff432013479456e1dc1f28f19e2595d305c5f5a110a53ee16befcb2a1f46, slot: 3728 +2024-09-22T00:44:21.926836Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3728 +2024-09-22T00:44:21.926856Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3728 +2024-09-22T00:44:21.940519Z INFO fork_choice_control::block_processor: Validating block with slot: 3729 +2024-09-22T00:44:21.941800Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd5459e07971a0709bdd3ddf63eae53878f40ab0d00d55e74f836123496d5c6f1, slot: 3729 +2024-09-22T00:44:21.948127Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3729 +2024-09-22T00:44:21.948145Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3729 +2024-09-22T00:44:21.962140Z INFO fork_choice_control::block_processor: Validating block with slot: 3730 +2024-09-22T00:44:21.963104Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf4ccdc22a15c4ca6704e618c814d92f9e6ad880f9c04196ee31fee695f8c4995, slot: 3730 +2024-09-22T00:44:21.968962Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3730 +2024-09-22T00:44:21.968975Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3730 +2024-09-22T00:44:21.982961Z INFO fork_choice_control::block_processor: Validating block with slot: 3731 +2024-09-22T00:44:21.984207Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x159134ad5cde76fbbe05822462e554980b99d4d4cdfcd3574c4f1e7a6a3a084e, slot: 3731 +2024-09-22T00:44:21.990714Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3731 +2024-09-22T00:44:21.990737Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3731 +2024-09-22T00:44:22.004656Z INFO fork_choice_control::block_processor: Validating block with slot: 3732 +2024-09-22T00:44:22.005759Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe2a895f8a1f2fad10f4c2d40775c29e19364787df264535fdab7dbfd72a26bbd, slot: 3732 +2024-09-22T00:44:22.012215Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3732 +2024-09-22T00:44:22.012236Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3732 +2024-09-22T00:44:22.027087Z INFO fork_choice_control::block_processor: Validating block with slot: 3733 +2024-09-22T00:44:22.028074Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3fec4ded37fe775ef70f30c17c1a332f4fd70f3a36d9abc317a0a7665aef6b31, slot: 3733 +2024-09-22T00:44:22.034647Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3733 +2024-09-22T00:44:22.034662Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3733 +2024-09-22T00:44:22.049428Z INFO fork_choice_control::block_processor: Validating block with slot: 3734 +2024-09-22T00:44:22.050524Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x72e1f932dbfbb3f0df69168e92ec37c79da5f47d9ac3eceaabc1ad5a7a1fc29e, slot: 3734 +2024-09-22T00:44:22.057000Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3734 +2024-09-22T00:44:22.057023Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3734 +2024-09-22T00:44:22.071577Z INFO fork_choice_control::block_processor: Validating block with slot: 3735 +2024-09-22T00:44:22.072665Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2d8ba96db981d636dcd533c0aa7e16a4dea3667869d729221edf8535da5ae202, slot: 3735 +2024-09-22T00:44:22.078573Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3735 +2024-09-22T00:44:22.078594Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3735 +2024-09-22T00:44:22.098589Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 115, root: 0xec9e0c8d3cdcb8790d2a3f00598ad2dec4863ecad219995e2138d390ad00f914, head slot: 3735, head root: 0x2d8ba96db981d636dcd533c0aa7e16a4dea3667869d729221edf8535da5ae202) +2024-09-22T00:44:22.098598Z INFO fork_choice_control::block_processor: Validating block with slot: 3736 +2024-09-22T00:44:22.100058Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x96f12a203577eabade1394b95583db180782a171205425f13154a841e348ae5b, slot: 3736 +2024-09-22T00:44:22.107134Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3736 +2024-09-22T00:44:22.107160Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3736 +2024-09-22T00:44:22.122269Z INFO fork_choice_control::block_processor: Validating block with slot: 3737 +2024-09-22T00:44:22.123253Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1fcee175260d17db83c4de06ed85015c9005834bee77be658df081e8c407badb, slot: 3737 +2024-09-22T00:44:22.130109Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3737 +2024-09-22T00:44:22.130129Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3737 +2024-09-22T00:44:22.145590Z INFO fork_choice_control::block_processor: Validating block with slot: 3738 +2024-09-22T00:44:22.147136Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd7f34468c3a51dc234139266b6331f634b852dfaf0077500b9c2e2d8b40cfe50, slot: 3738 +2024-09-22T00:44:22.154268Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3738 +2024-09-22T00:44:22.154285Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3738 +2024-09-22T00:44:22.170733Z INFO fork_choice_control::block_processor: Validating block with slot: 3739 +2024-09-22T00:44:22.172518Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd21a1a42bde27169822fe81d71f3fa9b2a8054e84825feb345e4f5251c56e325, slot: 3739 +2024-09-22T00:44:22.182742Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3739 +2024-09-22T00:44:22.182763Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3739 +2024-09-22T00:44:22.206159Z INFO fork_choice_control::block_processor: Validating block with slot: 3740 +2024-09-22T00:44:22.207838Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf3bbd05780f0b0eae6925a99cc6ebaed7ae6a95eab10e08f76e258978d130bda, slot: 3740 +2024-09-22T00:44:22.226176Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3740 +2024-09-22T00:44:22.226284Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3740 +2024-09-22T00:44:22.244213Z INFO fork_choice_control::block_processor: Validating block with slot: 3741 +2024-09-22T00:44:22.244665Z INFO fork_choice_control::block_processor: Validating block with slot: 4378 +2024-09-22T00:44:22.244689Z INFO fork_choice_control::block_processor: Validating block with slot: 4377 +2024-09-22T00:44:22.244732Z INFO fork_choice_control::block_processor: Validating block with slot: 4379 +2024-09-22T00:44:22.244809Z INFO fork_choice_control::block_processor: Validating block with slot: 4380 +2024-09-22T00:44:22.244844Z INFO fork_choice_control::block_processor: Validating block with slot: 4381 +2024-09-22T00:44:22.245392Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6966f7a74af15d3c1f4c8f51515ebaafd6ce1b70371bc59a01bfb0fa81c83661, slot: 3741 +2024-09-22T00:44:22.245753Z INFO fork_choice_control::block_processor: Validating block with slot: 4382 +2024-09-22T00:44:22.245925Z INFO fork_choice_control::block_processor: Validating block with slot: 4383 +2024-09-22T00:44:22.246968Z INFO fork_choice_control::block_processor: Validating block with slot: 4265 +2024-09-22T00:44:22.247138Z INFO fork_choice_control::block_processor: Validating block with slot: 4267 +2024-09-22T00:44:22.247487Z INFO fork_choice_control::block_processor: Validating block with slot: 4268 +2024-09-22T00:44:22.247788Z INFO fork_choice_control::block_processor: Validating block with slot: 4269 +2024-09-22T00:44:22.247912Z INFO fork_choice_control::block_processor: Validating block with slot: 4270 +2024-09-22T00:44:22.248126Z INFO fork_choice_control::block_processor: Validating block with slot: 4271 +2024-09-22T00:44:22.248426Z INFO fork_choice_control::block_processor: Validating block with slot: 4272 +2024-09-22T00:44:22.248724Z INFO fork_choice_control::block_processor: Validating block with slot: 4273 +2024-09-22T00:44:22.249413Z INFO fork_choice_control::block_processor: Validating block with slot: 4275 +2024-09-22T00:44:22.249497Z INFO fork_choice_control::block_processor: Validating block with slot: 4276 +2024-09-22T00:44:22.249794Z INFO fork_choice_control::block_processor: Validating block with slot: 4277 +2024-09-22T00:44:22.250186Z INFO fork_choice_control::block_processor: Validating block with slot: 4278 +2024-09-22T00:44:22.250215Z INFO fork_choice_control::block_processor: Validating block with slot: 4279 +2024-09-22T00:44:22.250730Z INFO fork_choice_control::block_processor: Validating block with slot: 4280 +2024-09-22T00:44:22.251123Z INFO fork_choice_control::block_processor: Validating block with slot: 4281 +2024-09-22T00:44:22.251569Z INFO fork_choice_control::block_processor: Validating block with slot: 4282 +2024-09-22T00:44:22.251692Z INFO fork_choice_control::block_processor: Validating block with slot: 4283 +2024-09-22T00:44:22.251800Z INFO fork_choice_control::block_processor: Validating block with slot: 4285 +2024-09-22T00:44:22.252506Z INFO fork_choice_control::block_processor: Validating block with slot: 4286 +2024-09-22T00:44:22.252901Z INFO fork_choice_control::block_processor: Validating block with slot: 4287 +2024-09-22T00:44:22.253437Z INFO fork_choice_control::block_processor: Validating block with slot: 4288 +2024-09-22T00:44:22.253575Z INFO fork_choice_control::block_processor: Validating block with slot: 4289 +2024-09-22T00:44:22.254586Z INFO fork_choice_control::block_processor: Validating block with slot: 4291 +2024-09-22T00:44:22.254584Z INFO fork_choice_control::block_processor: Validating block with slot: 4290 +2024-09-22T00:44:22.254645Z INFO fork_choice_control::block_processor: Validating block with slot: 4293 +2024-09-22T00:44:22.254801Z INFO fork_choice_control::block_processor: Validating block with slot: 4292 +2024-09-22T00:44:22.255667Z INFO fork_choice_control::block_processor: Validating block with slot: 4294 +2024-09-22T00:44:22.255912Z INFO fork_choice_control::block_processor: Validating block with slot: 4295 +2024-09-22T00:44:22.255994Z INFO fork_choice_control::block_processor: Validating block with slot: 4296 +2024-09-22T00:44:22.256604Z INFO fork_choice_control::block_processor: Validating block with slot: 4297 +2024-09-22T00:44:22.257065Z INFO fork_choice_control::block_processor: Validating block with slot: 4298 +2024-09-22T00:44:22.257822Z INFO fork_choice_control::block_processor: Validating block with slot: 4300 +2024-09-22T00:44:22.258014Z INFO fork_choice_control::block_processor: Validating block with slot: 4301 +2024-09-22T00:44:22.258580Z INFO fork_choice_control::block_processor: Validating block with slot: 4302 +2024-09-22T00:44:22.258731Z INFO fork_choice_control::block_processor: Validating block with slot: 4303 +2024-09-22T00:44:22.258830Z INFO fork_choice_control::block_processor: Validating block with slot: 4304 +2024-09-22T00:44:22.259523Z INFO fork_choice_control::block_processor: Validating block with slot: 4305 +2024-09-22T00:44:22.260336Z INFO fork_choice_control::block_processor: Validating block with slot: 4306 +2024-09-22T00:44:22.260464Z INFO fork_choice_control::block_processor: Validating block with slot: 4307 +2024-09-22T00:44:22.261288Z INFO fork_choice_control::block_processor: Validating block with slot: 4308 +2024-09-22T00:44:22.261812Z INFO fork_choice_control::block_processor: Validating block with slot: 4309 +2024-09-22T00:44:22.261848Z INFO fork_choice_control::block_processor: Validating block with slot: 4310 +2024-09-22T00:44:22.262130Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3741 +2024-09-22T00:44:22.262161Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3741 +2024-09-22T00:44:22.268822Z INFO fork_choice_control::block_processor: Validating block with slot: 4311 +2024-09-22T00:44:22.279878Z INFO fork_choice_control::block_processor: Validating block with slot: 3742 +2024-09-22T00:44:22.280356Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 3680 +2024-09-22T00:44:22.281570Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb0f7c76d27d8d03dca1d4e78a934523ca86c4e8cc3d9da94f0cb578e6ab27723, slot: 3742 +2024-09-22T00:44:22.286033Z INFO fork_choice_control::block_processor: Validating block with slot: 4312 +2024-09-22T00:44:22.289975Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3742 +2024-09-22T00:44:22.289994Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3742 +2024-09-22T00:44:22.301189Z INFO fork_choice_control::block_processor: Validating block with slot: 4313 +2024-09-22T00:44:22.306621Z INFO fork_choice_control::block_processor: Validating block with slot: 3743 +2024-09-22T00:44:22.307707Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x35aa0453fea7b86b2b9e1aa3509747c1e4826f4a6b173a4abc2cb8d106a89c66, slot: 3743 +2024-09-22T00:44:22.313929Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3743 +2024-09-22T00:44:22.313945Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3743 +2024-09-22T00:44:22.317971Z INFO fork_choice_control::block_processor: Validating block with slot: 4314 +2024-09-22T00:44:22.330942Z INFO fork_choice_control::block_processor: Validating block with slot: 3744 +2024-09-22T00:44:22.331733Z INFO fork_choice_control::block_processor: Validating block with slot: 4315 +2024-09-22T00:44:22.332338Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd8e1abef86a868a6390c1c7a1501a2db67f99d092a10774576bbef3083519038, slot: 3744 +2024-09-22T00:44:22.348311Z INFO fork_choice_control::block_processor: Validating block with slot: 4316 +2024-09-22T00:44:22.364214Z INFO fork_choice_control::block_processor: Validating block with slot: 4317 +2024-09-22T00:44:22.378992Z INFO fork_choice_control::block_processor: Validating block with slot: 4318 +2024-09-22T00:44:22.381735Z INFO fork_choice_control::block_processor: Validating block with slot: 4319 +2024-09-22T00:44:22.432015Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3744 +2024-09-22T00:44:22.432037Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3744 +2024-09-22T00:44:22.442856Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3744) +2024-09-22T00:44:22.442958Z INFO fork_choice_control::block_processor: Validating block with slot: 3746 +2024-09-22T00:44:22.445907Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb8c046296cb1312dae998e9db8270e3119e3ebfee25161bc41bd5024fb63185c, slot: 3746 +2024-09-22T00:44:22.527359Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3746 +2024-09-22T00:44:22.527383Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3746 +2024-09-22T00:44:22.539114Z INFO fork_choice_control::block_processor: Validating block with slot: 3747 +2024-09-22T00:44:22.541652Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdb94c1d06ae9817a163695c583d882882aa35fca499104db4d5858e083c0a581, slot: 3747 +2024-09-22T00:44:22.554708Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3747 +2024-09-22T00:44:22.554732Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3747 +2024-09-22T00:44:22.566975Z INFO fork_choice_control::block_processor: Validating block with slot: 3748 +2024-09-22T00:44:22.568104Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa093f512262d7a2f98bfa40c48a8abe7cba12eb71da27bfe3e22add7675e41d0, slot: 3748 +2024-09-22T00:44:22.575045Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3748 +2024-09-22T00:44:22.575069Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3748 +2024-09-22T00:44:22.588429Z INFO fork_choice_control::block_processor: Validating block with slot: 3749 +2024-09-22T00:44:22.590279Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf4f2e678aefae99fc73e0de5744d55632ac004abb4ea17e2ed21a936caaddf1c, slot: 3749 +2024-09-22T00:44:22.598796Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3749 +2024-09-22T00:44:22.598818Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3749 +2024-09-22T00:44:22.611859Z INFO fork_choice_control::block_processor: Validating block with slot: 3750 +2024-09-22T00:44:22.613024Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x081be16ce08eb0f4b9899506cac9aee7aa07d4b341377933d381fc98467e9047, slot: 3750 +2024-09-22T00:44:22.620082Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3750 +2024-09-22T00:44:22.620102Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3750 +2024-09-22T00:44:22.633135Z INFO fork_choice_control::block_processor: Validating block with slot: 3751 +2024-09-22T00:44:22.634121Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6a201cb2d3a039e21aa6e6a22c2ae4c01d031ea181c0c039af899b4daec03f74, slot: 3751 +2024-09-22T00:44:22.641223Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3751 +2024-09-22T00:44:22.641242Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3751 +2024-09-22T00:44:22.653447Z INFO fork_choice_control::block_processor: Validating block with slot: 3752 +2024-09-22T00:44:22.654437Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9bf87b2d3aee18c746ca53ba4e95e2cdb9608fc106e7eae0ae52bfadc664ceae, slot: 3752 +2024-09-22T00:44:22.661125Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3752 +2024-09-22T00:44:22.661147Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3752 +2024-09-22T00:44:22.673365Z INFO fork_choice_control::block_processor: Validating block with slot: 3753 +2024-09-22T00:44:22.674648Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbf19e3c5fa4a2b8783706e7f8cee9358ae413965495241eebc4bb00b46548b10, slot: 3753 +2024-09-22T00:44:22.681055Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3753 +2024-09-22T00:44:22.681068Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3753 +2024-09-22T00:44:22.693503Z INFO fork_choice_control::block_processor: Validating block with slot: 3754 +2024-09-22T00:44:22.694616Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0be8ff759713a4126bb4e1e947b1173f46e3226ea507ffd5d44f28f9a147e5f7, slot: 3754 +2024-09-22T00:44:22.700458Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3754 +2024-09-22T00:44:22.700471Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3754 +2024-09-22T00:44:22.712978Z INFO fork_choice_control::block_processor: Validating block with slot: 3755 +2024-09-22T00:44:22.715420Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x673f6baca88d4eefcbafca8bac8325db07b85aaf5db114bbfa553b82f03da661, slot: 3755 +2024-09-22T00:44:22.725420Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3755 +2024-09-22T00:44:22.725444Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3755 +2024-09-22T00:44:22.738106Z INFO fork_choice_control::block_processor: Validating block with slot: 3756 +2024-09-22T00:44:22.739379Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf132eef71ad940e9bea8fe081f379e942ccda884febb30f33aa748bb0e8a6b9e, slot: 3756 +2024-09-22T00:44:22.745786Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3756 +2024-09-22T00:44:22.745807Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3756 +2024-09-22T00:44:22.759007Z INFO fork_choice_control::block_processor: Validating block with slot: 3757 +2024-09-22T00:44:22.760833Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbe1d4eae174ba7efd8f83aff0df9c8d4673263ab99e0a31a61e83e5f3b71a8c4, slot: 3757 +2024-09-22T00:44:22.768676Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3757 +2024-09-22T00:44:22.768694Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3757 +2024-09-22T00:44:22.782077Z INFO fork_choice_control::block_processor: Validating block with slot: 3758 +2024-09-22T00:44:22.783048Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf330455bb10d27da924d54fb050dd4c0f3b8c43f28dfaf19914ea3095f146764, slot: 3758 +2024-09-22T00:44:22.790291Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3758 +2024-09-22T00:44:22.790318Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3758 +2024-09-22T00:44:22.803877Z INFO fork_choice_control::block_processor: Validating block with slot: 3759 +2024-09-22T00:44:22.805256Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xff47f3138f7d0d1b193c9d46ca72df00cd2b6c98a50b6f1324eefdfd3ce0b376, slot: 3759 +2024-09-22T00:44:22.812424Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3759 +2024-09-22T00:44:22.812444Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3759 +2024-09-22T00:44:22.826209Z INFO fork_choice_control::block_processor: Validating block with slot: 3760 +2024-09-22T00:44:22.828265Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x635b6d13427484cf6af7af76fb7148eb73a13a9d28143aa9cf0304967dd7367c, slot: 3760 +2024-09-22T00:44:22.836793Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3760 +2024-09-22T00:44:22.836811Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3760 +2024-09-22T00:44:22.850988Z INFO fork_choice_control::block_processor: Validating block with slot: 3761 +2024-09-22T00:44:22.851975Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9a30a1a0c26d99d9d895a58440bb65553d308ebab5d9f3529a29ac1f6e73d154, slot: 3761 +2024-09-22T00:44:22.859366Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3761 +2024-09-22T00:44:22.859386Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3761 +2024-09-22T00:44:22.873569Z INFO fork_choice_control::block_processor: Validating block with slot: 3762 +2024-09-22T00:44:22.875119Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1f0357de36885c054f575601d5234d8e6b1cb5e1dc25104ca0e10218dc310873, slot: 3762 +2024-09-22T00:44:22.882045Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3762 +2024-09-22T00:44:22.882063Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3762 +2024-09-22T00:44:22.896591Z INFO fork_choice_control::block_processor: Validating block with slot: 3763 +2024-09-22T00:44:22.897691Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe6c0219f725f762ab20e403b4d0363c09ed81d638cdc9de8f7f33be12e1e122b, slot: 3763 +2024-09-22T00:44:22.903584Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3763 +2024-09-22T00:44:22.903597Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3763 +2024-09-22T00:44:22.918273Z INFO fork_choice_control::block_processor: Validating block with slot: 3764 +2024-09-22T00:44:22.919633Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc45002f2d23cce4353ec6f9f12a2ef5ed558db7030056af1e720b2473e64eb8f, slot: 3764 +2024-09-22T00:44:22.926453Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3764 +2024-09-22T00:44:22.926473Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3764 +2024-09-22T00:44:22.941215Z INFO fork_choice_control::block_processor: Validating block with slot: 3765 +2024-09-22T00:44:22.942196Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe3d958f7cc96e3ec3a74018526817004edf8d1207255e28822f865bf519e748e, slot: 3765 +2024-09-22T00:44:22.948059Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3765 +2024-09-22T00:44:22.948072Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3765 +2024-09-22T00:44:22.963406Z INFO fork_choice_control::block_processor: Validating block with slot: 3766 +2024-09-22T00:44:22.964811Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5c8806f903622d5805f6db5ff3cf685f94f8d203736a60a157623bd71516bec8, slot: 3766 +2024-09-22T00:44:22.972073Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3766 +2024-09-22T00:44:22.972089Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3766 +2024-09-22T00:44:22.987505Z INFO fork_choice_control::block_processor: Validating block with slot: 3767 +2024-09-22T00:44:22.989637Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0e77eb3a07a86bd9a513532f648500e1a17cfb0bdcabfb580c11d1afd92264fd, slot: 3767 +2024-09-22T00:44:22.999662Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3767 +2024-09-22T00:44:22.999681Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3767 +2024-09-22T00:44:23.020749Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 116, root: 0xdc3e9b991d4054c1507de0efc3ea5fd29ab9d3e5dc48a314a70123a0f91e6b18, head slot: 3767, head root: 0x0e77eb3a07a86bd9a513532f648500e1a17cfb0bdcabfb580c11d1afd92264fd) +2024-09-22T00:44:23.020764Z INFO fork_choice_control::block_processor: Validating block with slot: 3768 +2024-09-22T00:44:23.022536Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x86a11f7553b8600798d3d3875fc427b8136ea904846493887f621ea7234fa8b6, slot: 3768 +2024-09-22T00:44:23.031616Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3768 +2024-09-22T00:44:23.031636Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3768 +2024-09-22T00:44:23.048004Z INFO fork_choice_control::block_processor: Validating block with slot: 3769 +2024-09-22T00:44:23.048983Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x886c5bf8b986e3d923aefee72c9300d908737e7be9356404b0d203121a3700b6, slot: 3769 +2024-09-22T00:44:23.055011Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3769 +2024-09-22T00:44:23.055025Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3769 +2024-09-22T00:44:23.071378Z INFO fork_choice_control::block_processor: Validating block with slot: 3770 +2024-09-22T00:44:23.072641Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8e733662e7f9d992fe6c31d4bee196caf11242f61da9753943c84b7803ca3d43, slot: 3770 +2024-09-22T00:44:23.080042Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3770 +2024-09-22T00:44:23.080065Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3770 +2024-09-22T00:44:23.096610Z INFO fork_choice_control::block_processor: Validating block with slot: 3771 +2024-09-22T00:44:23.097633Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x70944d3316a9ff9fec5262085e8eceb21e17992b4cbb35bf7bca5e4a8e1a51c7, slot: 3771 +2024-09-22T00:44:23.105779Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3771 +2024-09-22T00:44:23.105805Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3771 +2024-09-22T00:44:23.122703Z INFO fork_choice_control::block_processor: Validating block with slot: 3772 +2024-09-22T00:44:23.124202Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfb4892c6d0e6bca6cd8aedf760048c26acef545850e931508487afc1484d2a24, slot: 3772 +2024-09-22T00:44:23.131120Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3772 +2024-09-22T00:44:23.131139Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3772 +2024-09-22T00:44:23.148006Z INFO fork_choice_control::block_processor: Validating block with slot: 3773 +2024-09-22T00:44:23.148581Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 3712 +2024-09-22T00:44:23.149408Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x32fd5e3d1d1154f324fb50367fcabe26632c8783980d9afa7d4bbea3beceaf8c, slot: 3773 +2024-09-22T00:44:23.157248Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3773 +2024-09-22T00:44:23.157273Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3773 +2024-09-22T00:44:23.174232Z INFO fork_choice_control::block_processor: Validating block with slot: 3774 +2024-09-22T00:44:23.176079Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x229b06be6cfe6a4af0f29215924f30bb17a8541d043bfeb89c5a704891fc3b01, slot: 3774 +2024-09-22T00:44:23.183865Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3774 +2024-09-22T00:44:23.183880Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3774 +2024-09-22T00:44:23.201067Z INFO fork_choice_control::block_processor: Validating block with slot: 3775 +2024-09-22T00:44:23.202057Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x58e59f68169ef3928d25e99d5dc78a22ae3fd8c256f0e8d38e83e69d2a37750f, slot: 3775 +2024-09-22T00:44:23.208464Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3775 +2024-09-22T00:44:23.208488Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3775 +2024-09-22T00:44:23.225907Z INFO fork_choice_control::block_processor: Validating block with slot: 3776 +2024-09-22T00:44:23.227045Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x21abe339721edb6972379d469139bd63492f92948a0e344300f6064304b8e368, slot: 3776 +2024-09-22T00:44:23.334144Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3776 +2024-09-22T00:44:23.334169Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3776 +2024-09-22T00:44:23.345168Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3776) +2024-09-22T00:44:23.345280Z INFO fork_choice_control::block_processor: Validating block with slot: 3778 +2024-09-22T00:44:23.347639Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbf15eb8f461933f26a4b29b1a52ab37a700ee6e062a401952c7158866be7fa26, slot: 3778 +2024-09-22T00:44:23.353838Z INFO fork_choice_control::block_processor: Validating block with slot: 4514 +2024-09-22T00:44:23.353845Z INFO fork_choice_control::block_processor: Validating block with slot: 4515 +2024-09-22T00:44:23.353852Z INFO fork_choice_control::block_processor: Validating block with slot: 4516 +2024-09-22T00:44:23.353863Z INFO fork_choice_control::block_processor: Validating block with slot: 4517 +2024-09-22T00:44:23.353875Z INFO fork_choice_control::block_processor: Validating block with slot: 4512 +2024-09-22T00:44:23.353920Z INFO fork_choice_control::block_processor: Validating block with slot: 4513 +2024-09-22T00:44:23.354110Z INFO fork_choice_control::block_processor: Validating block with slot: 4518 +2024-09-22T00:44:23.354851Z INFO fork_choice_control::block_processor: Validating block with slot: 4519 +2024-09-22T00:44:23.355923Z INFO fork_choice_control::block_processor: Validating block with slot: 4520 +2024-09-22T00:44:23.357478Z INFO fork_choice_control::block_processor: Validating block with slot: 4521 +2024-09-22T00:44:23.357934Z INFO fork_choice_control::block_processor: Validating block with slot: 4522 +2024-09-22T00:44:23.358123Z INFO fork_choice_control::block_processor: Validating block with slot: 4523 +2024-09-22T00:44:23.359060Z INFO fork_choice_control::block_processor: Validating block with slot: 4524 +2024-09-22T00:44:23.360829Z INFO fork_choice_control::block_processor: Validating block with slot: 4525 +2024-09-22T00:44:23.361221Z INFO fork_choice_control::block_processor: Validating block with slot: 4529 +2024-09-22T00:44:23.361298Z INFO fork_choice_control::block_processor: Validating block with slot: 4530 +2024-09-22T00:44:23.361864Z INFO fork_choice_control::block_processor: Validating block with slot: 4526 +2024-09-22T00:44:23.361926Z INFO fork_choice_control::block_processor: Validating block with slot: 4527 +2024-09-22T00:44:23.362471Z INFO fork_choice_control::block_processor: Validating block with slot: 4531 +2024-09-22T00:44:23.362468Z INFO fork_choice_control::block_processor: Validating block with slot: 4528 +2024-09-22T00:44:23.362922Z INFO fork_choice_control::block_processor: Validating block with slot: 4532 +2024-09-22T00:44:23.363687Z INFO fork_choice_control::block_processor: Validating block with slot: 4533 +2024-09-22T00:44:23.363826Z INFO fork_choice_control::block_processor: Validating block with slot: 4534 +2024-09-22T00:44:23.365226Z INFO fork_choice_control::block_processor: Validating block with slot: 4535 +2024-09-22T00:44:23.365581Z INFO fork_choice_control::block_processor: Validating block with slot: 4536 +2024-09-22T00:44:23.365713Z INFO fork_choice_control::block_processor: Validating block with slot: 4537 +2024-09-22T00:44:23.412959Z INFO fork_choice_control::block_processor: Validating block with slot: 4541 +2024-09-22T00:44:23.412962Z INFO fork_choice_control::block_processor: Validating block with slot: 4539 +2024-09-22T00:44:23.412978Z INFO fork_choice_control::block_processor: Validating block with slot: 4542 +2024-09-22T00:44:23.412987Z INFO fork_choice_control::block_processor: Validating block with slot: 4540 +2024-09-22T00:44:23.413012Z INFO fork_choice_control::block_processor: Validating block with slot: 4538 +2024-09-22T00:44:23.413112Z INFO fork_choice_control::block_processor: Validating block with slot: 4543 +2024-09-22T00:44:23.413477Z INFO fork_choice_control::block_processor: Validating block with slot: 4544 +2024-09-22T00:44:23.414079Z INFO fork_choice_control::block_processor: Validating block with slot: 4545 +2024-09-22T00:44:23.414140Z INFO fork_choice_control::block_processor: Validating block with slot: 4546 +2024-09-22T00:44:23.414771Z INFO fork_choice_control::block_processor: Validating block with slot: 4547 +2024-09-22T00:44:23.415042Z INFO fork_choice_control::block_processor: Validating block with slot: 4548 +2024-09-22T00:44:23.415516Z INFO fork_choice_control::block_processor: Validating block with slot: 4549 +2024-09-22T00:44:23.416371Z INFO fork_choice_control::block_processor: Validating block with slot: 4551 +2024-09-22T00:44:23.416470Z INFO fork_choice_control::block_processor: Validating block with slot: 4555 +2024-09-22T00:44:23.416486Z INFO fork_choice_control::block_processor: Validating block with slot: 4554 +2024-09-22T00:44:23.416642Z INFO fork_choice_control::block_processor: Validating block with slot: 4552 +2024-09-22T00:44:23.417167Z INFO fork_choice_control::block_processor: Validating block with slot: 4556 +2024-09-22T00:44:23.417421Z INFO fork_choice_control::block_processor: Validating block with slot: 4557 +2024-09-22T00:44:23.419022Z INFO fork_choice_control::block_processor: Validating block with slot: 4553 +2024-09-22T00:44:23.419128Z INFO fork_choice_control::block_processor: Validating block with slot: 4558 +2024-09-22T00:44:23.419243Z INFO fork_choice_control::block_processor: Validating block with slot: 4559 +2024-09-22T00:44:23.419351Z INFO fork_choice_control::block_processor: Validating block with slot: 4560 +2024-09-22T00:44:23.419971Z INFO fork_choice_control::block_processor: Validating block with slot: 4561 +2024-09-22T00:44:23.420192Z INFO fork_choice_control::block_processor: Validating block with slot: 4562 +2024-09-22T00:44:23.420213Z INFO fork_choice_control::block_processor: Validating block with slot: 4563 +2024-09-22T00:44:23.422189Z INFO fork_choice_control::block_processor: Validating block with slot: 4564 +2024-09-22T00:44:23.422262Z INFO fork_choice_control::block_processor: Validating block with slot: 4565 +2024-09-22T00:44:23.422401Z INFO fork_choice_control::block_processor: Validating block with slot: 4566 +2024-09-22T00:44:23.423164Z INFO fork_choice_control::block_processor: Validating block with slot: 4567 +2024-09-22T00:44:23.436484Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3778 +2024-09-22T00:44:23.436504Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3778 +2024-09-22T00:44:23.447895Z INFO fork_choice_control::block_processor: Validating block with slot: 3779 +2024-09-22T00:44:23.451453Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfb613414224c72885664d9e8149dc72b4d6c9c9154c5cd8f71e0918e09e73319, slot: 3779 +2024-09-22T00:44:23.466797Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3779 +2024-09-22T00:44:23.466819Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3779 +2024-09-22T00:44:23.478730Z INFO fork_choice_control::block_processor: Validating block with slot: 3780 +2024-09-22T00:44:23.479712Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x49cd91e796d2c3f563a647105a9c1fdb8cc6a271ee407cde53e102babfafd577, slot: 3780 +2024-09-22T00:44:23.485871Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3780 +2024-09-22T00:44:23.485883Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3780 +2024-09-22T00:44:23.497761Z INFO fork_choice_control::block_processor: Validating block with slot: 3781 +2024-09-22T00:44:23.498732Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7b072895a088be7b5457dae8093f081aecdd3535fae9aed66c57dd0c54128731, slot: 3781 +2024-09-22T00:44:23.504771Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3781 +2024-09-22T00:44:23.504783Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3781 +2024-09-22T00:44:23.517656Z INFO fork_choice_control::block_processor: Validating block with slot: 3782 +2024-09-22T00:44:23.518920Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6c62c3f65f953a7a8f0725aeac97c417f6ac4b49e004ff25052a677dcb84f120, slot: 3782 +2024-09-22T00:44:23.525860Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3782 +2024-09-22T00:44:23.525887Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3782 +2024-09-22T00:44:23.538089Z INFO fork_choice_control::block_processor: Validating block with slot: 3783 +2024-09-22T00:44:23.539072Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x32811e331a666ee325c0888736b03de147ecbf9182ba1c8cdf07b41de30c2fdb, slot: 3783 +2024-09-22T00:44:23.541551Z INFO fork_choice_control::block_processor: Validating block with slot: 4568 +2024-09-22T00:44:23.545770Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3783 +2024-09-22T00:44:23.545786Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3783 +2024-09-22T00:44:23.558178Z INFO fork_choice_control::block_processor: Validating block with slot: 3784 +2024-09-22T00:44:23.559869Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfa5ca47d91dabf8fcb3eea80fe86e02b54d5ed19a89e2d244d1d6e22c899ad72, slot: 3784 +2024-09-22T00:44:23.568188Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3784 +2024-09-22T00:44:23.568200Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3784 +2024-09-22T00:44:23.581186Z INFO fork_choice_control::block_processor: Validating block with slot: 3785 +2024-09-22T00:44:23.582308Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf386ffc38cfdf57664767ed2608219b786e80a037951ae0a748a452a65f341f7, slot: 3785 +2024-09-22T00:44:23.589061Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3785 +2024-09-22T00:44:23.589083Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3785 +2024-09-22T00:44:23.601684Z INFO fork_choice_control::block_processor: Validating block with slot: 3786 +2024-09-22T00:44:23.602786Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd336482d212e4806fb79770ccca37c211e21a5df183a09f2dfb8098707e62626, slot: 3786 +2024-09-22T00:44:23.609081Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3786 +2024-09-22T00:44:23.609099Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3786 +2024-09-22T00:44:23.625105Z INFO fork_choice_control::block_processor: Validating block with slot: 3787 +2024-09-22T00:44:23.626373Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd46ef08938304004af5a8fb1463a21ea09d2b6e0262770a1c6d6d75fe47e4915, slot: 3787 +2024-09-22T00:44:23.638253Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3787 +2024-09-22T00:44:23.638272Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3787 +2024-09-22T00:44:23.652639Z INFO fork_choice_control::block_processor: Validating block with slot: 3788 +2024-09-22T00:44:23.653752Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xea7b79954975e9d626c9e50628df002c2c7b1c39eb676b77b9ec47f3bd135986, slot: 3788 +2024-09-22T00:44:23.663920Z INFO fork_choice_control::block_processor: Validating block with slot: 4569 +2024-09-22T00:44:23.665189Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3788 +2024-09-22T00:44:23.665201Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3788 +2024-09-22T00:44:23.678393Z INFO fork_choice_control::block_processor: Validating block with slot: 4448 +2024-09-22T00:44:23.680063Z INFO fork_choice_control::block_processor: Validating block with slot: 3789 +2024-09-22T00:44:23.681171Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xca0c8dc23c538afb52e2915ad5ba9190a8c95f3815afd63e45d32bb253d8c088, slot: 3789 +2024-09-22T00:44:23.688812Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3789 +2024-09-22T00:44:23.688831Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3789 +2024-09-22T00:44:23.696782Z INFO fork_choice_control::block_processor: Validating block with slot: 4576 +2024-09-22T00:44:23.702646Z INFO fork_choice_control::block_processor: Validating block with slot: 3790 +2024-09-22T00:44:23.703859Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf7c6dd2a465e5bc4fa6ccf8895cbe9ff1b0aa6551a5a4ea0cdc2a1ba33c2ba68, slot: 3790 +2024-09-22T00:44:23.711478Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3790 +2024-09-22T00:44:23.711498Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3790 +2024-09-22T00:44:23.720897Z INFO fork_choice_control::block_processor: Validating block with slot: 4570 +2024-09-22T00:44:23.722533Z INFO fork_choice_control::block_processor: Validating block with slot: 4449 +2024-09-22T00:44:23.725684Z INFO fork_choice_control::block_processor: Validating block with slot: 3791 +2024-09-22T00:44:23.727784Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x07ad5c28e1a840e87e610a6bcb66c8a2ec095ff6412762dfb1473005e8fd073e, slot: 3791 +2024-09-22T00:44:23.736147Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3791 +2024-09-22T00:44:23.736161Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3791 +2024-09-22T00:44:23.739098Z INFO fork_choice_control::block_processor: Validating block with slot: 4577 +2024-09-22T00:44:23.750329Z INFO fork_choice_control::block_processor: Validating block with slot: 3792 +2024-09-22T00:44:23.751276Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9592e7179aa659e1c8c3c12be664115e665b43434bcdba216db12055b4373c5c, slot: 3792 +2024-09-22T00:44:23.757341Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3792 +2024-09-22T00:44:23.757364Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3792 +2024-09-22T00:44:23.765756Z INFO fork_choice_control::block_processor: Validating block with slot: 4571 +2024-09-22T00:44:23.765787Z INFO fork_choice_control::block_processor: Validating block with slot: 4450 +2024-09-22T00:44:23.771503Z INFO fork_choice_control::block_processor: Validating block with slot: 3793 +2024-09-22T00:44:23.772463Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2f768a51000b44d1b2e41d70ffabaeb291366c084743c60cef6c127fe6c6aff9, slot: 3793 +2024-09-22T00:44:23.779040Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3793 +2024-09-22T00:44:23.779063Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3793 +2024-09-22T00:44:23.786379Z INFO fork_choice_control::block_processor: Validating block with slot: 4578 +2024-09-22T00:44:23.793865Z INFO fork_choice_control::block_processor: Validating block with slot: 3794 +2024-09-22T00:44:23.794962Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4f8a9b692c0aa471417dac10769d4bc2c52afaac9cc440ad774edbeae3c5c41a, slot: 3794 +2024-09-22T00:44:23.801632Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3794 +2024-09-22T00:44:23.801647Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3794 +2024-09-22T00:44:23.816219Z INFO fork_choice_control::block_processor: Validating block with slot: 3795 +2024-09-22T00:44:23.817912Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd0dc8b5df42e867f28991fb1be4e4c27d11b537aa7c025a4c2eaa6940dc1a628, slot: 3795 +2024-09-22T00:44:23.821024Z INFO fork_choice_control::block_processor: Validating block with slot: 4572 +2024-09-22T00:44:23.821074Z INFO fork_choice_control::block_processor: Validating block with slot: 4451 +2024-09-22T00:44:23.826663Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3795 +2024-09-22T00:44:23.826685Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3795 +2024-09-22T00:44:23.841364Z INFO fork_choice_control::block_processor: Validating block with slot: 3796 +2024-09-22T00:44:23.842608Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x78ee0bf76e1458e319e449b5eb50a17e1b2ba645ae40c9f3e34dbd7832e15a34, slot: 3796 +2024-09-22T00:44:23.842623Z INFO fork_choice_control::block_processor: Validating block with slot: 4580 +2024-09-22T00:44:23.848206Z INFO fork_choice_control::block_processor: Validating block with slot: 4574 +2024-09-22T00:44:23.849315Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3796 +2024-09-22T00:44:23.849334Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3796 +2024-09-22T00:44:23.864324Z INFO fork_choice_control::block_processor: Validating block with slot: 3797 +2024-09-22T00:44:23.866157Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfd55fb415ac07c9cc817520a748fd03a466351a10fb9445318fd174a9817ca04, slot: 3797 +2024-09-22T00:44:23.866441Z INFO fork_choice_control::block_processor: Validating block with slot: 4452 +2024-09-22T00:44:23.874663Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3797 +2024-09-22T00:44:23.874685Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3797 +2024-09-22T00:44:23.878673Z INFO fork_choice_control::block_processor: Validating block with slot: 4581 +2024-09-22T00:44:23.889877Z INFO fork_choice_control::block_processor: Validating block with slot: 3798 +2024-09-22T00:44:23.890839Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3e16e931f026b546825da75b4221413d06c3314e82717de758c7e6f317480d25, slot: 3798 +2024-09-22T00:44:23.897175Z INFO fork_choice_control::block_processor: Validating block with slot: 4575 +2024-09-22T00:44:23.898370Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3798 +2024-09-22T00:44:23.898386Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3798 +2024-09-22T00:44:23.910949Z INFO fork_choice_control::block_processor: Validating block with slot: 4453 +2024-09-22T00:44:23.913850Z INFO fork_choice_control::block_processor: Validating block with slot: 3799 +2024-09-22T00:44:23.914923Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb979001204eeb4aee8074e307dcb8e3598e292272e7b22b7890237547c11b699, slot: 3799 +2024-09-22T00:44:23.921641Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3799 +2024-09-22T00:44:23.921657Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3799 +2024-09-22T00:44:23.944112Z INFO fork_choice_control::block_processor: Validating block with slot: 3800 +2024-09-22T00:44:23.944100Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 117, root: 0xd8e1abef86a868a6390c1c7a1501a2db67f99d092a10774576bbef3083519038, head slot: 3799, head root: 0xb979001204eeb4aee8074e307dcb8e3598e292272e7b22b7890237547c11b699) +2024-09-22T00:44:23.945692Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4e7376480a1672aef49be3041433322e5c1911b366aa71801bd63c5c59833384, slot: 3800 +2024-09-22T00:44:23.945714Z INFO fork_choice_control::block_processor: Validating block with slot: 4454 +2024-09-22T00:44:23.945710Z INFO fork_choice_control::block_processor: Validating block with slot: 4582 +2024-09-22T00:44:23.958760Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3800 +2024-09-22T00:44:23.958788Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3800 +2024-09-22T00:44:23.976466Z INFO fork_choice_control::block_processor: Validating block with slot: 3801 +2024-09-22T00:44:23.978319Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf97c4b52ba391d9fad15101a1523eeb99293a14494a5a6442622b3bdbbe96fdf, slot: 3801 +2024-09-22T00:44:23.982139Z INFO fork_choice_control::block_processor: Validating block with slot: 4583 +2024-09-22T00:44:23.982284Z INFO fork_choice_control::block_processor: Validating block with slot: 4455 +2024-09-22T00:44:23.986959Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3801 +2024-09-22T00:44:23.986976Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3801 +2024-09-22T00:44:23.987595Z INFO fork_choice_control::block_processor: Validating block with slot: 4584 +2024-09-22T00:44:24.003354Z INFO fork_choice_control::block_processor: Validating block with slot: 3802 +2024-09-22T00:44:24.004760Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x071569a68dddda7330e782554675848d4c4095bb7c40812f6bfc317c8833fdd6, slot: 3802 +2024-09-22T00:44:24.012996Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3802 +2024-09-22T00:44:24.013019Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3802 +2024-09-22T00:44:24.018653Z INFO fork_choice_control::block_processor: Validating block with slot: 4456 +2024-09-22T00:44:24.023207Z INFO fork_choice_control::block_processor: Validating block with slot: 4585 +2024-09-22T00:44:24.029911Z INFO fork_choice_control::block_processor: Validating block with slot: 3803 +2024-09-22T00:44:24.030884Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xba621944318f9eb308064fc33350307d7eef5924f6c506da4ad51f83313c07d9, slot: 3803 +2024-09-22T00:44:24.035806Z INFO fork_choice_control::block_processor: Validating block with slot: 4457 +2024-09-22T00:44:24.037342Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3803 +2024-09-22T00:44:24.037354Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3803 +2024-09-22T00:44:24.054105Z INFO fork_choice_control::block_processor: Validating block with slot: 3804 +2024-09-22T00:44:24.055079Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc490e28f5571d5eb3b0f4f41f3fdd504a7292447ad986f9fba5b1cd12274d9ce, slot: 3804 +2024-09-22T00:44:24.057223Z INFO fork_choice_control::block_processor: Validating block with slot: 4586 +2024-09-22T00:44:24.061940Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3804 +2024-09-22T00:44:24.061958Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3804 +2024-09-22T00:44:24.067960Z INFO fork_choice_control::block_processor: Validating block with slot: 4458 +2024-09-22T00:44:24.078159Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 3744 +2024-09-22T00:44:24.078865Z INFO fork_choice_control::block_processor: Validating block with slot: 3805 +2024-09-22T00:44:24.079966Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbd37708e33247758946e097ae9dd4297576996451a9c4ba5ac55efeee8907ac7, slot: 3805 +2024-09-22T00:44:24.081588Z INFO fork_choice_control::block_processor: Validating block with slot: 4587 +2024-09-22T00:44:24.086581Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3805 +2024-09-22T00:44:24.086593Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3805 +2024-09-22T00:44:24.099391Z INFO fork_choice_control::block_processor: Validating block with slot: 4459 +2024-09-22T00:44:24.103679Z INFO fork_choice_control::block_processor: Validating block with slot: 3806 +2024-09-22T00:44:24.106202Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x534798c175056c0b616ecf2f167414915a1f7759cd456dd67a426b7ea509a23b, slot: 3806 +2024-09-22T00:44:24.115930Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3806 +2024-09-22T00:44:24.115946Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3806 +2024-09-22T00:44:24.133495Z INFO fork_choice_control::block_processor: Validating block with slot: 3807 +2024-09-22T00:44:24.133656Z INFO fork_choice_control::block_processor: Validating block with slot: 4588 +2024-09-22T00:44:24.133693Z INFO fork_choice_control::block_processor: Validating block with slot: 4460 +2024-09-22T00:44:24.134707Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x730c9166dfeb4cb4b790681a88abb8d975ce2dc7708c24a894b03a5c3fb0aea7, slot: 3807 +2024-09-22T00:44:24.141409Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3807 +2024-09-22T00:44:24.141429Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3807 +2024-09-22T00:44:24.154910Z INFO fork_choice_control::block_processor: Validating block with slot: 4589 +2024-09-22T00:44:24.159083Z INFO fork_choice_control::block_processor: Validating block with slot: 3808 +2024-09-22T00:44:24.160629Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc3d1207abbca36188f33e6d6517e92842fba1e355dac5f9ac81efbc095425c00, slot: 3808 +2024-09-22T00:44:24.163919Z INFO fork_choice_control::block_processor: Validating block with slot: 4461 +2024-09-22T00:44:24.175961Z INFO fork_choice_control::block_processor: Validating block with slot: 4590 +2024-09-22T00:44:24.191488Z INFO fork_choice_control::block_processor: Validating block with slot: 4462 +2024-09-22T00:44:24.206706Z INFO fork_choice_control::block_processor: Validating block with slot: 4591 +2024-09-22T00:44:24.216270Z INFO fork_choice_control::block_processor: Validating block with slot: 4463 +2024-09-22T00:44:24.251283Z INFO fork_choice_control::block_processor: Validating block with slot: 4593 +2024-09-22T00:44:24.257817Z INFO fork_choice_control::block_processor: Validating block with slot: 4465 +2024-09-22T00:44:24.263250Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3808 +2024-09-22T00:44:24.263266Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3808 +2024-09-22T00:44:24.273325Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3808) +2024-09-22T00:44:24.273517Z INFO fork_choice_control::block_processor: Validating block with slot: 3809 +2024-09-22T00:44:24.275446Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb3298d8c318aca535f1f9488c0ff72a792a51b2497435dd5fa4ea1b04cad6998, slot: 3809 +2024-09-22T00:44:24.287308Z INFO fork_choice_control::block_processor: Validating block with slot: 4466 +2024-09-22T00:44:24.287329Z INFO fork_choice_control::block_processor: Validating block with slot: 4594 +2024-09-22T00:44:24.300162Z INFO fork_choice_control::block_processor: Validating block with slot: 4595 +2024-09-22T00:44:24.334218Z INFO fork_choice_control::block_processor: Validating block with slot: 4596 +2024-09-22T00:44:24.334222Z INFO fork_choice_control::block_processor: Validating block with slot: 4467 +2024-09-22T00:44:24.348977Z INFO fork_choice_control::block_processor: Validating block with slot: 4468 +2024-09-22T00:44:24.350592Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3809 +2024-09-22T00:44:24.350606Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3809 +2024-09-22T00:44:24.361094Z INFO fork_choice_control::block_processor: Validating block with slot: 3810 +2024-09-22T00:44:24.363067Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5752a464bda83abe225634b30e8c8b25074cba1f926c283af0eeedc1d6f047e8, slot: 3810 +2024-09-22T00:44:24.366044Z INFO fork_choice_control::block_processor: Validating block with slot: 4597 +2024-09-22T00:44:24.372597Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3810 +2024-09-22T00:44:24.372614Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3810 +2024-09-22T00:44:24.380396Z INFO fork_choice_control::block_processor: Validating block with slot: 4469 +2024-09-22T00:44:24.383304Z INFO fork_choice_control::block_processor: Validating block with slot: 3811 +2024-09-22T00:44:24.384403Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5e01507d92c5eeb2dfe954aa64bd5861a7a66ac8a2ae97d6dd0a40f6170edac9, slot: 3811 +2024-09-22T00:44:24.395961Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3811 +2024-09-22T00:44:24.395977Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3811 +2024-09-22T00:44:24.407979Z INFO fork_choice_control::block_processor: Validating block with slot: 3812 +2024-09-22T00:44:24.408972Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xed666dd3ff136098fc0a81cbe473c068701e13235ae7ab40d22b02fe55ae5d65, slot: 3812 +2024-09-22T00:44:24.410257Z INFO fork_choice_control::block_processor: Validating block with slot: 4598 +2024-09-22T00:44:24.415407Z INFO fork_choice_control::block_processor: Validating block with slot: 4470 +2024-09-22T00:44:24.421258Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3812 +2024-09-22T00:44:24.421268Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3812 +2024-09-22T00:44:24.432481Z INFO fork_choice_control::block_processor: Validating block with slot: 3813 +2024-09-22T00:44:24.432667Z INFO fork_choice_control::block_processor: Validating block with slot: 4599 +2024-09-22T00:44:24.434115Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc8eb9da77ce6e0bc0167caa6c79dbd5cfda4aa48a105ffbb693d7adbde9d53fe, slot: 3813 +2024-09-22T00:44:24.442688Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3813 +2024-09-22T00:44:24.442707Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3813 +2024-09-22T00:44:24.447466Z INFO fork_choice_control::block_processor: Validating block with slot: 4600 +2024-09-22T00:44:24.447474Z INFO fork_choice_control::block_processor: Validating block with slot: 4471 +2024-09-22T00:44:24.454018Z INFO fork_choice_control::block_processor: Validating block with slot: 3814 +2024-09-22T00:44:24.455172Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa45fe979afa6c4a80f361e0eb9cfba9fafb400cd53dcbd0985aa7409f44c437e, slot: 3814 +2024-09-22T00:44:24.463158Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3814 +2024-09-22T00:44:24.463176Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3814 +2024-09-22T00:44:24.473014Z INFO fork_choice_control::block_processor: Validating block with slot: 4472 +2024-09-22T00:44:24.475029Z INFO fork_choice_control::block_processor: Validating block with slot: 3815 +2024-09-22T00:44:24.476152Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc14fa82c46b5be3442b4f8a4592be7c8fa98395161f2cca07c6c27e86d128b44, slot: 3815 +2024-09-22T00:44:24.482592Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3815 +2024-09-22T00:44:24.482610Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3815 +2024-09-22T00:44:24.488312Z INFO fork_choice_control::block_processor: Validating block with slot: 4601 +2024-09-22T00:44:24.494925Z INFO fork_choice_control::block_processor: Validating block with slot: 3816 +2024-09-22T00:44:24.496057Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x387d32b8fc484f4b2b90ecfb54b21b53a7ffc6202cf9cede62980fb77f7ccc70, slot: 3816 +2024-09-22T00:44:24.504196Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3816 +2024-09-22T00:44:24.504216Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3816 +2024-09-22T00:44:24.505418Z INFO fork_choice_control::block_processor: Validating block with slot: 4473 +2024-09-22T00:44:24.517235Z INFO fork_choice_control::block_processor: Validating block with slot: 3817 +2024-09-22T00:44:24.518211Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xec68d598eb026b039e736225aafbd008d51011159ccc7c6d0c01ebdb69e37487, slot: 3817 +2024-09-22T00:44:24.525058Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3817 +2024-09-22T00:44:24.525079Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3817 +2024-09-22T00:44:24.528912Z INFO fork_choice_control::block_processor: Validating block with slot: 4602 +2024-09-22T00:44:24.537408Z INFO fork_choice_control::block_processor: Validating block with slot: 3818 +2024-09-22T00:44:24.537841Z INFO fork_choice_control::block_processor: Validating block with slot: 4474 +2024-09-22T00:44:24.539396Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7471420f6ed6070d1ef62b0960fa1165040e79a6b9bd06a55171ef57298f27fe, slot: 3818 +2024-09-22T00:44:24.550318Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3818 +2024-09-22T00:44:24.550339Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3818 +2024-09-22T00:44:24.553767Z INFO fork_choice_control::block_processor: Validating block with slot: 4603 +2024-09-22T00:44:24.563926Z INFO fork_choice_control::block_processor: Validating block with slot: 3819 +2024-09-22T00:44:24.565282Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2061434cfaab62a81823ea4e1bc34e59dfb777faf4b434ea7a2b187b830b3728, slot: 3819 +2024-09-22T00:44:24.569836Z INFO fork_choice_control::block_processor: Validating block with slot: 4475 +2024-09-22T00:44:24.582952Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3819 +2024-09-22T00:44:24.583044Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3819 +2024-09-22T00:44:24.587367Z INFO fork_choice_control::block_processor: Validating block with slot: 4604 +2024-09-22T00:44:24.608847Z INFO fork_choice_control::block_processor: Validating block with slot: 4476 +2024-09-22T00:44:24.611566Z INFO fork_choice_control::block_processor: Validating block with slot: 3820 +2024-09-22T00:44:24.612853Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x169100d94153db32f911aa9fa1b24f7510fd71d2864faf3a608e6d5f5c9b2766, slot: 3820 +2024-09-22T00:44:24.619450Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3820 +2024-09-22T00:44:24.619474Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3820 +2024-09-22T00:44:24.623977Z INFO fork_choice_control::block_processor: Validating block with slot: 4605 +2024-09-22T00:44:24.632422Z INFO fork_choice_control::block_processor: Validating block with slot: 3821 +2024-09-22T00:44:24.634370Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd6f0b488389c7efec6199e1e97ade8a521ae6c939d75b76a1f90055c3dd42cb4, slot: 3821 +2024-09-22T00:44:24.644225Z INFO fork_choice_control::block_processor: Validating block with slot: 4477 +2024-09-22T00:44:24.650493Z INFO fork_choice_control::block_processor: Validating block with slot: 4606 +2024-09-22T00:44:24.654544Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3821 +2024-09-22T00:44:24.654560Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3821 +2024-09-22T00:44:24.664638Z INFO fork_choice_control::block_processor: Validating block with slot: 4478 +2024-09-22T00:44:24.670903Z INFO fork_choice_control::block_processor: Validating block with slot: 3822 +2024-09-22T00:44:24.672775Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9e09bb5c1be7c23906b0673c0b939e1d3311af6d5478fe472e3dd1a49d2e24fa, slot: 3822 +2024-09-22T00:44:24.674278Z INFO fork_choice_control::block_processor: Validating block with slot: 4607 +2024-09-22T00:44:24.681985Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3822 +2024-09-22T00:44:24.682004Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3822 +2024-09-22T00:44:24.695155Z INFO fork_choice_control::block_processor: Validating block with slot: 4479 +2024-09-22T00:44:24.695526Z INFO fork_choice_control::block_processor: Validating block with slot: 3823 +2024-09-22T00:44:24.696624Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4adbf2e19356157e3ea6d1f5e40c8283f3021839a79ee683dace12884092b1da, slot: 3823 +2024-09-22T00:44:24.703989Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3823 +2024-09-22T00:44:24.704009Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3823 +2024-09-22T00:44:24.711223Z INFO fork_choice_control::block_processor: Validating block with slot: 4608 +2024-09-22T00:44:24.720326Z INFO fork_choice_control::block_processor: Validating block with slot: 3824 +2024-09-22T00:44:24.722492Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf7695a305b84530960d48590b7f4c39ffeb92bf9da10c7e414a501c54ee3961f, slot: 3824 +2024-09-22T00:44:24.727181Z INFO fork_choice_control::block_processor: Validating block with slot: 4480 +2024-09-22T00:44:24.731581Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3824 +2024-09-22T00:44:24.731603Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3824 +2024-09-22T00:44:24.737922Z INFO fork_choice_control::block_processor: Validating block with slot: 4609 +2024-09-22T00:44:24.742149Z WARN discv5::service: FINDNODE request failed with partial results node_id=0x0d07..ece1 addr=106.75.37.148:50505 error=Timeout received=11 expected=3 +2024-09-22T00:44:24.745694Z INFO fork_choice_control::block_processor: Validating block with slot: 3825 +2024-09-22T00:44:24.746947Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x469d5240318f7afa874b382f24fdf18ac10ba4297a785c483a45dac4a1d47c0e, slot: 3825 +2024-09-22T00:44:24.753276Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3825 +2024-09-22T00:44:24.753288Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3825 +2024-09-22T00:44:24.767040Z INFO fork_choice_control::block_processor: Validating block with slot: 3826 +2024-09-22T00:44:24.768006Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfc50f57fcc0fb832f5360ede92f5c453b77d05c7ccad6feef0572deac52d5f92, slot: 3826 +2024-09-22T00:44:24.773743Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3826 +2024-09-22T00:44:24.773766Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3826 +2024-09-22T00:44:24.787403Z INFO fork_choice_control::block_processor: Validating block with slot: 3827 +2024-09-22T00:44:24.788393Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa1ad40680dc82193c61131ec4fc1ac83418a191008073c1f9c6fbb87e57fc640, slot: 3827 +2024-09-22T00:44:24.795188Z INFO fork_choice_control::block_processor: Validating block with slot: 4610 +2024-09-22T00:44:24.795307Z INFO fork_choice_control::block_processor: Validating block with slot: 4481 +2024-09-22T00:44:24.795598Z INFO fork_choice_control::block_processor: Validating block with slot: 4482 +2024-09-22T00:44:24.796725Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3827 +2024-09-22T00:44:24.796737Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3827 +2024-09-22T00:44:24.802642Z INFO fork_choice_control::block_processor: Validating block with slot: 4611 +2024-09-22T00:44:24.813081Z INFO fork_choice_control::block_processor: Validating block with slot: 3828 +2024-09-22T00:44:24.814251Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6285a5d912b213e7d3ecb153e0dd55899309a569213b6985d36a371d8a312cf1, slot: 3828 +2024-09-22T00:44:24.822441Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3828 +2024-09-22T00:44:24.822464Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3828 +2024-09-22T00:44:24.823054Z INFO fork_choice_control::block_processor: Validating block with slot: 4483 +2024-09-22T00:44:24.836749Z INFO fork_choice_control::block_processor: Validating block with slot: 3829 +2024-09-22T00:44:24.837743Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x060d7a8127f0b90601cdcbf54be333a7974e300edcfd74ae33ea794062342138, slot: 3829 +2024-09-22T00:44:24.839224Z INFO fork_choice_control::block_processor: Validating block with slot: 4612 +2024-09-22T00:44:24.845303Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3829 +2024-09-22T00:44:24.845324Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3829 +2024-09-22T00:44:24.858482Z INFO fork_choice_control::block_processor: Validating block with slot: 4484 +2024-09-22T00:44:24.859638Z INFO fork_choice_control::block_processor: Validating block with slot: 3830 +2024-09-22T00:44:24.860701Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7d3f7d7e41745942b20e9ca9af1fd48acf03cedd5687eef03684404c3178dcad, slot: 3830 +2024-09-22T00:44:24.865914Z INFO fork_choice_control::block_processor: Validating block with slot: 4613 +2024-09-22T00:44:24.867136Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3830 +2024-09-22T00:44:24.867148Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3830 +2024-09-22T00:44:24.881603Z INFO fork_choice_control::block_processor: Validating block with slot: 3831 +2024-09-22T00:44:24.881684Z INFO fork_choice_control::block_processor: Validating block with slot: 4485 +2024-09-22T00:44:24.883268Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd451ca26324f49917fa02d148ad0f78d377a47d6576f0e2bda6131d0ffe3e463, slot: 3831 +2024-09-22T00:44:24.891033Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3831 +2024-09-22T00:44:24.891056Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3831 +2024-09-22T00:44:24.895765Z INFO fork_choice_control::block_processor: Validating block with slot: 4615 +2024-09-22T00:44:24.897715Z INFO fork_choice_control::block_processor: Validating block with slot: 4486 +2024-09-22T00:44:24.911118Z INFO fork_choice_control::block_processor: Validating block with slot: 3832 +2024-09-22T00:44:24.911123Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 118, root: 0x21abe339721edb6972379d469139bd63492f92948a0e344300f6064304b8e368, head slot: 3831, head root: 0xd451ca26324f49917fa02d148ad0f78d377a47d6576f0e2bda6131d0ffe3e463) +2024-09-22T00:44:24.912373Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5274c66442c9714c046dba39aa7f37877362af46a094b0843a7d3f97a2ab2c84, slot: 3832 +2024-09-22T00:44:24.920176Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3832 +2024-09-22T00:44:24.920194Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3832 +2024-09-22T00:44:24.925536Z INFO fork_choice_control::block_processor: Validating block with slot: 4616 +2024-09-22T00:44:24.935541Z INFO fork_choice_control::block_processor: Validating block with slot: 3833 +2024-09-22T00:44:24.936514Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xca73702150daf6f6609f73d90c6e88d5732ac028703bd9cdbb7334e47321c58c, slot: 3833 +2024-09-22T00:44:24.943771Z INFO fork_choice_control::block_processor: Validating block with slot: 4487 +2024-09-22T00:44:24.944608Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3833 +2024-09-22T00:44:24.944639Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3833 +2024-09-22T00:44:24.959153Z INFO fork_choice_control::block_processor: Validating block with slot: 4617 +2024-09-22T00:44:24.960557Z INFO fork_choice_control::block_processor: Validating block with slot: 3834 +2024-09-22T00:44:24.961927Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x44d11083ef34f227637505d9e7b50123ba0e5d3f3071c17654f11ee65e5c26d3, slot: 3834 +2024-09-22T00:44:24.969556Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3834 +2024-09-22T00:44:24.969572Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3834 +2024-09-22T00:44:24.972059Z INFO fork_choice_control::block_processor: Validating block with slot: 4488 +2024-09-22T00:44:24.985797Z INFO fork_choice_control::block_processor: Validating block with slot: 3835 +2024-09-22T00:44:24.987931Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x624bb8f3052c0a602beb30196a65338a156567211781a4cf5a6e9fa0e998fab7, slot: 3835 +2024-09-22T00:44:25.001189Z INFO fork_choice_control::block_processor: Validating block with slot: 4618 +2024-09-22T00:44:25.002839Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3835 +2024-09-22T00:44:25.002854Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3835 +2024-09-22T00:44:25.005719Z INFO fork_choice_control::block_processor: Validating block with slot: 4489 +2024-09-22T00:44:25.019319Z INFO fork_choice_control::block_processor: Validating block with slot: 4619 +2024-09-22T00:44:25.022232Z INFO fork_choice_control::block_processor: Validating block with slot: 3837 +2024-09-22T00:44:25.024181Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xafe35c4822574cfbea8f6e1b7f54a8c684499e55649224e26ee9d19c3b061eae, slot: 3837 +2024-09-22T00:44:25.034554Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3837 +2024-09-22T00:44:25.034576Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3837 +2024-09-22T00:44:25.045612Z INFO fork_choice_control::block_processor: Validating block with slot: 4490 +2024-09-22T00:44:25.051048Z INFO fork_choice_control::block_processor: Validating block with slot: 3838 +2024-09-22T00:44:25.051643Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 3776 +2024-09-22T00:44:25.051979Z INFO fork_choice_control::block_processor: Validating block with slot: 4620 +2024-09-22T00:44:25.052417Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc016f87e369c0085f0ff87f346b2afb1662e9cc8837089e6684fb3deb28deb47, slot: 3838 +2024-09-22T00:44:25.060104Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3838 +2024-09-22T00:44:25.060123Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3838 +2024-09-22T00:44:25.066147Z INFO fork_choice_control::block_processor: Validating block with slot: 4491 +2024-09-22T00:44:25.077133Z INFO fork_choice_control::block_processor: Validating block with slot: 3839 +2024-09-22T00:44:25.078279Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x12322aee43323bf81d051ea3358255d345028446b1f51e647dd15e7ca311b05b, slot: 3839 +2024-09-22T00:44:25.085128Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3839 +2024-09-22T00:44:25.085144Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3839 +2024-09-22T00:44:25.085583Z INFO fork_choice_control::block_processor: Validating block with slot: 4621 +2024-09-22T00:44:25.097270Z INFO fork_choice_control::block_processor: Validating block with slot: 4492 +2024-09-22T00:44:25.101836Z INFO fork_choice_control::block_processor: Validating block with slot: 3841 +2024-09-22T00:44:25.103516Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xebeb981301c8745ce3579094034d731e121b7c6e6a0c47701f9dfadb42f6eeba, slot: 3841 +2024-09-22T00:44:25.115869Z INFO fork_choice_control::block_processor: Validating block with slot: 4622 +2024-09-22T00:44:25.121622Z INFO fork_choice_control::block_processor: Validating block with slot: 4493 +2024-09-22T00:44:25.146296Z INFO fork_choice_control::block_processor: Validating block with slot: 4623 +2024-09-22T00:44:25.272434Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3841 +2024-09-22T00:44:25.272457Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3841 +2024-09-22T00:44:25.282586Z INFO fork_choice_control::block_processor: Validating block with slot: 3842 +2024-09-22T00:44:25.283566Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xff7e487f83cbb6110b78957b5e3f55495ab24c67910d3ffba1e1d979020bbb2e, slot: 3842 +2024-09-22T00:44:25.289682Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3842 +2024-09-22T00:44:25.289703Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3842 +2024-09-22T00:44:25.299811Z INFO fork_choice_control::block_processor: Validating block with slot: 3843 +2024-09-22T00:44:25.301587Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4097153438292787188da5fe96d426cdd331a8af3600679c74b94f930e6e4fbe, slot: 3843 +2024-09-22T00:44:25.311253Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3843 +2024-09-22T00:44:25.311273Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3843 +2024-09-22T00:44:25.321652Z INFO fork_choice_control::block_processor: Validating block with slot: 3844 +2024-09-22T00:44:25.322882Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa79e8c9cd839d8c6aca5fa898666e0a12cdbc79da4837700b72453a899687ca0, slot: 3844 +2024-09-22T00:44:25.329936Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3844 +2024-09-22T00:44:25.329953Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3844 +2024-09-22T00:44:25.340613Z INFO fork_choice_control::block_processor: Validating block with slot: 3845 +2024-09-22T00:44:25.341891Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7280173f7325bb4a3433aa7b047243f021425396e0e4768d709d753be240bc17, slot: 3845 +2024-09-22T00:44:25.348662Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3845 +2024-09-22T00:44:25.348676Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3845 +2024-09-22T00:44:25.364353Z INFO fork_choice_control::block_processor: Validating block with slot: 3847 +2024-09-22T00:44:25.366029Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x003524cfb4fa783d4ef59e2c410ec8c8c59b3a216155b354942245ae432a5aa4, slot: 3847 +2024-09-22T00:44:25.375337Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3847 +2024-09-22T00:44:25.375356Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3847 +2024-09-22T00:44:25.386351Z INFO fork_choice_control::block_processor: Validating block with slot: 3848 +2024-09-22T00:44:25.388429Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4f90b1b62460e5c2efe3bbbbc73cadba2087f705985298548d0dc60e35a562dd, slot: 3848 +2024-09-22T00:44:25.396970Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3848 +2024-09-22T00:44:25.396985Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3848 +2024-09-22T00:44:25.408616Z INFO fork_choice_control::block_processor: Validating block with slot: 3849 +2024-09-22T00:44:25.410142Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1ce7fce50b70f11ad09c1ebcd936a3919300cbf822ef176fee60421fcc0038f2, slot: 3849 +2024-09-22T00:44:25.417144Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3849 +2024-09-22T00:44:25.417157Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3849 +2024-09-22T00:44:25.429014Z INFO fork_choice_control::block_processor: Validating block with slot: 3850 +2024-09-22T00:44:25.430118Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x92597c7fff1fa3da9ed46e67faade87d4371cddfdd44ff93737557f07a9fa3c4, slot: 3850 +2024-09-22T00:44:25.436322Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3850 +2024-09-22T00:44:25.436338Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3850 +2024-09-22T00:44:25.448508Z INFO fork_choice_control::block_processor: Validating block with slot: 3851 +2024-09-22T00:44:25.449477Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x73ecb1eaefc4be0456be23abe64703cfbd60224b72bb2ce12694cfe3eec4984d, slot: 3851 +2024-09-22T00:44:25.455010Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3851 +2024-09-22T00:44:25.455021Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3851 +2024-09-22T00:44:25.466925Z INFO fork_choice_control::block_processor: Validating block with slot: 3852 +2024-09-22T00:44:25.468007Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x26941d0fc253d8635beb2748803a512d638a5b799ae5ce454eaedcca7a2fb88d, slot: 3852 +2024-09-22T00:44:25.473924Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3852 +2024-09-22T00:44:25.473955Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3852 +2024-09-22T00:44:25.486031Z INFO fork_choice_control::block_processor: Validating block with slot: 3853 +2024-09-22T00:44:25.487379Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe0cd323673b49f96b44e072c0fd66bbbef5c733571de776fd60a6d9d031de762, slot: 3853 +2024-09-22T00:44:25.494256Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3853 +2024-09-22T00:44:25.494276Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3853 +2024-09-22T00:44:25.507411Z INFO fork_choice_control::block_processor: Validating block with slot: 3854 +2024-09-22T00:44:25.508378Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1f884a734e442a0fc63c9ca6ca2bb76d6e2c3a797cfc8868e7285da56d7e819d, slot: 3854 +2024-09-22T00:44:25.509308Z INFO fork_choice_control::block_processor: Validating block with slot: 4494 +2024-09-22T00:44:25.509360Z INFO fork_choice_control::block_processor: Validating block with slot: 4624 +2024-09-22T00:44:25.509431Z INFO fork_choice_control::block_processor: Validating block with slot: 4495 +2024-09-22T00:44:25.518307Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3854 +2024-09-22T00:44:25.518324Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3854 +2024-09-22T00:44:25.531552Z INFO fork_choice_control::block_processor: Validating block with slot: 3855 +2024-09-22T00:44:25.532807Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa6a79322822cf98881c794be5d808fc1446b33478ae8c4722a2161f8ae1f4b39, slot: 3855 +2024-09-22T00:44:25.540590Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3855 +2024-09-22T00:44:25.540611Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3855 +2024-09-22T00:44:25.543199Z INFO fork_choice_control::block_processor: Validating block with slot: 4627 +2024-09-22T00:44:25.543208Z INFO fork_choice_control::block_processor: Validating block with slot: 4629 +2024-09-22T00:44:25.543227Z INFO fork_choice_control::block_processor: Validating block with slot: 4630 +2024-09-22T00:44:25.544314Z INFO fork_choice_control::block_processor: Validating block with slot: 4631 +2024-09-22T00:44:25.544443Z INFO fork_choice_control::block_processor: Validating block with slot: 4632 +2024-09-22T00:44:25.545224Z INFO fork_choice_control::block_processor: Validating block with slot: 4628 +2024-09-22T00:44:25.545257Z INFO fork_choice_control::block_processor: Validating block with slot: 4633 +2024-09-22T00:44:25.545881Z INFO fork_choice_control::block_processor: Validating block with slot: 4496 +2024-09-22T00:44:25.546194Z INFO fork_choice_control::block_processor: Validating block with slot: 4634 +2024-09-22T00:44:25.546441Z INFO fork_choice_control::block_processor: Validating block with slot: 4497 +2024-09-22T00:44:25.547097Z INFO fork_choice_control::block_processor: Validating block with slot: 4498 +2024-09-22T00:44:25.547661Z INFO fork_choice_control::block_processor: Validating block with slot: 4635 +2024-09-22T00:44:25.548612Z INFO fork_choice_control::block_processor: Validating block with slot: 4636 +2024-09-22T00:44:25.548876Z INFO fork_choice_control::block_processor: Validating block with slot: 4499 +2024-09-22T00:44:25.548975Z INFO fork_choice_control::block_processor: Validating block with slot: 4500 +2024-09-22T00:44:25.549552Z INFO fork_choice_control::block_processor: Validating block with slot: 4501 +2024-09-22T00:44:25.549813Z INFO fork_choice_control::block_processor: Validating block with slot: 4637 +2024-09-22T00:44:25.549913Z INFO fork_choice_control::block_processor: Validating block with slot: 4502 +2024-09-22T00:44:25.550948Z INFO fork_choice_control::block_processor: Validating block with slot: 4503 +2024-09-22T00:44:25.550914Z INFO fork_choice_control::block_processor: Validating block with slot: 4505 +2024-09-22T00:44:25.550988Z INFO fork_choice_control::block_processor: Validating block with slot: 4506 +2024-09-22T00:44:25.551777Z INFO fork_choice_control::block_processor: Validating block with slot: 4504 +2024-09-22T00:44:25.555086Z INFO fork_choice_control::block_processor: Validating block with slot: 3856 +2024-09-22T00:44:25.555107Z INFO fork_choice_control::block_processor: Validating block with slot: 4638 +2024-09-22T00:44:25.556175Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd10b3af3d1672d4cd2b73178a987929820ea9529057fa1e592ecfc26938d935c, slot: 3856 +2024-09-22T00:44:25.562169Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3856 +2024-09-22T00:44:25.562187Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3856 +2024-09-22T00:44:25.566689Z INFO fork_choice_control::block_processor: Validating block with slot: 4507 +2024-09-22T00:44:25.575317Z INFO fork_choice_control::block_processor: Validating block with slot: 3857 +2024-09-22T00:44:25.576291Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb8bbdf1547a51f1e570e2789ce5fbc739aba0433bd34ec1a6d6444a0b832da51, slot: 3857 +2024-09-22T00:44:25.583001Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3857 +2024-09-22T00:44:25.583016Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3857 +2024-09-22T00:44:25.589648Z INFO fork_choice_control::block_processor: Validating block with slot: 4639 +2024-09-22T00:44:25.596705Z INFO fork_choice_control::block_processor: Validating block with slot: 4508 +2024-09-22T00:44:25.599019Z INFO fork_choice_control::block_processor: Validating block with slot: 3858 +2024-09-22T00:44:25.600234Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x25d0d5092328899062629c2ab6c064d53401a2c1989f92fcdf964a345f0ee3a7, slot: 3858 +2024-09-22T00:44:25.607793Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3858 +2024-09-22T00:44:25.607822Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3858 +2024-09-22T00:44:25.615800Z INFO fork_choice_control::block_processor: Validating block with slot: 4509 +2024-09-22T00:44:25.622343Z INFO fork_choice_control::block_processor: Validating block with slot: 3859 +2024-09-22T00:44:25.623601Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8704f2ea9021da08f5156622ff24d4cad89ff0fdef3cb7d721a9c5625fff4d34, slot: 3859 +2024-09-22T00:44:25.629511Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3859 +2024-09-22T00:44:25.629546Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3859 +2024-09-22T00:44:25.634423Z INFO fork_choice_control::block_processor: Validating block with slot: 4510 +2024-09-22T00:44:25.643391Z INFO fork_choice_control::block_processor: Validating block with slot: 3860 +2024-09-22T00:44:25.644918Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x88b4bb94addc69e7b18689a8dae893a2af653b56caf1a72ebbad655b03708aac, slot: 3860 +2024-09-22T00:44:25.652084Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3860 +2024-09-22T00:44:25.652103Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3860 +2024-09-22T00:44:25.665773Z INFO fork_choice_control::block_processor: Validating block with slot: 3861 +2024-09-22T00:44:25.667552Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x179c1873eedcc5d3e80c63520e54e5918f195f4c08c44b55b3672974936e151f, slot: 3861 +2024-09-22T00:44:25.675416Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3861 +2024-09-22T00:44:25.675437Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3861 +2024-09-22T00:44:25.689171Z INFO fork_choice_control::block_processor: Validating block with slot: 3862 +2024-09-22T00:44:25.690576Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7ce09585ad8dc75cea425f3730c53e2973d2feaddaa66bd261348372867b840f, slot: 3862 +2024-09-22T00:44:25.697109Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3862 +2024-09-22T00:44:25.697124Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3862 +2024-09-22T00:44:25.711345Z INFO fork_choice_control::block_processor: Validating block with slot: 3863 +2024-09-22T00:44:25.712570Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x044a6b4f7ca70c993a7f20d04b414f1e7254c92e1a9782bf1ca643673a0a90ca, slot: 3863 +2024-09-22T00:44:25.718692Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3863 +2024-09-22T00:44:25.718705Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3863 +2024-09-22T00:44:25.752226Z INFO fork_choice_control::block_processor: Validating block with slot: 4511 +2024-09-22T00:44:25.784020Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 119, root: 0xc3d1207abbca36188f33e6d6517e92842fba1e355dac5f9ac81efbc095425c00, head slot: 3863, head root: 0x044a6b4f7ca70c993a7f20d04b414f1e7254c92e1a9782bf1ca643673a0a90ca) +2024-09-22T00:44:25.784034Z INFO fork_choice_control::block_processor: Validating block with slot: 3864 +2024-09-22T00:44:25.785383Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc4aece65cc535a3b591d886ff6475123fa018928c0c4be71f6ad107b2651707f, slot: 3864 +2024-09-22T00:44:25.792786Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3864 +2024-09-22T00:44:25.792809Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3864 +2024-09-22T00:44:25.808103Z INFO fork_choice_control::block_processor: Validating block with slot: 3865 +2024-09-22T00:44:25.809937Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf8ce0eb7cc8132273daf1cbc34d6bdbb0773a9252dec6acd6ea608e9dba9aca3, slot: 3865 +2024-09-22T00:44:25.819083Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3865 +2024-09-22T00:44:25.819098Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3865 +2024-09-22T00:44:25.834447Z INFO fork_choice_control::block_processor: Validating block with slot: 3866 +2024-09-22T00:44:25.835615Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd6a9916c2d44294d962c55c127ef08c3a2facfd71115abbfae9624d123086429, slot: 3866 +2024-09-22T00:44:25.845580Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3866 +2024-09-22T00:44:25.845606Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3866 +2024-09-22T00:44:25.862326Z INFO fork_choice_control::block_processor: Validating block with slot: 3867 +2024-09-22T00:44:25.863462Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x53f69afb99d7eb3126f450ac89103885dca307e21c30c7b79d1ed7ff0d128a06, slot: 3867 +2024-09-22T00:44:25.870476Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3867 +2024-09-22T00:44:25.870499Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3867 +2024-09-22T00:44:25.886211Z INFO fork_choice_control::block_processor: Validating block with slot: 3868 +2024-09-22T00:44:25.887195Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x209353058d6ff0be7d63faee3bfb97aba8e5d9fb562be7d9cc0c21777c98aff2, slot: 3868 +2024-09-22T00:44:25.894727Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3868 +2024-09-22T00:44:25.894746Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3868 +2024-09-22T00:44:25.910805Z INFO fork_choice_control::block_processor: Validating block with slot: 3869 +2024-09-22T00:44:25.912086Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x57ba9228e5e1422bc82fffadbfa4d00e5fa23f3bba6a53d6973d0bc7df5e5631, slot: 3869 +2024-09-22T00:44:25.914485Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 3808 +2024-09-22T00:44:25.919010Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3869 +2024-09-22T00:44:25.919023Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3869 +2024-09-22T00:44:25.934762Z INFO fork_choice_control::block_processor: Validating block with slot: 3870 +2024-09-22T00:44:25.936466Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xea20b2acb6facebbb62537307dcb77ce0bbf5e87800a2eca542ca384bdfca9e1, slot: 3870 +2024-09-22T00:44:25.945242Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3870 +2024-09-22T00:44:25.945261Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3870 +2024-09-22T00:44:25.961241Z INFO fork_choice_control::block_processor: Validating block with slot: 3871 +2024-09-22T00:44:25.962231Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4853757a6666937f1af0106ea0f4b1aef15bf803a8c6cdd4516913def5c095e4, slot: 3871 +2024-09-22T00:44:25.968602Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3871 +2024-09-22T00:44:25.968620Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3871 +2024-09-22T00:44:25.984764Z INFO fork_choice_control::block_processor: Validating block with slot: 3873 +2024-09-22T00:44:25.987306Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x693c48a58074681e8cecafcea93b6bdd8cd1a0c7f7c886579bbe4b0df67af0e2, slot: 3873 +2024-09-22T00:44:26.160495Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3873 +2024-09-22T00:44:26.160520Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3873 +2024-09-22T00:44:26.170824Z INFO fork_choice_control::block_processor: Validating block with slot: 3874 +2024-09-22T00:44:26.172391Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2126feb2a86cf333f01b15670176e6e90fd63acdf8ccebd02684524cd59df493, slot: 3874 +2024-09-22T00:44:26.180705Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3874 +2024-09-22T00:44:26.180724Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3874 +2024-09-22T00:44:26.191391Z INFO fork_choice_control::block_processor: Validating block with slot: 3875 +2024-09-22T00:44:26.192511Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4da1392e66f23974478d9ac4dba616c3f37ac2638058f63f42d1cfef4113df7e, slot: 3875 +2024-09-22T00:44:26.199829Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3875 +2024-09-22T00:44:26.199844Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3875 +2024-09-22T00:44:26.215416Z INFO fork_choice_control::block_processor: Validating block with slot: 3876 +2024-09-22T00:44:26.219169Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaa741ff1fe22f263e2d9ef38bcc0d675a3260ae0c9cb72054f1e3f0922fc9514, slot: 3876 +2024-09-22T00:44:26.241214Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3876 +2024-09-22T00:44:26.241237Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3876 +2024-09-22T00:44:26.258744Z INFO fork_choice_control::block_processor: Validating block with slot: 3877 +2024-09-22T00:44:26.260004Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x92dc3497ed41a3aa3a61a5e96d1cfefdd6f2b2516cf0ccc5be5ea08325a0a68c, slot: 3877 +2024-09-22T00:44:26.266286Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3877 +2024-09-22T00:44:26.266299Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3877 +2024-09-22T00:44:26.277542Z INFO fork_choice_control::block_processor: Validating block with slot: 3878 +2024-09-22T00:44:26.278526Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4d317a7194e07d34882490807ee430b60d99d18d28f5c3aa6fa528456a4d7a43, slot: 3878 +2024-09-22T00:44:26.286997Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3878 +2024-09-22T00:44:26.287014Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3878 +2024-09-22T00:44:26.298480Z INFO fork_choice_control::block_processor: Validating block with slot: 3879 +2024-09-22T00:44:26.299763Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc15b236eaf698d7ba6da350980dd9dbca1d6fc893ca256425120aae6234311de, slot: 3879 +2024-09-22T00:44:26.306821Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3879 +2024-09-22T00:44:26.306843Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3879 +2024-09-22T00:44:26.318123Z INFO fork_choice_control::block_processor: Validating block with slot: 3880 +2024-09-22T00:44:26.319081Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe70874aee2d3c20b59872a672122d9c128a1e4791b2fd5fdd97406296c92e2d3, slot: 3880 +2024-09-22T00:44:26.324668Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3880 +2024-09-22T00:44:26.324692Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3880 +2024-09-22T00:44:26.336307Z INFO fork_choice_control::block_processor: Validating block with slot: 3881 +2024-09-22T00:44:26.337511Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6101a1f3779a5d6d4272d33cecd58d9508d074619b5efe3ddf2c5118ecdb3868, slot: 3881 +2024-09-22T00:44:26.344320Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3881 +2024-09-22T00:44:26.344341Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3881 +2024-09-22T00:44:26.355675Z INFO fork_choice_control::block_processor: Validating block with slot: 3882 +2024-09-22T00:44:26.356783Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0b26bb763fc32366e805e07e97f4992d85d093846ea25c3abced3dd4861a21b9, slot: 3882 +2024-09-22T00:44:26.363011Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3882 +2024-09-22T00:44:26.363031Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3882 +2024-09-22T00:44:26.374898Z INFO fork_choice_control::block_processor: Validating block with slot: 3883 +2024-09-22T00:44:26.375898Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa75c313b643369ed98c2504ffc302eeb77b5e8a4e263dd7456bb5c97eb6336a7, slot: 3883 +2024-09-22T00:44:26.381873Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3883 +2024-09-22T00:44:26.381887Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3883 +2024-09-22T00:44:26.393719Z INFO fork_choice_control::block_processor: Validating block with slot: 3884 +2024-09-22T00:44:26.394679Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0badba07fef33c51de8782a3d7cb8e26976122b67bfa6408277d6afbb2890ea0, slot: 3884 +2024-09-22T00:44:26.400705Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3884 +2024-09-22T00:44:26.400718Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3884 +2024-09-22T00:44:26.412852Z INFO fork_choice_control::block_processor: Validating block with slot: 3885 +2024-09-22T00:44:26.413943Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4542274296e4d08c371f74128da50fb5a5adb196acfd5deb37ad9389ed5d9ea5, slot: 3885 +2024-09-22T00:44:26.419688Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3885 +2024-09-22T00:44:26.419710Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3885 +2024-09-22T00:44:26.432272Z INFO fork_choice_control::block_processor: Validating block with slot: 3886 +2024-09-22T00:44:26.434941Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcf4fd23c5a17be031fc569be939b4b8a95068a4ae60dfeef7903a3d8c371cfa5, slot: 3886 +2024-09-22T00:44:26.445841Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3886 +2024-09-22T00:44:26.445861Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3886 +2024-09-22T00:44:26.458713Z INFO fork_choice_control::block_processor: Validating block with slot: 3887 +2024-09-22T00:44:26.459702Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb915e092216684177f7775735d17b4421169c22b7ee5de7f9c841b14f404458a, slot: 3887 +2024-09-22T00:44:26.465159Z INFO fork_choice_control::block_processor: Validating block with slot: 4641 +2024-09-22T00:44:26.465170Z INFO fork_choice_control::block_processor: Validating block with slot: 4642 +2024-09-22T00:44:26.465196Z INFO fork_choice_control::block_processor: Validating block with slot: 4640 +2024-09-22T00:44:26.465830Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3887 +2024-09-22T00:44:26.465842Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3887 +2024-09-22T00:44:26.476494Z INFO fork_choice_control::block_processor: Validating block with slot: 4644 +2024-09-22T00:44:26.476546Z INFO fork_choice_control::block_processor: Validating block with slot: 4645 +2024-09-22T00:44:26.476827Z INFO fork_choice_control::block_processor: Validating block with slot: 4646 +2024-09-22T00:44:26.477455Z INFO fork_choice_control::block_processor: Validating block with slot: 4647 +2024-09-22T00:44:26.477841Z INFO fork_choice_control::block_processor: Validating block with slot: 4643 +2024-09-22T00:44:26.479915Z INFO fork_choice_control::block_processor: Validating block with slot: 3888 +2024-09-22T00:44:26.481148Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x299980e77a8105edb9ce2c11c485c113bd8ffe02aa0cb9d414b7fca72700d132, slot: 3888 +2024-09-22T00:44:26.490382Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3888 +2024-09-22T00:44:26.490403Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3888 +2024-09-22T00:44:26.504000Z INFO fork_choice_control::block_processor: Validating block with slot: 3889 +2024-09-22T00:44:26.505237Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0afcfa2e128982d13d03d1ae822387b5caa9cc34299cb00dfe3cf833e965cf80, slot: 3889 +2024-09-22T00:44:26.513292Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3889 +2024-09-22T00:44:26.513310Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3889 +2024-09-22T00:44:26.526975Z INFO fork_choice_control::block_processor: Validating block with slot: 3890 +2024-09-22T00:44:26.528638Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x634f92c06087ff7f104e6cc318aeacba6e1aa6ab6756ed418c66d1b781d412bf, slot: 3890 +2024-09-22T00:44:26.536526Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3890 +2024-09-22T00:44:26.536544Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3890 +2024-09-22T00:44:26.537775Z INFO fork_choice_control::block_processor: Validating block with slot: 4648 +2024-09-22T00:44:26.537811Z INFO fork_choice_control::block_processor: Validating block with slot: 4651 +2024-09-22T00:44:26.537834Z INFO fork_choice_control::block_processor: Validating block with slot: 4652 +2024-09-22T00:44:26.537841Z INFO fork_choice_control::block_processor: Validating block with slot: 4650 +2024-09-22T00:44:26.537879Z INFO fork_choice_control::block_processor: Validating block with slot: 4653 +2024-09-22T00:44:26.537909Z INFO fork_choice_control::block_processor: Validating block with slot: 4649 +2024-09-22T00:44:26.537942Z INFO fork_choice_control::block_processor: Validating block with slot: 4654 +2024-09-22T00:44:26.538769Z INFO fork_choice_control::block_processor: Validating block with slot: 4655 +2024-09-22T00:44:26.539069Z INFO fork_choice_control::block_processor: Validating block with slot: 4656 +2024-09-22T00:44:26.539516Z INFO fork_choice_control::block_processor: Validating block with slot: 4658 +2024-09-22T00:44:26.540129Z INFO fork_choice_control::block_processor: Validating block with slot: 4659 +2024-09-22T00:44:26.540590Z INFO fork_choice_control::block_processor: Validating block with slot: 4660 +2024-09-22T00:44:26.540914Z INFO fork_choice_control::block_processor: Validating block with slot: 4661 +2024-09-22T00:44:26.541068Z INFO fork_choice_control::block_processor: Validating block with slot: 4662 +2024-09-22T00:44:26.541323Z INFO fork_choice_control::block_processor: Validating block with slot: 4657 +2024-09-22T00:44:26.541802Z INFO fork_choice_control::block_processor: Validating block with slot: 4663 +2024-09-22T00:44:26.542284Z INFO fork_choice_control::block_processor: Validating block with slot: 4664 +2024-09-22T00:44:26.542360Z INFO fork_choice_control::block_processor: Validating block with slot: 4665 +2024-09-22T00:44:26.542872Z INFO fork_choice_control::block_processor: Validating block with slot: 4667 +2024-09-22T00:44:26.544294Z INFO fork_choice_control::block_processor: Validating block with slot: 4669 +2024-09-22T00:44:26.544293Z INFO fork_choice_control::block_processor: Validating block with slot: 4666 +2024-09-22T00:44:26.544373Z INFO fork_choice_control::block_processor: Validating block with slot: 4670 +2024-09-22T00:44:26.544981Z INFO fork_choice_control::block_processor: Validating block with slot: 4668 +2024-09-22T00:44:26.545058Z INFO fork_choice_control::block_processor: Validating block with slot: 4671 +2024-09-22T00:44:26.545307Z INFO fork_choice_control::block_processor: Validating block with slot: 4672 +2024-09-22T00:44:26.545507Z INFO fork_choice_control::block_processor: Validating block with slot: 4673 +2024-09-22T00:44:26.545993Z INFO fork_choice_control::block_processor: Validating block with slot: 4674 +2024-09-22T00:44:26.546388Z INFO fork_choice_control::block_processor: Validating block with slot: 4675 +2024-09-22T00:44:26.546576Z INFO fork_choice_control::block_processor: Validating block with slot: 4676 +2024-09-22T00:44:26.547467Z INFO fork_choice_control::block_processor: Validating block with slot: 4677 +2024-09-22T00:44:26.547519Z INFO fork_choice_control::block_processor: Validating block with slot: 4680 +2024-09-22T00:44:26.547599Z INFO fork_choice_control::block_processor: Validating block with slot: 4681 +2024-09-22T00:44:26.547927Z INFO fork_choice_control::block_processor: Validating block with slot: 4683 +2024-09-22T00:44:26.548610Z INFO fork_choice_control::block_processor: Validating block with slot: 4678 +2024-09-22T00:44:26.548734Z INFO fork_choice_control::block_processor: Validating block with slot: 4684 +2024-09-22T00:44:26.548945Z INFO fork_choice_control::block_processor: Validating block with slot: 4685 +2024-09-22T00:44:26.549947Z INFO fork_choice_control::block_processor: Validating block with slot: 4686 +2024-09-22T00:44:26.550286Z INFO fork_choice_control::block_processor: Validating block with slot: 4687 +2024-09-22T00:44:26.551016Z INFO fork_choice_control::block_processor: Validating block with slot: 4688 +2024-09-22T00:44:26.551166Z INFO fork_choice_control::block_processor: Validating block with slot: 3891 +2024-09-22T00:44:26.551731Z INFO fork_choice_control::block_processor: Validating block with slot: 4679 +2024-09-22T00:44:26.552111Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa78173aa1d92442a5659310bfc502bb736aacedad9bcb88a85668e98ad5d6df8, slot: 3891 +2024-09-22T00:44:26.558788Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3891 +2024-09-22T00:44:26.558806Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3891 +2024-09-22T00:44:26.572216Z INFO fork_choice_control::block_processor: Validating block with slot: 3892 +2024-09-22T00:44:26.573195Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xda86de8da0ced7fd091f72274ec86ad408774a728e5f03c4cd3d2cb671a5b38a, slot: 3892 +2024-09-22T00:44:26.580563Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3892 +2024-09-22T00:44:26.580585Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3892 +2024-09-22T00:44:26.594536Z INFO fork_choice_control::block_processor: Validating block with slot: 3893 +2024-09-22T00:44:26.596330Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0f0221718473dbe435061aeaecda7a926f889b39e6cf65ab42efa2b32772afd5, slot: 3893 +2024-09-22T00:44:26.604115Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3893 +2024-09-22T00:44:26.604134Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3893 +2024-09-22T00:44:26.618427Z INFO fork_choice_control::block_processor: Validating block with slot: 3894 +2024-09-22T00:44:26.619831Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x03c40c076e210d4ffbff6220c3b8f7ebfcb242b1129157e3262763313fca6bff, slot: 3894 +2024-09-22T00:44:26.627595Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3894 +2024-09-22T00:44:26.627612Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3894 +2024-09-22T00:44:26.642003Z INFO fork_choice_control::block_processor: Validating block with slot: 3895 +2024-09-22T00:44:26.643260Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8751a7f212f05cd0502aa5e888b257afcecab2dc5641e64193c6f71c3b0ab3ee, slot: 3895 +2024-09-22T00:44:26.649591Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3895 +2024-09-22T00:44:26.649608Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3895 +2024-09-22T00:44:26.678943Z INFO fork_choice_control::block_processor: Validating block with slot: 4689 +2024-09-22T00:44:26.714637Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 120, root: 0x12322aee43323bf81d051ea3358255d345028446b1f51e647dd15e7ca311b05b, head slot: 3895, head root: 0x8751a7f212f05cd0502aa5e888b257afcecab2dc5641e64193c6f71c3b0ab3ee) +2024-09-22T00:44:26.714701Z INFO fork_choice_control::block_processor: Validating block with slot: 3896 +2024-09-22T00:44:26.715753Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x45a6f036ca7ec1886682c77130ceb289be6b236731b1d948cfb7b265c711f403, slot: 3896 +2024-09-22T00:44:26.722082Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3896 +2024-09-22T00:44:26.722097Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3896 +2024-09-22T00:44:26.736765Z INFO fork_choice_control::block_processor: Validating block with slot: 3897 +2024-09-22T00:44:26.737727Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd6c63f2d5ac3483b8ddf4bc703071c169ac746d8cde2949bec5fde5c268445e5, slot: 3897 +2024-09-22T00:44:26.744000Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3897 +2024-09-22T00:44:26.744020Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3897 +2024-09-22T00:44:26.758980Z INFO fork_choice_control::block_processor: Validating block with slot: 3898 +2024-09-22T00:44:26.759971Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe2f3bc9ebf42bf8cb050edc9cb044c436c540f308b94847b0835f002bdd7f284, slot: 3898 +2024-09-22T00:44:26.765951Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3898 +2024-09-22T00:44:26.765963Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3898 +2024-09-22T00:44:26.781050Z INFO fork_choice_control::block_processor: Validating block with slot: 3899 +2024-09-22T00:44:26.782030Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfb9e8165369809d5afbe5fd009e90601bdad5b8276829964d501e9246aa81762, slot: 3899 +2024-09-22T00:44:26.788941Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3899 +2024-09-22T00:44:26.788964Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3899 +2024-09-22T00:44:26.801137Z INFO fork_choice_control::block_processor: Validating block with slot: 4690 +2024-09-22T00:44:26.804241Z INFO fork_choice_control::block_processor: Validating block with slot: 3900 +2024-09-22T00:44:26.805187Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe8e46ca648601b5cf52f7f09864d6de7a983f7efdf3edbc1288129d82cb06749, slot: 3900 +2024-09-22T00:44:26.811104Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3900 +2024-09-22T00:44:26.811127Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3900 +2024-09-22T00:44:26.823849Z INFO fork_choice_control::block_processor: Validating block with slot: 4768 +2024-09-22T00:44:26.826658Z INFO fork_choice_control::block_processor: Validating block with slot: 3901 +2024-09-22T00:44:26.828019Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xced8c5f7e6548a9bc733093c100d63118f8a05b89cde54310ce46527fffd08f2, slot: 3901 +2024-09-22T00:44:26.831380Z INFO fork_choice_control::block_processor: Validating block with slot: 4704 +2024-09-22T00:44:26.834798Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3901 +2024-09-22T00:44:26.834808Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3901 +2024-09-22T00:44:26.850719Z INFO fork_choice_control::block_processor: Validating block with slot: 3902 +2024-09-22T00:44:26.851705Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb237ac67865cd7f040f524340178c021e81db5aed6b0251994375d99902219e2, slot: 3902 +2024-09-22T00:44:26.857724Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3902 +2024-09-22T00:44:26.857747Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3902 +2024-09-22T00:44:26.858209Z INFO fork_choice_control::block_processor: Validating block with slot: 4691 +2024-09-22T00:44:26.863093Z INFO fork_choice_control::block_processor: Validating block with slot: 4769 +2024-09-22T00:44:26.874061Z INFO fork_choice_control::block_processor: Validating block with slot: 3903 +2024-09-22T00:44:26.875391Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd742d6adc3817f323c8f7c49abb855006ebe033405198e14dc977dccfa0af58a, slot: 3903 +2024-09-22T00:44:26.883923Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3903 +2024-09-22T00:44:26.883947Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3903 +2024-09-22T00:44:26.884411Z INFO fork_choice_control::block_processor: Validating block with slot: 4705 +2024-09-22T00:44:26.898469Z INFO fork_choice_control::block_processor: Validating block with slot: 4692 +2024-09-22T00:44:26.905976Z INFO fork_choice_control::block_processor: Validating block with slot: 4770 +2024-09-22T00:44:26.908136Z INFO fork_choice_control::block_processor: Validating block with slot: 3904 +2024-09-22T00:44:26.910086Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe63b71828b1d135153d3bc14d6e863db1a5a97b03635e9af207784bbb584cb93, slot: 3904 +2024-09-22T00:44:26.947231Z INFO fork_choice_control::block_processor: Validating block with slot: 4706 +2024-09-22T00:44:26.947235Z INFO fork_choice_control::block_processor: Validating block with slot: 4693 +2024-09-22T00:44:26.962020Z INFO fork_choice_control::block_processor: Validating block with slot: 4771 +2024-09-22T00:44:26.975611Z INFO fork_choice_control::block_processor: Validating block with slot: 4707 +2024-09-22T00:44:26.996449Z INFO fork_choice_control::block_processor: Validating block with slot: 4694 +2024-09-22T00:44:27.005886Z INFO fork_choice_control::block_processor: Validating block with slot: 4772 +2024-09-22T00:44:27.019878Z INFO fork_choice_control::block_processor: Validating block with slot: 4708 +2024-09-22T00:44:27.037195Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3904 +2024-09-22T00:44:27.037261Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3904 +2024-09-22T00:44:27.048862Z INFO fork_choice_control::block_processor: Validating block with slot: 4695 +2024-09-22T00:44:27.051529Z INFO fork_choice_control::block_processor: Validating block with slot: 4773 +2024-09-22T00:44:27.053409Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3904) +2024-09-22T00:44:27.053686Z INFO fork_choice_control::block_processor: Validating block with slot: 3905 +2024-09-22T00:44:27.057898Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf93301fdb7969f5d08a574b6ae52fec7f25a88f180e8f1b5842178d8d5c189a5, slot: 3905 +2024-09-22T00:44:27.069680Z INFO fork_choice_control::block_processor: Validating block with slot: 4709 +2024-09-22T00:44:27.091610Z INFO fork_choice_control::block_processor: Validating block with slot: 4696 +2024-09-22T00:44:27.106348Z INFO fork_choice_control::block_processor: Validating block with slot: 4774 +2024-09-22T00:44:27.116792Z INFO fork_choice_control::block_processor: Validating block with slot: 4710 +2024-09-22T00:44:27.128011Z INFO fork_choice_control::block_processor: Validating block with slot: 4697 +2024-09-22T00:44:27.143875Z INFO fork_choice_control::block_processor: Validating block with slot: 4775 +2024-09-22T00:44:27.164190Z INFO fork_choice_control::block_processor: Validating block with slot: 4711 +2024-09-22T00:44:27.165634Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3905 +2024-09-22T00:44:27.165647Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3905 +2024-09-22T00:44:27.176409Z INFO fork_choice_control::block_processor: Validating block with slot: 3906 +2024-09-22T00:44:27.177399Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7dc02d207fbcb02c7bf50a206e4ace21c2d3ac4acd9419cda4cd974909f6f214, slot: 3906 +2024-09-22T00:44:27.178369Z INFO fork_choice_control::block_processor: Validating block with slot: 4698 +2024-09-22T00:44:27.184703Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3906 +2024-09-22T00:44:27.184714Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3906 +2024-09-22T00:44:27.195535Z INFO fork_choice_control::block_processor: Validating block with slot: 3907 +2024-09-22T00:44:27.199395Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x990805974625b07a93d78ab3c8460207c8322945be555bb6ff8c4b9069c46116, slot: 3907 +2024-09-22T00:44:27.201183Z INFO fork_choice_control::block_processor: Validating block with slot: 4776 +2024-09-22T00:44:27.208692Z INFO fork_choice_control::block_processor: Validating block with slot: 4712 +2024-09-22T00:44:27.214001Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3907 +2024-09-22T00:44:27.214018Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3907 +2024-09-22T00:44:27.223947Z INFO fork_choice_control::block_processor: Validating block with slot: 4699 +2024-09-22T00:44:27.225356Z INFO fork_choice_control::block_processor: Validating block with slot: 3908 +2024-09-22T00:44:27.226675Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8a952c4ae1a13e0883401e81fb772b0789c62c1101c1d79b036c67cfdd8f13b0, slot: 3908 +2024-09-22T00:44:27.233837Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3908 +2024-09-22T00:44:27.233852Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3908 +2024-09-22T00:44:27.237773Z INFO fork_choice_control::block_processor: Validating block with slot: 4777 +2024-09-22T00:44:27.245468Z INFO fork_choice_control::block_processor: Validating block with slot: 3910 +2024-09-22T00:44:27.248291Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfbd2dede5c42e282da5d28cbb15cb938dbec16117f133223e251921d96b54410, slot: 3910 +2024-09-22T00:44:27.256790Z INFO fork_choice_control::block_processor: Validating block with slot: 4713 +2024-09-22T00:44:27.263032Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3910 +2024-09-22T00:44:27.263053Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3910 +2024-09-22T00:44:27.274986Z INFO fork_choice_control::block_processor: Validating block with slot: 3912 +2024-09-22T00:44:27.276637Z INFO fork_choice_control::block_processor: Validating block with slot: 4700 +2024-09-22T00:44:27.276949Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7a40a8f175d469a41ee8ef9792a26a1ec05cc771e6bdef4dd26168f95dc4b665, slot: 3912 +2024-09-22T00:44:27.287482Z INFO fork_choice_control::block_processor: Validating block with slot: 4778 +2024-09-22T00:44:27.288608Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3912 +2024-09-22T00:44:27.288621Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3912 +2024-09-22T00:44:27.300958Z INFO fork_choice_control::block_processor: Validating block with slot: 3913 +2024-09-22T00:44:27.301950Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3cf2ee39cdb07b98283e4ea60091461da22b3ae90ed89340d35eafe2b3877c60, slot: 3913 +2024-09-22T00:44:27.306883Z INFO fork_choice_control::block_processor: Validating block with slot: 4715 +2024-09-22T00:44:27.310168Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3913 +2024-09-22T00:44:27.310197Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3913 +2024-09-22T00:44:27.317597Z INFO fork_choice_control::block_processor: Validating block with slot: 4701 +2024-09-22T00:44:27.325413Z INFO fork_choice_control::block_processor: Validating block with slot: 3915 +2024-09-22T00:44:27.327649Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcca4a2b1eb4abdf3563c35d5bd2d615d872a84bea1cbfaf03520c1727ab9a4f6, slot: 3915 +2024-09-22T00:44:27.338867Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3915 +2024-09-22T00:44:27.338884Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3915 +2024-09-22T00:44:27.351135Z INFO fork_choice_control::block_processor: Validating block with slot: 4779 +2024-09-22T00:44:27.351356Z INFO fork_choice_control::block_processor: Validating block with slot: 3916 +2024-09-22T00:44:27.352398Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3c51baef573b42083baa1b60fd843923207ec8cc2d8e94b81b62f46fa5c2dbf1, slot: 3916 +2024-09-22T00:44:27.358611Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3916 +2024-09-22T00:44:27.358630Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3916 +2024-09-22T00:44:27.362244Z INFO fork_choice_control::block_processor: Validating block with slot: 4716 +2024-09-22T00:44:27.363880Z INFO fork_choice_control::block_processor: Validating block with slot: 4702 +2024-09-22T00:44:27.371440Z INFO fork_choice_control::block_processor: Validating block with slot: 3918 +2024-09-22T00:44:27.373288Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdc68c744bf85f7f952d0444ca802d507e31d339668b4a9311a46a9ea7d1a1482, slot: 3918 +2024-09-22T00:44:27.381553Z INFO fork_choice_control::block_processor: Validating block with slot: 4780 +2024-09-22T00:44:27.383324Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3918 +2024-09-22T00:44:27.383337Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3918 +2024-09-22T00:44:27.396675Z INFO fork_choice_control::block_processor: Validating block with slot: 3919 +2024-09-22T00:44:27.397672Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7342df4d8d949f9ee3181691b67454dec8c55ce57d441f73e8c305cc606100f3, slot: 3919 +2024-09-22T00:44:27.406303Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3919 +2024-09-22T00:44:27.406323Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3919 +2024-09-22T00:44:27.412215Z INFO fork_choice_control::block_processor: Validating block with slot: 4717 +2024-09-22T00:44:27.412231Z INFO fork_choice_control::block_processor: Validating block with slot: 4703 +2024-09-22T00:44:27.419420Z INFO fork_choice_control::block_processor: Validating block with slot: 3920 +2024-09-22T00:44:27.420407Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x15b4246d21460a778c6dfe45bfc0c65270c0db591a18f4804545fd37c1115793, slot: 3920 +2024-09-22T00:44:27.426920Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3920 +2024-09-22T00:44:27.426943Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3920 +2024-09-22T00:44:27.434899Z INFO fork_choice_control::block_processor: Validating block with slot: 4781 +2024-09-22T00:44:27.441418Z INFO fork_choice_control::block_processor: Validating block with slot: 3921 +2024-09-22T00:44:27.442070Z INFO fork_choice_control::block_processor: Validating block with slot: 4718 +2024-09-22T00:44:27.442561Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x339ee62254cd888bc69ed1f6f62f0042a3c6211ca5fbfcbc81a2100943c1aead, slot: 3921 +2024-09-22T00:44:27.466355Z INFO fork_choice_control::block_processor: Validating block with slot: 4782 +2024-09-22T00:44:27.470334Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3921 +2024-09-22T00:44:27.470359Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3921 +2024-09-22T00:44:27.480169Z INFO fork_choice_control::block_processor: Validating block with slot: 4719 +2024-09-22T00:44:27.489038Z INFO fork_choice_control::block_processor: Validating block with slot: 4783 +2024-09-22T00:44:27.489625Z INFO fork_choice_control::block_processor: Validating block with slot: 3922 +2024-09-22T00:44:27.492292Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x17fd14a88d9f937fbfadd23280c4b52cabcf643e728ccdf6121ee9a1a8f3eb76, slot: 3922 +2024-09-22T00:44:27.502096Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3922 +2024-09-22T00:44:27.502116Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3922 +2024-09-22T00:44:27.516450Z INFO fork_choice_control::block_processor: Validating block with slot: 3923 +2024-09-22T00:44:27.517873Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd1e2b89106847bed0c8a1ce84f1182bb5b07be90b7432bfd4559cc750bc50055, slot: 3923 +2024-09-22T00:44:27.518346Z INFO fork_choice_control::block_processor: Validating block with slot: 4720 +2024-09-22T00:44:27.520381Z INFO fork_choice_control::block_processor: Validating block with slot: 4784 +2024-09-22T00:44:27.526235Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3923 +2024-09-22T00:44:27.526258Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3923 +2024-09-22T00:44:27.535879Z INFO fork_choice_control::block_processor: Validating block with slot: 4721 +2024-09-22T00:44:27.540437Z INFO fork_choice_control::block_processor: Validating block with slot: 3924 +2024-09-22T00:44:27.542305Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x08d0bfff92aa9ba8ad2fe31b9de2ad27d3e82a66890790ebc4248aeeb7216876, slot: 3924 +2024-09-22T00:44:27.549329Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3924 +2024-09-22T00:44:27.549347Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3924 +2024-09-22T00:44:27.550155Z INFO fork_choice_control::block_processor: Validating block with slot: 4785 +2024-09-22T00:44:27.563582Z INFO fork_choice_control::block_processor: Validating block with slot: 3925 +2024-09-22T00:44:27.564678Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc2c25300c0af85ee91a67196339a2fc00958fdbfb17783caef4a44f8959532a3, slot: 3925 +2024-09-22T00:44:27.567857Z INFO fork_choice_control::block_processor: Validating block with slot: 4722 +2024-09-22T00:44:27.570875Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3925 +2024-09-22T00:44:27.570893Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3925 +2024-09-22T00:44:27.582201Z INFO fork_choice_control::block_processor: Validating block with slot: 4786 +2024-09-22T00:44:27.585390Z INFO fork_choice_control::block_processor: Validating block with slot: 3926 +2024-09-22T00:44:27.586445Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcd92be293cbb4f8f95d2ae7a2b9a4d4ab9627c9cf2d1d4f263727ad77cc9ef6b, slot: 3926 +2024-09-22T00:44:27.592649Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3926 +2024-09-22T00:44:27.592672Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3926 +2024-09-22T00:44:27.598556Z INFO fork_choice_control::block_processor: Validating block with slot: 4723 +2024-09-22T00:44:27.602107Z INFO fork_choice_control::block_processor: Validating block with slot: 4787 +2024-09-22T00:44:27.607524Z INFO fork_choice_control::block_processor: Validating block with slot: 3927 +2024-09-22T00:44:27.608525Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xca9122481458384cee985453877798f6aa5b90db575bbe9df73c370ceae5224d, slot: 3927 +2024-09-22T00:44:27.614535Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3927 +2024-09-22T00:44:27.614553Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3927 +2024-09-22T00:44:27.631896Z INFO fork_choice_control::block_processor: Validating block with slot: 4724 +2024-09-22T00:44:27.638320Z INFO fork_choice_control::block_processor: Validating block with slot: 3928 +2024-09-22T00:44:27.638318Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 121, root: 0x4853757a6666937f1af0106ea0f4b1aef15bf803a8c6cdd4516913def5c095e4, head slot: 3927, head root: 0xca9122481458384cee985453877798f6aa5b90db575bbe9df73c370ceae5224d) +2024-09-22T00:44:27.639506Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x68bbd1d965865ba8ee3c953929b6d2943d6a6b337a5ff5128dcaba735070c674, slot: 3928 +2024-09-22T00:44:27.645959Z INFO fork_choice_control::block_processor: Validating block with slot: 4788 +2024-09-22T00:44:27.646649Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3928 +2024-09-22T00:44:27.646659Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3928 +2024-09-22T00:44:27.660896Z INFO fork_choice_control::block_processor: Validating block with slot: 4725 +2024-09-22T00:44:27.661889Z INFO fork_choice_control::block_processor: Validating block with slot: 3929 +2024-09-22T00:44:27.662964Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5d5d46f53ec06e66f5148e6164a89fef3a9ec72ade607d762736ef414c4a7650, slot: 3929 +2024-09-22T00:44:27.668722Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3929 +2024-09-22T00:44:27.668734Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3929 +2024-09-22T00:44:27.677746Z INFO fork_choice_control::block_processor: Validating block with slot: 4789 +2024-09-22T00:44:27.684150Z INFO fork_choice_control::block_processor: Validating block with slot: 3930 +2024-09-22T00:44:27.685112Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbd22d7d681d6277805ce7eee8b082f91ec25dd0e9448981a201cc40ca1499240, slot: 3930 +2024-09-22T00:44:27.691241Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3930 +2024-09-22T00:44:27.691261Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3930 +2024-09-22T00:44:27.699476Z INFO fork_choice_control::block_processor: Validating block with slot: 4726 +2024-09-22T00:44:27.706919Z INFO fork_choice_control::block_processor: Validating block with slot: 3931 +2024-09-22T00:44:27.707887Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb5f01396a0c9ccb9a767b41a36f0ac212c89b58a7de81dac12254a06f54f2174, slot: 3931 +2024-09-22T00:44:27.708321Z INFO fork_choice_control::block_processor: Validating block with slot: 4790 +2024-09-22T00:44:27.715303Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3931 +2024-09-22T00:44:27.715324Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3931 +2024-09-22T00:44:27.722514Z INFO fork_choice_control::block_processor: Validating block with slot: 4727 +2024-09-22T00:44:27.731249Z INFO fork_choice_control::block_processor: Validating block with slot: 3932 +2024-09-22T00:44:27.733778Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7644fbb1734934030ff0c60d5da9694d7a829b317bc4f42383668d6d390b16ba, slot: 3932 +2024-09-22T00:44:27.739522Z INFO fork_choice_control::block_processor: Validating block with slot: 4791 +2024-09-22T00:44:27.744918Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3932 +2024-09-22T00:44:27.744938Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3932 +2024-09-22T00:44:27.760971Z INFO fork_choice_control::block_processor: Validating block with slot: 3933 +2024-09-22T00:44:27.762095Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd1780b7f4165ca26507ac10d68a5e23f3328f3c9e633b7efce7cd53ae2399646, slot: 3933 +2024-09-22T00:44:27.764135Z INFO fork_choice_control::block_processor: Validating block with slot: 4728 +2024-09-22T00:44:27.769794Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3933 +2024-09-22T00:44:27.769808Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3933 +2024-09-22T00:44:27.770429Z INFO fork_choice_control::block_processor: Validating block with slot: 4792 +2024-09-22T00:44:27.786311Z INFO fork_choice_control::block_processor: Validating block with slot: 3934 +2024-09-22T00:44:27.786820Z INFO fork_choice_control::block_processor: Validating block with slot: 4729 +2024-09-22T00:44:27.787441Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x791da4a918fc004681f3d2542e712e71829e0dae408baf43906db1fa67c84d30, slot: 3934 +2024-09-22T00:44:27.797061Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3934 +2024-09-22T00:44:27.797084Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3934 +2024-09-22T00:44:27.801754Z INFO fork_choice_control::block_processor: Validating block with slot: 4793 +2024-09-22T00:44:27.814677Z INFO fork_choice_control::block_processor: Validating block with slot: 3935 +2024-09-22T00:44:27.815675Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8fd1815b195c788dc6cad5f1e43a0414124ca218343ec5e788a48d38ca02ee94, slot: 3935 +2024-09-22T00:44:27.821796Z INFO fork_choice_control::block_processor: Validating block with slot: 4794 +2024-09-22T00:44:27.821914Z INFO fork_choice_control::block_processor: Validating block with slot: 4730 +2024-09-22T00:44:27.827602Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3935 +2024-09-22T00:44:27.827622Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3935 +2024-09-22T00:44:27.845618Z INFO fork_choice_control::block_processor: Validating block with slot: 3936 +2024-09-22T00:44:27.846760Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9a717c29e0df8e860603b2bb7da88fedbe3455c9e437e48d660056a9e111835d, slot: 3936 +2024-09-22T00:44:27.851145Z INFO fork_choice_control::block_processor: Validating block with slot: 4731 +2024-09-22T00:44:27.865953Z INFO fork_choice_control::block_processor: Validating block with slot: 4795 +2024-09-22T00:44:27.880984Z INFO fork_choice_control::block_processor: Validating block with slot: 4733 +2024-09-22T00:44:27.902294Z INFO fork_choice_control::block_processor: Validating block with slot: 4796 +2024-09-22T00:44:27.913704Z INFO fork_choice_control::block_processor: Validating block with slot: 4734 +2024-09-22T00:44:27.926686Z INFO fork_choice_control::block_processor: Validating block with slot: 4797 +2024-09-22T00:44:27.944409Z INFO fork_choice_control::block_processor: Validating block with slot: 4735 +2024-09-22T00:44:27.960208Z INFO fork_choice_control::block_processor: Validating block with slot: 4798 +2024-09-22T00:44:27.967642Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3936 +2024-09-22T00:44:27.967669Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3936 +2024-09-22T00:44:27.975170Z INFO fork_choice_control::block_processor: Validating block with slot: 4736 +2024-09-22T00:44:27.978977Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3936) +2024-09-22T00:44:27.979097Z INFO fork_choice_control::block_processor: Validating block with slot: 3937 +2024-09-22T00:44:27.980190Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x65b04052d48af4baadf169adfc82bcb6793a0df46d998dbbc30984f5592a40d9, slot: 3937 +2024-09-22T00:44:28.001594Z INFO fork_choice_control::block_processor: Validating block with slot: 4799 +2024-09-22T00:44:28.017418Z INFO fork_choice_control::block_processor: Validating block with slot: 4737 +2024-09-22T00:44:28.021936Z INFO fork_choice_control::block_processor: Validating block with slot: 4800 +2024-09-22T00:44:28.035498Z INFO fork_choice_control::block_processor: Validating block with slot: 4738 +2024-09-22T00:44:28.052638Z INFO fork_choice_control::block_processor: Validating block with slot: 4801 +2024-09-22T00:44:28.068689Z INFO fork_choice_control::block_processor: Validating block with slot: 4739 +2024-09-22T00:44:28.077187Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3937 +2024-09-22T00:44:28.077216Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3937 +2024-09-22T00:44:28.088404Z INFO fork_choice_control::block_processor: Validating block with slot: 3938 +2024-09-22T00:44:28.089931Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x80417fbd29c0143dfdd1184f978dfd4350b93709cdfb54126c49f5d212e5a988, slot: 3938 +2024-09-22T00:44:28.098554Z INFO fork_choice_control::block_processor: Validating block with slot: 4802 +2024-09-22T00:44:28.100003Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3938 +2024-09-22T00:44:28.100035Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3938 +2024-09-22T00:44:28.100681Z INFO fork_choice_control::block_processor: Validating block with slot: 4740 +2024-09-22T00:44:28.111706Z INFO fork_choice_control::block_processor: Validating block with slot: 3939 +2024-09-22T00:44:28.113852Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8715e40e6caf05208842357dbb9151b3c603d3e1982e92c270c09e93b0ad9fd2, slot: 3939 +2024-09-22T00:44:28.123917Z INFO fork_choice_control::block_processor: Validating block with slot: 4803 +2024-09-22T00:44:28.126278Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3939 +2024-09-22T00:44:28.126298Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3939 +2024-09-22T00:44:28.130009Z INFO fork_choice_control::block_processor: Validating block with slot: 4741 +2024-09-22T00:44:28.148201Z INFO fork_choice_control::block_processor: Validating block with slot: 3940 +2024-09-22T00:44:28.151937Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x551d26cd154b8204d9a9fd5512d3c9a429320bd34f409570b51f2d55c505a000, slot: 3940 +2024-09-22T00:44:28.156082Z INFO fork_choice_control::block_processor: Validating block with slot: 4804 +2024-09-22T00:44:28.162800Z INFO fork_choice_control::block_processor: Validating block with slot: 4742 +2024-09-22T00:44:28.173898Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3940 +2024-09-22T00:44:28.174018Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3940 +2024-09-22T00:44:28.175260Z INFO fork_choice_control::block_processor: Validating block with slot: 4805 +2024-09-22T00:44:28.188388Z INFO fork_choice_control::block_processor: Validating block with slot: 3941 +2024-09-22T00:44:28.192447Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x60d1d84d35da33b3e346998db2c3053f756e8de62b399d96aeac8f41fce7589c, slot: 3941 +2024-09-22T00:44:28.205842Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3941 +2024-09-22T00:44:28.205899Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3941 +2024-09-22T00:44:28.217943Z INFO fork_choice_control::block_processor: Validating block with slot: 4743 +2024-09-22T00:44:28.219959Z INFO fork_choice_control::block_processor: Validating block with slot: 3942 +2024-09-22T00:44:28.220117Z INFO fork_choice_control::block_processor: Validating block with slot: 4806 +2024-09-22T00:44:28.221174Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8179821ca49467eb5e356aff9b7285790953e0eddd39ee110655630caf19a8c4, slot: 3942 +2024-09-22T00:44:28.233919Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3942 +2024-09-22T00:44:28.233968Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3942 +2024-09-22T00:44:28.239875Z INFO fork_choice_control::block_processor: Validating block with slot: 4744 +2024-09-22T00:44:28.247970Z INFO fork_choice_control::block_processor: Validating block with slot: 3943 +2024-09-22T00:44:28.249423Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9ecdea58f826f0787208f04f9c2bb0c0242c5975ca40861203e809d944490f60, slot: 3943 +2024-09-22T00:44:28.258133Z INFO fork_choice_control::block_processor: Validating block with slot: 4807 +2024-09-22T00:44:28.258139Z INFO fork_choice_control::block_processor: Validating block with slot: 4745 +2024-09-22T00:44:28.259927Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3943 +2024-09-22T00:44:28.259947Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3943 +2024-09-22T00:44:28.273205Z INFO fork_choice_control::block_processor: Validating block with slot: 3944 +2024-09-22T00:44:28.275444Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd0a8353f8d5e7f49731c9fcefb493a1ee878d7d5521730ca019bda7c44d77dfc, slot: 3944 +2024-09-22T00:44:28.283073Z INFO fork_choice_control::block_processor: Validating block with slot: 4808 +2024-09-22T00:44:28.287631Z INFO fork_choice_control::block_processor: Validating block with slot: 4746 +2024-09-22T00:44:28.288968Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3944 +2024-09-22T00:44:28.288983Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3944 +2024-09-22T00:44:28.302676Z INFO fork_choice_control::block_processor: Validating block with slot: 3945 +2024-09-22T00:44:28.305133Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x028221cd682fd39e02ae28b9f5acd7daa347c4f4a9c733a12875906d07c8ecab, slot: 3945 +2024-09-22T00:44:28.307544Z INFO fork_choice_control::block_processor: Validating block with slot: 4809 +2024-09-22T00:44:28.316238Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3945 +2024-09-22T00:44:28.316259Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3945 +2024-09-22T00:44:28.330570Z INFO fork_choice_control::block_processor: Validating block with slot: 3946 +2024-09-22T00:44:28.333010Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x253953c28c7b844e656671c7fae59e4aea8409428f7379a03060c6bd38702894, slot: 3946 +2024-09-22T00:44:28.336990Z INFO fork_choice_control::block_processor: Validating block with slot: 4810 +2024-09-22T00:44:28.337098Z INFO fork_choice_control::block_processor: Validating block with slot: 4747 +2024-09-22T00:44:28.341303Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3946 +2024-09-22T00:44:28.341333Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3946 +2024-09-22T00:44:28.350539Z INFO fork_choice_control::block_processor: Validating block with slot: 4748 +2024-09-22T00:44:28.354481Z INFO fork_choice_control::block_processor: Validating block with slot: 3947 +2024-09-22T00:44:28.355615Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x833f865312c426f3bbc4e99546007c0e6ca0af757113de6f8404068393556a88, slot: 3947 +2024-09-22T00:44:28.363520Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3947 +2024-09-22T00:44:28.363545Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3947 +2024-09-22T00:44:28.366336Z INFO fork_choice_control::block_processor: Validating block with slot: 4811 +2024-09-22T00:44:28.377239Z INFO fork_choice_control::block_processor: Validating block with slot: 3948 +2024-09-22T00:44:28.378251Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x691c6e692822174bd0981f0b934eaa01946988d29c1c086ce2c8fbd8cf757536, slot: 3948 +2024-09-22T00:44:28.384535Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3948 +2024-09-22T00:44:28.384551Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3948 +2024-09-22T00:44:28.395595Z INFO fork_choice_control::block_processor: Validating block with slot: 4749 +2024-09-22T00:44:28.397948Z INFO fork_choice_control::block_processor: Validating block with slot: 3949 +2024-09-22T00:44:28.400299Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x044f34e52f6c8bbbaa1a738a075c6025419834a1611618a7c02fb4c5bcc8df2c, slot: 3949 +2024-09-22T00:44:28.404173Z INFO fork_choice_control::block_processor: Validating block with slot: 4812 +2024-09-22T00:44:28.409888Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3949 +2024-09-22T00:44:28.409908Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3949 +2024-09-22T00:44:28.412250Z INFO fork_choice_control::block_processor: Validating block with slot: 4750 +2024-09-22T00:44:28.423048Z INFO fork_choice_control::block_processor: Validating block with slot: 3950 +2024-09-22T00:44:28.424035Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc86738d53286d0373d2dbe9fba58bb7e6852a772fb6c95af61b7e183495c2ee0, slot: 3950 +2024-09-22T00:44:28.430037Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3950 +2024-09-22T00:44:28.430057Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3950 +2024-09-22T00:44:28.443830Z INFO fork_choice_control::block_processor: Validating block with slot: 4813 +2024-09-22T00:44:28.443857Z INFO fork_choice_control::block_processor: Validating block with slot: 3951 +2024-09-22T00:44:28.444991Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7404aca383768b6d471673e98e68c14a3d91180636cb9568630c90103bad6c8b, slot: 3951 +2024-09-22T00:44:28.450814Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3951 +2024-09-22T00:44:28.450827Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3951 +2024-09-22T00:44:28.459533Z INFO fork_choice_control::block_processor: Validating block with slot: 4751 +2024-09-22T00:44:28.464792Z INFO fork_choice_control::block_processor: Validating block with slot: 3952 +2024-09-22T00:44:28.467383Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0aa4456565e236fa58688c3c70ddd7227584fde37e7527bfa46f74249d06ebaf, slot: 3952 +2024-09-22T00:44:28.477580Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3952 +2024-09-22T00:44:28.477599Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3952 +2024-09-22T00:44:28.478212Z INFO fork_choice_control::block_processor: Validating block with slot: 4814 +2024-09-22T00:44:28.480187Z INFO fork_choice_control::block_processor: Validating block with slot: 4752 +2024-09-22T00:44:28.491755Z INFO fork_choice_control::block_processor: Validating block with slot: 3953 +2024-09-22T00:44:28.492734Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf3ddce1aadef68d816763ace1fafe8cc7b863cead893a042d11c837e82482ae9, slot: 3953 +2024-09-22T00:44:28.498435Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3953 +2024-09-22T00:44:28.498448Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3953 +2024-09-22T00:44:28.512671Z INFO fork_choice_control::block_processor: Validating block with slot: 3954 +2024-09-22T00:44:28.513911Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa8ae0cb1bef5ebcf7f984eddc6cabd513dc2317190708ad0eb4eaa1114f1b6cd, slot: 3954 +2024-09-22T00:44:28.520453Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3954 +2024-09-22T00:44:28.520466Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3954 +2024-09-22T00:44:28.534669Z INFO fork_choice_control::block_processor: Validating block with slot: 3955 +2024-09-22T00:44:28.535660Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf954d6ed8be96277e1eb950a353c32fdced5ef5c62f501cb49fae60e976294bf, slot: 3955 +2024-09-22T00:44:28.541595Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3955 +2024-09-22T00:44:28.541615Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3955 +2024-09-22T00:44:28.555825Z INFO fork_choice_control::block_processor: Validating block with slot: 3956 +2024-09-22T00:44:28.556970Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x69459e155a7a9b381bbcc53ff491e8fb0d109c39ea85cd11e8ed262cf4743f74, slot: 3956 +2024-09-22T00:44:28.563841Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3956 +2024-09-22T00:44:28.563862Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3956 +2024-09-22T00:44:28.578705Z INFO fork_choice_control::block_processor: Validating block with slot: 3957 +2024-09-22T00:44:28.579685Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfeac1afab33baebaac6c63bcce97a639add3b3bd114b62410f43838911dcade8, slot: 3957 +2024-09-22T00:44:28.585458Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3957 +2024-09-22T00:44:28.585472Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3957 +2024-09-22T00:44:28.600209Z INFO fork_choice_control::block_processor: Validating block with slot: 3958 +2024-09-22T00:44:28.602393Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3f02cc099d42363f260460e2563331fb6f87cbbfb3e903ac42f5f52db2768da1, slot: 3958 +2024-09-22T00:44:28.611738Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3958 +2024-09-22T00:44:28.611759Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3958 +2024-09-22T00:44:28.626888Z INFO fork_choice_control::block_processor: Validating block with slot: 3959 +2024-09-22T00:44:28.627862Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbf318b3081916a27a3aea6546b0defb6fe068985bee1eeb2632f00a83f42aa9c, slot: 3959 +2024-09-22T00:44:28.633701Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3959 +2024-09-22T00:44:28.633720Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3959 +2024-09-22T00:44:28.655775Z INFO fork_choice_control::block_processor: Validating block with slot: 3960 +2024-09-22T00:44:28.655781Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 122, root: 0xe63b71828b1d135153d3bc14d6e863db1a5a97b03635e9af207784bbb584cb93, head slot: 3959, head root: 0xbf318b3081916a27a3aea6546b0defb6fe068985bee1eeb2632f00a83f42aa9c) +2024-09-22T00:44:28.657055Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7ba5463b83bf4a6a94ec50b46d94a0da87070825d589ed769da9eb708c0acbee, slot: 3960 +2024-09-22T00:44:28.663880Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3960 +2024-09-22T00:44:28.663898Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3960 +2024-09-22T00:44:28.679655Z INFO fork_choice_control::block_processor: Validating block with slot: 3961 +2024-09-22T00:44:28.680933Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x69c16b97cc62f26fb2d60a5829b7d98f81a1509f3b7d67705f4fd6a30dd77e66, slot: 3961 +2024-09-22T00:44:28.687655Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3961 +2024-09-22T00:44:28.687669Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3961 +2024-09-22T00:44:28.703278Z INFO fork_choice_control::block_processor: Validating block with slot: 3962 +2024-09-22T00:44:28.704274Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x485c158964a3baf62821e23b7fe7021abe4aa1f044b216177cc4ce813a6ae081, slot: 3962 +2024-09-22T00:44:28.711045Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3962 +2024-09-22T00:44:28.711065Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3962 +2024-09-22T00:44:28.726937Z INFO fork_choice_control::block_processor: Validating block with slot: 3963 +2024-09-22T00:44:28.728204Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x42c21921831bde8c62a373c69cb1996eab5d62a92b15b66c95420e247a94fe1b, slot: 3963 +2024-09-22T00:44:28.744612Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3963 +2024-09-22T00:44:28.744640Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3963 +2024-09-22T00:44:28.773856Z INFO fork_choice_control::block_processor: Validating block with slot: 3964 +2024-09-22T00:44:28.774997Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x435381f16051b2918e11a16496967d1186fa8ff00bc1dc00b32ed99f4942cb3a, slot: 3964 +2024-09-22T00:44:28.797070Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3964 +2024-09-22T00:44:28.797091Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3964 +2024-09-22T00:44:28.816451Z INFO fork_choice_control::block_processor: Validating block with slot: 3965 +2024-09-22T00:44:28.817442Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x52a2421fc27425c7a744ee2d649aaa4f033ffc1e2a8e2bba4386fa755ff73b88, slot: 3965 +2024-09-22T00:44:28.823481Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3965 +2024-09-22T00:44:28.823505Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3965 +2024-09-22T00:44:28.826107Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 3904 +2024-09-22T00:44:28.839854Z INFO fork_choice_control::block_processor: Validating block with slot: 3966 +2024-09-22T00:44:28.841259Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcba3a140ff610fb319be306c55348c6ad178a2ae90f57dda9c12cc2763602f31, slot: 3966 +2024-09-22T00:44:28.847711Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3966 +2024-09-22T00:44:28.847731Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3966 +2024-09-22T00:44:28.864520Z INFO fork_choice_control::block_processor: Validating block with slot: 3967 +2024-09-22T00:44:28.866082Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x607b0cc224b3d90163707dcd826c821aab28ab38f659716219f33466669dc776, slot: 3967 +2024-09-22T00:44:28.874523Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3967 +2024-09-22T00:44:28.874545Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3967 +2024-09-22T00:44:28.884807Z INFO fork_choice_control::block_processor: Validating block with slot: 4815 +2024-09-22T00:44:28.884816Z INFO fork_choice_control::block_processor: Validating block with slot: 4753 +2024-09-22T00:44:28.886913Z INFO fork_choice_control::block_processor: Validating block with slot: 4816 +2024-09-22T00:44:28.892071Z INFO fork_choice_control::block_processor: Validating block with slot: 3968 +2024-09-22T00:44:28.893884Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0cebae806efac9ab206dc973d1d0263d41fe0de7ee7f5c0950270c3da5dfe167, slot: 3968 +2024-09-22T00:44:28.897925Z INFO fork_choice_control::block_processor: Validating block with slot: 4817 +2024-09-22T00:44:28.900469Z INFO fork_choice_control::block_processor: Validating block with slot: 4754 +2024-09-22T00:44:28.924900Z INFO fork_choice_control::block_processor: Validating block with slot: 4819 +2024-09-22T00:44:28.924911Z INFO fork_choice_control::block_processor: Validating block with slot: 4818 +2024-09-22T00:44:28.924959Z INFO fork_choice_control::block_processor: Validating block with slot: 4820 +2024-09-22T00:44:28.925069Z INFO fork_choice_control::block_processor: Validating block with slot: 4755 +2024-09-22T00:44:28.925337Z INFO fork_choice_control::block_processor: Validating block with slot: 4821 +2024-09-22T00:44:28.925990Z INFO fork_choice_control::block_processor: Validating block with slot: 4756 +2024-09-22T00:44:28.930174Z INFO fork_choice_control::block_processor: Validating block with slot: 4757 +2024-09-22T00:44:28.930563Z INFO fork_choice_control::block_processor: Validating block with slot: 4758 +2024-09-22T00:44:28.931543Z INFO fork_choice_control::block_processor: Validating block with slot: 4822 +2024-09-22T00:44:28.931768Z INFO fork_choice_control::block_processor: Validating block with slot: 4761 +2024-09-22T00:44:28.932784Z INFO fork_choice_control::block_processor: Validating block with slot: 4762 +2024-09-22T00:44:28.933053Z INFO fork_choice_control::block_processor: Validating block with slot: 4825 +2024-09-22T00:44:28.935079Z INFO fork_choice_control::block_processor: Validating block with slot: 4823 +2024-09-22T00:44:28.936630Z INFO fork_choice_control::block_processor: Validating block with slot: 4824 +2024-09-22T00:44:28.936881Z INFO fork_choice_control::block_processor: Validating block with slot: 4759 +2024-09-22T00:44:28.937055Z INFO fork_choice_control::block_processor: Validating block with slot: 4760 +2024-09-22T00:44:28.945594Z INFO fork_choice_control::block_processor: Validating block with slot: 4763 +2024-09-22T00:44:28.968585Z INFO fork_choice_control::block_processor: Validating block with slot: 4826 +2024-09-22T00:44:28.976131Z INFO fork_choice_control::block_processor: Validating block with slot: 4764 +2024-09-22T00:44:28.990649Z INFO fork_choice_control::block_processor: Validating block with slot: 4827 +2024-09-22T00:44:29.006280Z INFO fork_choice_control::block_processor: Validating block with slot: 4765 +2024-09-22T00:44:29.018703Z INFO fork_choice_control::block_processor: Validating block with slot: 4828 +2024-09-22T00:44:29.019258Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3968 +2024-09-22T00:44:29.019272Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3968 +2024-09-22T00:44:29.030384Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 3968) +2024-09-22T00:44:29.030608Z INFO fork_choice_control::block_processor: Validating block with slot: 3969 +2024-09-22T00:44:29.031987Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0be59bb51d78ecd49382120daf60eed2bf4acbb15acdd07e19cffa69d2f733ac, slot: 3969 +2024-09-22T00:44:29.047562Z INFO fork_choice_control::block_processor: Validating block with slot: 4766 +2024-09-22T00:44:29.051525Z INFO fork_choice_control::block_processor: Validating block with slot: 4829 +2024-09-22T00:44:29.066800Z INFO fork_choice_control::block_processor: Validating block with slot: 4767 +2024-09-22T00:44:29.071816Z INFO fork_choice_control::block_processor: Validating block with slot: 4830 +2024-09-22T00:44:29.108492Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3969 +2024-09-22T00:44:29.108513Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3969 +2024-09-22T00:44:29.118746Z INFO fork_choice_control::block_processor: Validating block with slot: 3970 +2024-09-22T00:44:29.121067Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa3283bcf37d96290e4416e74d1d86370b6100bb1f0025e25036fe50023fa708e, slot: 3970 +2024-09-22T00:44:29.131540Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3970 +2024-09-22T00:44:29.131559Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3970 +2024-09-22T00:44:29.142658Z INFO fork_choice_control::block_processor: Validating block with slot: 3971 +2024-09-22T00:44:29.145825Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1c7fae0d9fcc8d44c657c21750f595d534ee56d45010bd15e1c44b2cf3931847, slot: 3971 +2024-09-22T00:44:29.158230Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3971 +2024-09-22T00:44:29.158252Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3971 +2024-09-22T00:44:29.169923Z INFO fork_choice_control::block_processor: Validating block with slot: 3972 +2024-09-22T00:44:29.171319Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0c449f042e5c8c46fd3a5ae46a0d80d2ec5b268d9d5f2ce797355af1914c6ce7, slot: 3972 +2024-09-22T00:44:29.180366Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3972 +2024-09-22T00:44:29.180386Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3972 +2024-09-22T00:44:29.192205Z INFO fork_choice_control::block_processor: Validating block with slot: 3973 +2024-09-22T00:44:29.193331Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1d77d44f843e6a19fa62ed7efea7f634c1993027eaf60fada7f3fb6d7aa61779, slot: 3973 +2024-09-22T00:44:29.200968Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3973 +2024-09-22T00:44:29.200986Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3973 +2024-09-22T00:44:29.213041Z INFO fork_choice_control::block_processor: Validating block with slot: 3974 +2024-09-22T00:44:29.214442Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x92e81c9ecd5d0802947214a5e65ed338710db141451672d92c60ff1d88940053, slot: 3974 +2024-09-22T00:44:29.222244Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3974 +2024-09-22T00:44:29.222289Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3974 +2024-09-22T00:44:29.234360Z INFO fork_choice_control::block_processor: Validating block with slot: 3975 +2024-09-22T00:44:29.235487Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x88dd8adb571be1c3ea62084f9a72a0572579a20843fa63fb992607004074365c, slot: 3975 +2024-09-22T00:44:29.242630Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3975 +2024-09-22T00:44:29.242652Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3975 +2024-09-22T00:44:29.254695Z INFO fork_choice_control::block_processor: Validating block with slot: 3976 +2024-09-22T00:44:29.255684Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd941138464467343e0663725fa0cae9416a43139dff82d288fd17a9ea77fcac8, slot: 3976 +2024-09-22T00:44:29.262031Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3976 +2024-09-22T00:44:29.262051Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3976 +2024-09-22T00:44:29.274242Z INFO fork_choice_control::block_processor: Validating block with slot: 3977 +2024-09-22T00:44:29.276452Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0ef6704dd238b840bf5837d3cbba3004eeb33d88ca58a57e4c88e9af1a4600f9, slot: 3977 +2024-09-22T00:44:29.285356Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3977 +2024-09-22T00:44:29.285373Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3977 +2024-09-22T00:44:29.287454Z INFO fork_choice_control::block_processor: Validating block with slot: 4831 +2024-09-22T00:44:29.298250Z INFO fork_choice_control::block_processor: Validating block with slot: 3978 +2024-09-22T00:44:29.299396Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x116b776e67f4bbbedcc35cabc90a8eb1cd1e0a705ec91ede6e4cb4c1b65d4b0f, slot: 3978 +2024-09-22T00:44:29.306219Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3978 +2024-09-22T00:44:29.306270Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3978 +2024-09-22T00:44:29.319043Z INFO fork_choice_control::block_processor: Validating block with slot: 3979 +2024-09-22T00:44:29.320141Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x908e8331a4093f2ba968cf9f77acede9679fd7ffd93486366ff7a6871f65a9b8, slot: 3979 +2024-09-22T00:44:29.326940Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3979 +2024-09-22T00:44:29.326963Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3979 +2024-09-22T00:44:29.339659Z INFO fork_choice_control::block_processor: Validating block with slot: 3980 +2024-09-22T00:44:29.340813Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0af0313a577803dd64eaf5b614120549f8e031f6972226638b9e89fe9bfdafdc, slot: 3980 +2024-09-22T00:44:29.348402Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3980 +2024-09-22T00:44:29.348423Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3980 +2024-09-22T00:44:29.361620Z INFO fork_choice_control::block_processor: Validating block with slot: 3981 +2024-09-22T00:44:29.364365Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa309eac9909196e38a74c2b8276bfe45f1b663301a99f236c8faff2e234a83f9, slot: 3981 +2024-09-22T00:44:29.375484Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3981 +2024-09-22T00:44:29.375504Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3981 +2024-09-22T00:44:29.388793Z INFO fork_choice_control::block_processor: Validating block with slot: 3982 +2024-09-22T00:44:29.390068Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfc2e533989d8fea1af1bd2e8af9dda7ac891b9cec1a503909d59f3c6a8dfa57f, slot: 3982 +2024-09-22T00:44:29.396620Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3982 +2024-09-22T00:44:29.396635Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3982 +2024-09-22T00:44:29.410566Z INFO fork_choice_control::block_processor: Validating block with slot: 3983 +2024-09-22T00:44:29.411668Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x45d338410006caa06bb93aba798785630409319ff957aee7c851f036924b9693, slot: 3983 +2024-09-22T00:44:29.417584Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3983 +2024-09-22T00:44:29.417597Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3983 +2024-09-22T00:44:29.431618Z INFO fork_choice_control::block_processor: Validating block with slot: 3984 +2024-09-22T00:44:29.432606Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4a1cecebcfa4c42908c78180e571b23980114df611d66105eb559b9652490f7f, slot: 3984 +2024-09-22T00:44:29.438519Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3984 +2024-09-22T00:44:29.438538Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3984 +2024-09-22T00:44:29.452530Z INFO fork_choice_control::block_processor: Validating block with slot: 3985 +2024-09-22T00:44:29.453505Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8ac0aa37d805e51808f742e882bec926ba73063a0f2af2ac47205e25a5cb94e6, slot: 3985 +2024-09-22T00:44:29.459809Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3985 +2024-09-22T00:44:29.459830Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3985 +2024-09-22T00:44:29.474255Z INFO fork_choice_control::block_processor: Validating block with slot: 3986 +2024-09-22T00:44:29.476814Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4947a4c4d1f1f58c4cb6e44532291f8b78e8e56f68a5d74341baf13484b382f3, slot: 3986 +2024-09-22T00:44:29.487134Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3986 +2024-09-22T00:44:29.487153Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3986 +2024-09-22T00:44:29.502533Z INFO fork_choice_control::block_processor: Validating block with slot: 3987 +2024-09-22T00:44:29.503653Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5bb6b0195754b3e7e87c569765ea82564f1e12d2ff97f1e1db4ae73940d5f811, slot: 3987 +2024-09-22T00:44:29.511260Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3987 +2024-09-22T00:44:29.511278Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3987 +2024-09-22T00:44:29.526262Z INFO fork_choice_control::block_processor: Validating block with slot: 3988 +2024-09-22T00:44:29.528338Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbc0526c722d104a707f761596f8a365bb419b11b965cb21efd9b87110eef93c3, slot: 3988 +2024-09-22T00:44:29.536686Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3988 +2024-09-22T00:44:29.536698Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3988 +2024-09-22T00:44:29.552019Z INFO fork_choice_control::block_processor: Validating block with slot: 3989 +2024-09-22T00:44:29.553120Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x021c25bc13cbe40148eeb329ad4df03c0cc6e2cbb0dbd53891b1197c4b18f72a, slot: 3989 +2024-09-22T00:44:29.559595Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3989 +2024-09-22T00:44:29.559615Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3989 +2024-09-22T00:44:29.575134Z INFO fork_choice_control::block_processor: Validating block with slot: 3990 +2024-09-22T00:44:29.576345Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf37092fbee1f69f18a62174e8bb5c3bfa2578b6678c6866bcc6708a0f4137137, slot: 3990 +2024-09-22T00:44:29.582160Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3990 +2024-09-22T00:44:29.582175Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3990 +2024-09-22T00:44:29.597794Z INFO fork_choice_control::block_processor: Validating block with slot: 3991 +2024-09-22T00:44:29.599319Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8b505c3af1e6746f5093299e04ef818104b856e2c0a9f27682e24efc041f0d5a, slot: 3991 +2024-09-22T00:44:29.607659Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3991 +2024-09-22T00:44:29.607684Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3991 +2024-09-22T00:44:29.628769Z INFO fork_choice_control::block_processor: Validating block with slot: 3992 +2024-09-22T00:44:29.628772Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 123, root: 0x9a717c29e0df8e860603b2bb7da88fedbe3455c9e437e48d660056a9e111835d, head slot: 3991, head root: 0x8b505c3af1e6746f5093299e04ef818104b856e2c0a9f27682e24efc041f0d5a) +2024-09-22T00:44:29.630890Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd4b596721cab3060c5c48c3afed5d2a47d8925349c658d739148875bc809b19b, slot: 3992 +2024-09-22T00:44:29.640861Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3992 +2024-09-22T00:44:29.640887Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3992 +2024-09-22T00:44:29.657205Z INFO fork_choice_control::block_processor: Validating block with slot: 3993 +2024-09-22T00:44:29.658213Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x867d087dfc472dd14f9bf0b9fdd11a1c057faf67c097ade75d883bc5184e7e49, slot: 3993 +2024-09-22T00:44:29.664851Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3993 +2024-09-22T00:44:29.664865Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3993 +2024-09-22T00:44:29.681774Z INFO fork_choice_control::block_processor: Validating block with slot: 3994 +2024-09-22T00:44:29.683319Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0edd65b6ec43f5c53d58a375b4f9a103e36b719a9966c8964447242baeb0e2e3, slot: 3994 +2024-09-22T00:44:29.690977Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3994 +2024-09-22T00:44:29.691005Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3994 +2024-09-22T00:44:29.708041Z INFO fork_choice_control::block_processor: Validating block with slot: 3996 +2024-09-22T00:44:29.710288Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x727f1965f9e2198d86e6c3e796f9d3e1365da39ca94d490041cdd3e7824df3f4, slot: 3996 +2024-09-22T00:44:29.721669Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3996 +2024-09-22T00:44:29.721687Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3996 +2024-09-22T00:44:29.738745Z INFO fork_choice_control::block_processor: Validating block with slot: 3997 +2024-09-22T00:44:29.740021Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4960fc1f5341879d0681fe11d95a111c2872607d8306b95740482f46df48cd82, slot: 3997 +2024-09-22T00:44:29.747171Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3997 +2024-09-22T00:44:29.747188Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3997 +2024-09-22T00:44:29.760697Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 3936 +2024-09-22T00:44:29.764443Z INFO fork_choice_control::block_processor: Validating block with slot: 3998 +2024-09-22T00:44:29.765414Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe3699969878c30788870d065aeb26d382354de04922ad063780a52e446f85b06, slot: 3998 +2024-09-22T00:44:29.772299Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3998 +2024-09-22T00:44:29.772316Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3998 +2024-09-22T00:44:29.790961Z INFO fork_choice_control::block_processor: Validating block with slot: 3999 +2024-09-22T00:44:29.792100Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x788113012ba49a3acb13b3e94174bba1eeb058e33a26a11723440ce182a5e34f, slot: 3999 +2024-09-22T00:44:29.804453Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 3999 +2024-09-22T00:44:29.804476Z INFO fork_choice_control::block_processor: Block validation completed for slot: 3999 +2024-09-22T00:44:29.826232Z INFO fork_choice_control::block_processor: Validating block with slot: 4000 +2024-09-22T00:44:29.828662Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x18e1dfbc9dde70d211b983239c3c66efe3d6e3893396a12a1b012fae73b9b056, slot: 4000 +2024-09-22T00:44:29.932240Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4000 +2024-09-22T00:44:29.932265Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4000 +2024-09-22T00:44:29.944532Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 4000) +2024-09-22T00:44:29.944804Z INFO fork_choice_control::block_processor: Validating block with slot: 4001 +2024-09-22T00:44:29.946252Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd70723bad84f1161e0101dbad0f5efac2b53e1a8a6cd62078412f49e95a7a72d, slot: 4001 +2024-09-22T00:44:30.020441Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4001 +2024-09-22T00:44:30.020466Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4001 +2024-09-22T00:44:30.030198Z INFO fork_choice_control::block_processor: Validating block with slot: 4832 +2024-09-22T00:44:30.031955Z INFO fork_choice_control::block_processor: Validating block with slot: 4002 +2024-09-22T00:44:30.032982Z INFO fork_choice_control::block_processor: Validating block with slot: 4834 +2024-09-22T00:44:30.032989Z INFO fork_choice_control::block_processor: Validating block with slot: 4833 +2024-09-22T00:44:30.034276Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x81ca73d62abdc0524db7e65df6ff6ee14b1f60caf4bd385471428100345fa884, slot: 4002 +2024-09-22T00:44:30.038006Z INFO fork_choice_control::block_processor: Validating block with slot: 4836 +2024-09-22T00:44:30.038051Z INFO fork_choice_control::block_processor: Validating block with slot: 4835 +2024-09-22T00:44:30.040521Z INFO fork_choice_control::block_processor: Validating block with slot: 4837 +2024-09-22T00:44:30.045330Z INFO fork_choice_control::block_processor: Validating block with slot: 4838 +2024-09-22T00:44:30.046108Z INFO fork_choice_control::block_processor: Validating block with slot: 4839 +2024-09-22T00:44:30.047153Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4002 +2024-09-22T00:44:30.047164Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4002 +2024-09-22T00:44:30.056700Z INFO fork_choice_control::block_processor: Validating block with slot: 4840 +2024-09-22T00:44:30.056750Z INFO fork_choice_control::block_processor: Validating block with slot: 4841 +2024-09-22T00:44:30.056771Z INFO fork_choice_control::block_processor: Validating block with slot: 4844 +2024-09-22T00:44:30.056970Z INFO fork_choice_control::block_processor: Validating block with slot: 4842 +2024-09-22T00:44:30.057886Z INFO fork_choice_control::block_processor: Validating block with slot: 4843 +2024-09-22T00:44:30.059266Z INFO fork_choice_control::block_processor: Validating block with slot: 4003 +2024-09-22T00:44:30.060226Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd1830b6e5dc2a11762a9eb3efbef5782f64040b973a5776b50a8ab308df5bf6c, slot: 4003 +2024-09-22T00:44:30.070661Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4003 +2024-09-22T00:44:30.070676Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4003 +2024-09-22T00:44:30.076712Z INFO fork_choice_control::block_processor: Validating block with slot: 4846 +2024-09-22T00:44:30.076807Z INFO fork_choice_control::block_processor: Validating block with slot: 4847 +2024-09-22T00:44:30.076890Z INFO fork_choice_control::block_processor: Validating block with slot: 4849 +2024-09-22T00:44:30.077613Z INFO fork_choice_control::block_processor: Validating block with slot: 4848 +2024-09-22T00:44:30.079965Z INFO fork_choice_control::block_processor: Validating block with slot: 4850 +2024-09-22T00:44:30.080200Z INFO fork_choice_control::block_processor: Validating block with slot: 4851 +2024-09-22T00:44:30.081396Z INFO fork_choice_control::block_processor: Validating block with slot: 4852 +2024-09-22T00:44:30.082192Z INFO fork_choice_control::block_processor: Validating block with slot: 4853 +2024-09-22T00:44:30.083189Z INFO fork_choice_control::block_processor: Validating block with slot: 4854 +2024-09-22T00:44:30.083466Z INFO fork_choice_control::block_processor: Validating block with slot: 4004 +2024-09-22T00:44:30.085947Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9543ed541a6e477781df8bc6225ea30dcb48ee65a728f7737866b3eda09d5982, slot: 4004 +2024-09-22T00:44:30.087329Z INFO fork_choice_control::block_processor: Validating block with slot: 4856 +2024-09-22T00:44:30.087340Z INFO fork_choice_control::block_processor: Validating block with slot: 4857 +2024-09-22T00:44:30.087432Z INFO fork_choice_control::block_processor: Validating block with slot: 4855 +2024-09-22T00:44:30.091088Z INFO fork_choice_control::block_processor: Validating block with slot: 4858 +2024-09-22T00:44:30.101865Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4004 +2024-09-22T00:44:30.101966Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4004 +2024-09-22T00:44:30.102835Z INFO fork_choice_control::block_processor: Validating block with slot: 4859 +2024-09-22T00:44:30.102847Z INFO fork_choice_control::block_processor: Validating block with slot: 4861 +2024-09-22T00:44:30.102916Z INFO fork_choice_control::block_processor: Validating block with slot: 4860 +2024-09-22T00:44:30.111899Z INFO fork_choice_control::block_processor: Validating block with slot: 4862 +2024-09-22T00:44:30.112241Z INFO fork_choice_control::block_processor: Validating block with slot: 4863 +2024-09-22T00:44:30.112995Z INFO fork_choice_control::block_processor: Validating block with slot: 4865 +2024-09-22T00:44:30.114215Z INFO fork_choice_control::block_processor: Validating block with slot: 4866 +2024-09-22T00:44:30.114282Z INFO fork_choice_control::block_processor: Validating block with slot: 4867 +2024-09-22T00:44:30.115486Z INFO fork_choice_control::block_processor: Validating block with slot: 4868 +2024-09-22T00:44:30.115630Z INFO fork_choice_control::block_processor: Validating block with slot: 4869 +2024-09-22T00:44:30.116430Z INFO fork_choice_control::block_processor: Validating block with slot: 4005 +2024-09-22T00:44:30.118075Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5e96fc06781e98511bb6edfec12e26bbe128d3dbc0dd4498dd7bacdd54cddedc, slot: 4005 +2024-09-22T00:44:30.128837Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4005 +2024-09-22T00:44:30.128857Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4005 +2024-09-22T00:44:30.137326Z INFO fork_choice_control::block_processor: Validating block with slot: 4870 +2024-09-22T00:44:30.137332Z INFO fork_choice_control::block_processor: Validating block with slot: 4871 +2024-09-22T00:44:30.137964Z INFO fork_choice_control::block_processor: Validating block with slot: 4872 +2024-09-22T00:44:30.138896Z INFO fork_choice_control::block_processor: Validating block with slot: 4874 +2024-09-22T00:44:30.139176Z INFO fork_choice_control::block_processor: Validating block with slot: 4875 +2024-09-22T00:44:30.139500Z INFO fork_choice_control::block_processor: Validating block with slot: 4873 +2024-09-22T00:44:30.140280Z INFO fork_choice_control::block_processor: Validating block with slot: 4876 +2024-09-22T00:44:30.140643Z INFO fork_choice_control::block_processor: Validating block with slot: 4877 +2024-09-22T00:44:30.142093Z INFO fork_choice_control::block_processor: Validating block with slot: 4878 +2024-09-22T00:44:30.142258Z INFO fork_choice_control::block_processor: Validating block with slot: 4879 +2024-09-22T00:44:30.143068Z INFO fork_choice_control::block_processor: Validating block with slot: 4880 +2024-09-22T00:44:30.143533Z INFO fork_choice_control::block_processor: Validating block with slot: 4881 +2024-09-22T00:44:30.144293Z INFO fork_choice_control::block_processor: Validating block with slot: 4882 +2024-09-22T00:44:30.144314Z INFO fork_choice_control::block_processor: Validating block with slot: 4883 +2024-09-22T00:44:30.144896Z INFO fork_choice_control::block_processor: Validating block with slot: 4884 +2024-09-22T00:44:30.145261Z INFO fork_choice_control::block_processor: Validating block with slot: 4886 +2024-09-22T00:44:30.145515Z INFO fork_choice_control::block_processor: Validating block with slot: 4887 +2024-09-22T00:44:30.146304Z INFO fork_choice_control::block_processor: Validating block with slot: 4006 +2024-09-22T00:44:30.147522Z INFO fork_choice_control::block_processor: Validating block with slot: 4888 +2024-09-22T00:44:30.147891Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9d2bd16a656b68778ae1db1dac97eb0604faa79085b740dc5f3f17f9c074fd09, slot: 4006 +2024-09-22T00:44:30.155121Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4006 +2024-09-22T00:44:30.155143Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4006 +2024-09-22T00:44:30.158740Z INFO fork_choice_control::block_processor: Validating block with slot: 4890 +2024-09-22T00:44:30.158742Z INFO fork_choice_control::block_processor: Validating block with slot: 4889 +2024-09-22T00:44:30.159058Z INFO fork_choice_control::block_processor: Validating block with slot: 4891 +2024-09-22T00:44:30.159854Z INFO fork_choice_control::block_processor: Validating block with slot: 4892 +2024-09-22T00:44:30.159936Z INFO fork_choice_control::block_processor: Validating block with slot: 4893 +2024-09-22T00:44:30.171577Z INFO fork_choice_control::block_processor: Validating block with slot: 4007 +2024-09-22T00:44:30.172985Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0713b26b16bafae32f3e8a4667d49a129f9496912e6c3246cb8f1f5c60c0be1f, slot: 4007 +2024-09-22T00:44:30.199757Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4007 +2024-09-22T00:44:30.199806Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4007 +2024-09-22T00:44:30.219038Z INFO fork_choice_control::block_processor: Validating block with slot: 4008 +2024-09-22T00:44:30.220052Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3f251456f234b47726e0ffebaefbb4b444e6a6e3399e5277e97d5a6f6d7cb464, slot: 4008 +2024-09-22T00:44:30.226681Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4008 +2024-09-22T00:44:30.226705Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4008 +2024-09-22T00:44:30.239473Z INFO fork_choice_control::block_processor: Validating block with slot: 4009 +2024-09-22T00:44:30.241735Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa214de7906928a9e84c71444f427dcad3507868021908e9010dddc5434c339fd, slot: 4009 +2024-09-22T00:44:30.251473Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4009 +2024-09-22T00:44:30.251489Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4009 +2024-09-22T00:44:30.263859Z INFO fork_choice_control::block_processor: Validating block with slot: 4894 +2024-09-22T00:44:30.264846Z INFO fork_choice_control::block_processor: Validating block with slot: 4010 +2024-09-22T00:44:30.265942Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8f71f47b5ad26836228f8f26bb5a249bce520edc40ffd31e6b7e85573ef33f4c, slot: 4010 +2024-09-22T00:44:30.272338Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4010 +2024-09-22T00:44:30.272357Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4010 +2024-09-22T00:44:30.285501Z INFO fork_choice_control::block_processor: Validating block with slot: 4011 +2024-09-22T00:44:30.286599Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x16f8d0a5b6570fb8ba52e1b85575fb2664ce871aaf2cad95820355e707a1440d, slot: 4011 +2024-09-22T00:44:30.292829Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4011 +2024-09-22T00:44:30.292851Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4011 +2024-09-22T00:44:30.306787Z INFO fork_choice_control::block_processor: Validating block with slot: 4013 +2024-09-22T00:44:30.309290Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x81017225e27008726cab148a072771b1c7c8de031df55f2ecf769a42894a4267, slot: 4013 +2024-09-22T00:44:30.320543Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4013 +2024-09-22T00:44:30.320558Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4013 +2024-09-22T00:44:30.334394Z INFO fork_choice_control::block_processor: Validating block with slot: 4014 +2024-09-22T00:44:30.335368Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x592fc957e1cd4d1db361afd3ebd1f36dba7b95324ad7592977cabfa757449b65, slot: 4014 +2024-09-22T00:44:30.341372Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4014 +2024-09-22T00:44:30.341397Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4014 +2024-09-22T00:44:30.355132Z INFO fork_choice_control::block_processor: Validating block with slot: 4015 +2024-09-22T00:44:30.356686Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa15653334cf33ad164e335c3aac3f10a0ad7023d1819fe165de814f0ee6e3339, slot: 4015 +2024-09-22T00:44:30.363740Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4015 +2024-09-22T00:44:30.363762Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4015 +2024-09-22T00:44:30.377984Z INFO fork_choice_control::block_processor: Validating block with slot: 4016 +2024-09-22T00:44:30.379888Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x611ec50a341880dd6f0ffa8d36afc3110cb2c40c6eb310155cfc5ab390fdc479, slot: 4016 +2024-09-22T00:44:30.387739Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4016 +2024-09-22T00:44:30.387752Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4016 +2024-09-22T00:44:30.402126Z INFO fork_choice_control::block_processor: Validating block with slot: 4017 +2024-09-22T00:44:30.404312Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x61c4151ebc7a2b0c093f985a31cc64cc37c556f1fd77a025e4b7ced34042fa5c, slot: 4017 +2024-09-22T00:44:30.413217Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4017 +2024-09-22T00:44:30.413236Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4017 +2024-09-22T00:44:30.428024Z INFO fork_choice_control::block_processor: Validating block with slot: 4018 +2024-09-22T00:44:30.428263Z INFO fork_choice_control::block_processor: Validating block with slot: 4895 +2024-09-22T00:44:30.429000Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4266e291a9bbb45dd26e055eb5d153766a87028f299d324b430b2071eb21f1c5, slot: 4018 +2024-09-22T00:44:30.434802Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4018 +2024-09-22T00:44:30.434819Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4018 +2024-09-22T00:44:30.443073Z INFO fork_choice_control::block_processor: Validating block with slot: 5088 +2024-09-22T00:44:30.450098Z INFO fork_choice_control::block_processor: Validating block with slot: 4019 +2024-09-22T00:44:30.452262Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa6431b446028c0ba3e1417beab7bf4e748ff05063e54f4c9eca62475a16f71bc, slot: 4019 +2024-09-22T00:44:30.462095Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4019 +2024-09-22T00:44:30.462113Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4019 +2024-09-22T00:44:30.463227Z INFO fork_choice_control::block_processor: Validating block with slot: 4960 +2024-09-22T00:44:30.476004Z INFO fork_choice_control::block_processor: Validating block with slot: 5089 +2024-09-22T00:44:30.477707Z INFO fork_choice_control::block_processor: Validating block with slot: 4020 +2024-09-22T00:44:30.478828Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa70f06423b65f41b13764b05c4aa9eda8d6a3d2aa3f0adbd2a3edff734271ebc, slot: 4020 +2024-09-22T00:44:30.484614Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4020 +2024-09-22T00:44:30.484632Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4020 +2024-09-22T00:44:30.486216Z INFO fork_choice_control::block_processor: Validating block with slot: 4961 +2024-09-22T00:44:30.500170Z INFO fork_choice_control::block_processor: Validating block with slot: 4022 +2024-09-22T00:44:30.501806Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x96301a7f088857ce9d47cb9e5a95eda228d5a71ad49ec7d6f7c4ed3bcb0f9afa, slot: 4022 +2024-09-22T00:44:30.511199Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4022 +2024-09-22T00:44:30.511224Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4022 +2024-09-22T00:44:30.512773Z INFO fork_choice_control::block_processor: Validating block with slot: 5090 +2024-09-22T00:44:30.519378Z INFO fork_choice_control::block_processor: Validating block with slot: 4962 +2024-09-22T00:44:30.527203Z INFO fork_choice_control::block_processor: Validating block with slot: 4023 +2024-09-22T00:44:30.529002Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x58cacbd8bbaf5ad0e31d0dbc10fd49485f2da02846801f7b401114568e4c5dad, slot: 4023 +2024-09-22T00:44:30.537881Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4023 +2024-09-22T00:44:30.537897Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4023 +2024-09-22T00:44:30.539366Z INFO fork_choice_control::block_processor: Validating block with slot: 5091 +2024-09-22T00:44:30.553687Z INFO fork_choice_control::block_processor: Validating block with slot: 4024 +2024-09-22T00:44:30.555031Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x516dad3fd5a1fcfb031db2e2e484e3b598b61296e9721f51f89f2b687afc7fb1, slot: 4024 +2024-09-22T00:44:30.558749Z INFO fork_choice_control::block_processor: Validating block with slot: 4963 +2024-09-22T00:44:30.562220Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4024 +2024-09-22T00:44:30.562238Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4024 +2024-09-22T00:44:30.566492Z INFO fork_choice_control::block_processor: Validating block with slot: 5092 +2024-09-22T00:44:30.582476Z INFO fork_choice_control::block_processor: Validating block with slot: 4964 +2024-09-22T00:44:30.583922Z INFO fork_choice_control::block_processor: Validating block with slot: 4025 +2024-09-22T00:44:30.583927Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 124, root: 0x0cebae806efac9ab206dc973d1d0263d41fe0de7ee7f5c0950270c3da5dfe167, head slot: 4024, head root: 0x516dad3fd5a1fcfb031db2e2e484e3b598b61296e9721f51f89f2b687afc7fb1) +2024-09-22T00:44:30.585013Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb361807e731e13a4ab8d995636c2f620aca6c466d37bb378e54ccef2280b6084, slot: 4025 +2024-09-22T00:44:30.592096Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4025 +2024-09-22T00:44:30.592120Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4025 +2024-09-22T00:44:30.596610Z INFO fork_choice_control::block_processor: Validating block with slot: 5093 +2024-09-22T00:44:30.608874Z INFO fork_choice_control::block_processor: Validating block with slot: 4026 +2024-09-22T00:44:30.610570Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x21b6dc21a8ac064d992dca5a7e91b493d26e004fd61f512668bdd519aa4b0df1, slot: 4026 +2024-09-22T00:44:30.619422Z INFO fork_choice_control::block_processor: Validating block with slot: 4965 +2024-09-22T00:44:30.619747Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4026 +2024-09-22T00:44:30.619763Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4026 +2024-09-22T00:44:30.630516Z INFO fork_choice_control::block_processor: Validating block with slot: 5095 +2024-09-22T00:44:30.636842Z INFO fork_choice_control::block_processor: Validating block with slot: 4028 +2024-09-22T00:44:30.639232Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x467974bdcd6f1568ded80012fe0b8d30347052519e2eba16764e30003d26a520, slot: 4028 +2024-09-22T00:44:30.647904Z INFO fork_choice_control::block_processor: Validating block with slot: 4966 +2024-09-22T00:44:30.653192Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4028 +2024-09-22T00:44:30.653202Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4028 +2024-09-22T00:44:30.670908Z INFO fork_choice_control::block_processor: Validating block with slot: 4029 +2024-09-22T00:44:30.672014Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x27e696427b0c4c8c5db8fc36752c32def25aaa19e0033d08893c3524a1405b6f, slot: 4029 +2024-09-22T00:44:30.679347Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4029 +2024-09-22T00:44:30.679366Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4029 +2024-09-22T00:44:30.685090Z INFO fork_choice_control::block_processor: Validating block with slot: 5096 +2024-09-22T00:44:30.685115Z INFO fork_choice_control::block_processor: Validating block with slot: 4967 +2024-09-22T00:44:30.690783Z INFO fork_choice_control::block_processor: Validating block with slot: 5097 +2024-09-22T00:44:30.697344Z INFO fork_choice_control::block_processor: Validating block with slot: 4030 +2024-09-22T00:44:30.698448Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x250d83425a35b8124c839d61312783475d3288faaf07013c6fc1f1214958c9e3, slot: 4030 +2024-09-22T00:44:30.706012Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4030 +2024-09-22T00:44:30.706029Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4030 +2024-09-22T00:44:30.709069Z INFO fork_choice_control::block_processor: Validating block with slot: 4968 +2024-09-22T00:44:30.713115Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 3968 +2024-09-22T00:44:30.721916Z INFO fork_choice_control::block_processor: Validating block with slot: 5098 +2024-09-22T00:44:30.724238Z INFO fork_choice_control::block_processor: Validating block with slot: 4031 +2024-09-22T00:44:30.725402Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd77934c6bda40add28dabff4445f1e1e0195b18ed5c61f897c48973fa0e06ebb, slot: 4031 +2024-09-22T00:44:30.731307Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4031 +2024-09-22T00:44:30.731319Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4031 +2024-09-22T00:44:30.738945Z INFO fork_choice_control::block_processor: Validating block with slot: 4969 +2024-09-22T00:44:30.749249Z INFO fork_choice_control::block_processor: Validating block with slot: 4032 +2024-09-22T00:44:30.750510Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x533fd8c5d0cd131e54b510681294227e5918a57b506961c64dd2bd88778aa159, slot: 4032 +2024-09-22T00:44:30.755001Z INFO fork_choice_control::block_processor: Validating block with slot: 5099 +2024-09-22T00:44:30.772857Z INFO fork_choice_control::block_processor: Validating block with slot: 4970 +2024-09-22T00:44:30.789250Z INFO fork_choice_control::block_processor: Validating block with slot: 5100 +2024-09-22T00:44:30.826255Z INFO fork_choice_control::block_processor: Validating block with slot: 4971 +2024-09-22T00:44:30.831108Z INFO fork_choice_control::block_processor: Validating block with slot: 5101 +2024-09-22T00:44:30.850414Z INFO fork_choice_control::block_processor: Validating block with slot: 4972 +2024-09-22T00:44:30.853466Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4032 +2024-09-22T00:44:30.853479Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4032 +2024-09-22T00:44:30.857773Z INFO fork_choice_control::block_processor: Validating block with slot: 5102 +2024-09-22T00:44:30.864625Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 4032) +2024-09-22T00:44:30.864748Z INFO fork_choice_control::block_processor: Validating block with slot: 4033 +2024-09-22T00:44:30.866061Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9ce9e0cb159473da071fb710e2496aa943f730789eae5c0ff90f9bf064a1619f, slot: 4033 +2024-09-22T00:44:30.869322Z INFO fork_choice_control::block_processor: Validating block with slot: 4973 +2024-09-22T00:44:30.932920Z INFO fork_choice_control::block_processor: Validating block with slot: 5103 +2024-09-22T00:44:30.939405Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4033 +2024-09-22T00:44:30.939422Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4033 +2024-09-22T00:44:30.950053Z INFO fork_choice_control::block_processor: Validating block with slot: 4034 +2024-09-22T00:44:30.951012Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa47d3aad9a0ca13cce2a01a33e8b5d46c41ceacae68f1b1369892b889bd43c50, slot: 4034 +2024-09-22T00:44:30.957214Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4034 +2024-09-22T00:44:30.957236Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4034 +2024-09-22T00:44:30.968103Z INFO fork_choice_control::block_processor: Validating block with slot: 4035 +2024-09-22T00:44:30.971520Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x20fda6cb34adc2ca8163a45214ff9a971794b5318f21a71291d9bb3eefa9066e, slot: 4035 +2024-09-22T00:44:30.984658Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4035 +2024-09-22T00:44:30.984677Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4035 +2024-09-22T00:44:30.996362Z INFO fork_choice_control::block_processor: Validating block with slot: 4036 +2024-09-22T00:44:30.997328Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x13fcd1d51ffcc4e65e73da3eff9c215364ec9abbf7ee583aa6027259be1d263b, slot: 4036 +2024-09-22T00:44:31.004517Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4036 +2024-09-22T00:44:31.004537Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4036 +2024-09-22T00:44:31.006390Z INFO fork_choice_control::block_processor: Validating block with slot: 4976 +2024-09-22T00:44:31.006414Z INFO fork_choice_control::block_processor: Validating block with slot: 4975 +2024-09-22T00:44:31.006430Z INFO fork_choice_control::block_processor: Validating block with slot: 4977 +2024-09-22T00:44:31.006516Z INFO fork_choice_control::block_processor: Validating block with slot: 4974 +2024-09-22T00:44:31.016376Z INFO fork_choice_control::block_processor: Validating block with slot: 4037 +2024-09-22T00:44:31.017348Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1beed262a6ccc7907674847d9096dbaf92f950774eb3bda1e7742dc08e96edcd, slot: 4037 +2024-09-22T00:44:31.025064Z INFO fork_choice_control::block_processor: Validating block with slot: 4978 +2024-09-22T00:44:31.025067Z INFO fork_choice_control::block_processor: Validating block with slot: 4979 +2024-09-22T00:44:31.025243Z INFO fork_choice_control::block_processor: Validating block with slot: 4980 +2024-09-22T00:44:31.026020Z INFO fork_choice_control::block_processor: Validating block with slot: 4981 +2024-09-22T00:44:31.030240Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4037 +2024-09-22T00:44:31.030253Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4037 +2024-09-22T00:44:31.042245Z INFO fork_choice_control::block_processor: Validating block with slot: 4038 +2024-09-22T00:44:31.043509Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdc9f253345986e68e37bc01891edb9f7861a6f5d88de7f12a750ac103d7becaf, slot: 4038 +2024-09-22T00:44:31.044553Z INFO fork_choice_control::block_processor: Validating block with slot: 5104 +2024-09-22T00:44:31.050297Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4038 +2024-09-22T00:44:31.050311Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4038 +2024-09-22T00:44:31.062555Z INFO fork_choice_control::block_processor: Validating block with slot: 4039 +2024-09-22T00:44:31.063544Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbcadd9bfc0d4a00beb831be3ebb21d1378aaaef195162261e0de23848ceec695, slot: 4039 +2024-09-22T00:44:31.069571Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4039 +2024-09-22T00:44:31.069584Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4039 +2024-09-22T00:44:31.074494Z INFO fork_choice_control::block_processor: Validating block with slot: 4983 +2024-09-22T00:44:31.074509Z INFO fork_choice_control::block_processor: Validating block with slot: 4982 +2024-09-22T00:44:31.074515Z INFO fork_choice_control::block_processor: Validating block with slot: 5105 +2024-09-22T00:44:31.082125Z INFO fork_choice_control::block_processor: Validating block with slot: 4040 +2024-09-22T00:44:31.083084Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x79ca3a630f02a3f3dc5baa50ed88bc7aad3e48aff2ac855f8a7f8f2f35caafce, slot: 4040 +2024-09-22T00:44:31.090374Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4040 +2024-09-22T00:44:31.090403Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4040 +2024-09-22T00:44:31.102830Z INFO fork_choice_control::block_processor: Validating block with slot: 4041 +2024-09-22T00:44:31.104067Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x324bc8ad632172f98e2a1747420b5f236b7af8fed21d7e713b6281af84adf784, slot: 4041 +2024-09-22T00:44:31.112049Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4041 +2024-09-22T00:44:31.112071Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4041 +2024-09-22T00:44:31.125243Z INFO fork_choice_control::block_processor: Validating block with slot: 4042 +2024-09-22T00:44:31.126770Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x653d51c9b4b2ced09cf9f01613d59ad03d7cc6324bfb4292e7903bfb318e8d38, slot: 4042 +2024-09-22T00:44:31.134270Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4042 +2024-09-22T00:44:31.134285Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4042 +2024-09-22T00:44:31.147191Z INFO fork_choice_control::block_processor: Validating block with slot: 4043 +2024-09-22T00:44:31.148155Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb2611067c46b537e555afe8629ac5d13e3f8c2c6cb7e2b99b7252ce438f64777, slot: 4043 +2024-09-22T00:44:31.154096Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4043 +2024-09-22T00:44:31.154114Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4043 +2024-09-22T00:44:31.155656Z INFO fork_choice_control::block_processor: Validating block with slot: 5106 +2024-09-22T00:44:31.167196Z INFO fork_choice_control::block_processor: Validating block with slot: 4044 +2024-09-22T00:44:31.169379Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1a2c352fc2fcaca761dbc1d8c8fcf8b2f7bb04e17ddc45d5806a78ad5b7d1abb, slot: 4044 +2024-09-22T00:44:31.179031Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4044 +2024-09-22T00:44:31.179050Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4044 +2024-09-22T00:44:31.192471Z INFO fork_choice_control::block_processor: Validating block with slot: 4045 +2024-09-22T00:44:31.193450Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfb7de07b7b1f5a3441b0aaec15b0fbf3cce173f1744c774326b7cf6f09722457, slot: 4045 +2024-09-22T00:44:31.199633Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4045 +2024-09-22T00:44:31.199648Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4045 +2024-09-22T00:44:31.213278Z INFO fork_choice_control::block_processor: Validating block with slot: 4046 +2024-09-22T00:44:31.214372Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x53c4d9442fa57215d9cd5ea15a24e22254ad4e27e94dd6dbd53e235059a4d5fc, slot: 4046 +2024-09-22T00:44:31.220466Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4046 +2024-09-22T00:44:31.220480Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4046 +2024-09-22T00:44:31.232734Z INFO fork_choice_control::block_processor: Validating block with slot: 4984 +2024-09-22T00:44:31.234064Z INFO fork_choice_control::block_processor: Validating block with slot: 4047 +2024-09-22T00:44:31.236229Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc3b17e21f9ac1a91511d8437fa5ad9e8e77936332b409ac669311a4ce2ef48ba, slot: 4047 +2024-09-22T00:44:31.245157Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4047 +2024-09-22T00:44:31.245179Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4047 +2024-09-22T00:44:31.259107Z INFO fork_choice_control::block_processor: Validating block with slot: 4048 +2024-09-22T00:44:31.260080Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0d499ab5643b5ca10e0531b2f7707b795956528cc18eb709101a6bec31093557, slot: 4048 +2024-09-22T00:44:31.265951Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4048 +2024-09-22T00:44:31.265968Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4048 +2024-09-22T00:44:31.280062Z INFO fork_choice_control::block_processor: Validating block with slot: 4049 +2024-09-22T00:44:31.281836Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4b0f526febfa8c4d776654efe760077518484a04f9fe5661d3117a59272c5916, slot: 4049 +2024-09-22T00:44:31.289406Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4049 +2024-09-22T00:44:31.289419Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4049 +2024-09-22T00:44:31.303612Z INFO fork_choice_control::block_processor: Validating block with slot: 4050 +2024-09-22T00:44:31.304592Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc54b11f8bc3dc00c0d5384ece5917057614ae375c1202f0d96951517dfbbfeba, slot: 4050 +2024-09-22T00:44:31.311284Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4050 +2024-09-22T00:44:31.311303Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4050 +2024-09-22T00:44:31.326062Z INFO fork_choice_control::block_processor: Validating block with slot: 4051 +2024-09-22T00:44:31.327411Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x709a7478efcd41f134e776ffa182ae4e9465d30b49d9d4d2568c8a3f84ebd3f0, slot: 4051 +2024-09-22T00:44:31.333716Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4051 +2024-09-22T00:44:31.333729Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4051 +2024-09-22T00:44:31.348627Z INFO fork_choice_control::block_processor: Validating block with slot: 4053 +2024-09-22T00:44:31.352142Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbd52d00bd1c17c1b8924095c0efa6bd6844dbb679a297bb8312c86cd9f302382, slot: 4053 +2024-09-22T00:44:31.365609Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4053 +2024-09-22T00:44:31.365628Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4053 +2024-09-22T00:44:31.379800Z INFO fork_choice_control::block_processor: Validating block with slot: 5107 +2024-09-22T00:44:31.380878Z INFO fork_choice_control::block_processor: Validating block with slot: 4054 +2024-09-22T00:44:31.381809Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x75d90b6cc0e2cee691969fa84b16b185477383d3ac30adfc525a090aa39cb852, slot: 4054 +2024-09-22T00:44:31.387571Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4054 +2024-09-22T00:44:31.387584Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4054 +2024-09-22T00:44:31.403033Z INFO fork_choice_control::block_processor: Validating block with slot: 4055 +2024-09-22T00:44:31.404393Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6b75b9487390cde47f12e895ad960e49710a579ef0867d2ed7235a50b068de93, slot: 4055 +2024-09-22T00:44:31.411372Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4055 +2024-09-22T00:44:31.411396Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4055 +2024-09-22T00:44:31.432278Z INFO fork_choice_control::block_processor: Validating block with slot: 4056 +2024-09-22T00:44:31.432321Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 125, root: 0x18e1dfbc9dde70d211b983239c3c66efe3d6e3893396a12a1b012fae73b9b056, head slot: 4055, head root: 0x6b75b9487390cde47f12e895ad960e49710a579ef0867d2ed7235a50b068de93) +2024-09-22T00:44:31.433270Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5f610895275f220224ad2c168558b0a3c186bc0ee80340cd90e852ef355ae6bd, slot: 4056 +2024-09-22T00:44:31.439562Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4056 +2024-09-22T00:44:31.439583Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4056 +2024-09-22T00:44:31.455702Z INFO fork_choice_control::block_processor: Validating block with slot: 4057 +2024-09-22T00:44:31.456683Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5b1a91251e3391364c5bad9cb5c39e04c8b3851a1fb62bbae9183cacc3dc8088, slot: 4057 +2024-09-22T00:44:31.463030Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4057 +2024-09-22T00:44:31.463050Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4057 +2024-09-22T00:44:31.479530Z INFO fork_choice_control::block_processor: Validating block with slot: 4058 +2024-09-22T00:44:31.480542Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9be5a59ea220ce4fd31f46d325642ed73aa000b4b70594267046981daa579bdf, slot: 4058 +2024-09-22T00:44:31.486592Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4058 +2024-09-22T00:44:31.486605Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4058 +2024-09-22T00:44:31.502971Z INFO fork_choice_control::block_processor: Validating block with slot: 4059 +2024-09-22T00:44:31.505640Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaad627be1086c74850318909d1f616bcf3b52eff737be6cb5fced3eb9c16005a, slot: 4059 +2024-09-22T00:44:31.511012Z INFO fork_choice_control::block_processor: Validating block with slot: 4896 +2024-09-22T00:44:31.517019Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4059 +2024-09-22T00:44:31.517033Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4059 +2024-09-22T00:44:31.535204Z INFO fork_choice_control::block_processor: Validating block with slot: 4060 +2024-09-22T00:44:31.536423Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x37063613561e0bdde8eb0db9e57031e5fbf6a2bbb38ace142f48522947506c27, slot: 4060 +2024-09-22T00:44:31.538380Z INFO fork_choice_control::block_processor: Validating block with slot: 4985 +2024-09-22T00:44:31.547462Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4060 +2024-09-22T00:44:31.547483Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4060 +2024-09-22T00:44:31.561382Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 4000 +2024-09-22T00:44:31.563732Z INFO fork_choice_control::block_processor: Validating block with slot: 5024 +2024-09-22T00:44:31.563782Z INFO fork_choice_control::block_processor: Validating block with slot: 5108 +2024-09-22T00:44:31.565231Z INFO fork_choice_control::block_processor: Validating block with slot: 4061 +2024-09-22T00:44:31.566374Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb095dd997c39531562d93e7e8bd621c0c2bd91908c03de301da4c83cdd1900bd, slot: 4061 +2024-09-22T00:44:31.573459Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4061 +2024-09-22T00:44:31.573487Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4061 +2024-09-22T00:44:31.579727Z INFO fork_choice_control::block_processor: Validating block with slot: 5025 +2024-09-22T00:44:31.590918Z INFO fork_choice_control::block_processor: Validating block with slot: 4062 +2024-09-22T00:44:31.592179Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5b6754f583f4256ecd2b6105c64548939da69b4c6d9e49a79184afb6b2066854, slot: 4062 +2024-09-22T00:44:31.599109Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4062 +2024-09-22T00:44:31.599127Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4062 +2024-09-22T00:44:31.600087Z INFO fork_choice_control::block_processor: Validating block with slot: 5152 +2024-09-22T00:44:31.602479Z INFO fork_choice_control::block_processor: Validating block with slot: 4897 +2024-09-22T00:44:31.603972Z INFO fork_choice_control::block_processor: Validating block with slot: 4986 +2024-09-22T00:44:31.616683Z INFO fork_choice_control::block_processor: Validating block with slot: 4064 +2024-09-22T00:44:31.618811Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x73fd338cf03b54e93bfd4312bb579611d8a5a3d4130a14dc0bd42bfc3fe80068, slot: 4064 +2024-09-22T00:44:31.634905Z INFO fork_choice_control::block_processor: Validating block with slot: 5109 +2024-09-22T00:44:31.650213Z INFO fork_choice_control::block_processor: Validating block with slot: 5026 +2024-09-22T00:44:31.671280Z INFO fork_choice_control::block_processor: Validating block with slot: 5153 +2024-09-22T00:44:31.698405Z INFO fork_choice_control::block_processor: Validating block with slot: 4898 +2024-09-22T00:44:31.700535Z INFO fork_choice_control::block_processor: Validating block with slot: 4987 +2024-09-22T00:44:31.714562Z INFO fork_choice_control::block_processor: Validating block with slot: 5110 +2024-09-22T00:44:31.724419Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4064 +2024-09-22T00:44:31.724480Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4064 +2024-09-22T00:44:31.731406Z INFO fork_choice_control::block_processor: Validating block with slot: 5027 +2024-09-22T00:44:31.742432Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 4064) +2024-09-22T00:44:31.742760Z INFO fork_choice_control::block_processor: Validating block with slot: 4065 +2024-09-22T00:44:31.745057Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x56a08e5488de946f84514e3e137ba2117e2e88b9e97006b462d7de63f73f7cfc, slot: 4065 +2024-09-22T00:44:31.746138Z INFO fork_choice_control::block_processor: Validating block with slot: 5154 +2024-09-22T00:44:31.759295Z INFO fork_choice_control::block_processor: Validating block with slot: 4899 +2024-09-22T00:44:31.772287Z INFO fork_choice_control::block_processor: Validating block with slot: 4988 +2024-09-22T00:44:31.787943Z INFO fork_choice_control::block_processor: Validating block with slot: 5111 +2024-09-22T00:44:31.804134Z INFO fork_choice_control::block_processor: Validating block with slot: 5028 +2024-09-22T00:44:31.818237Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4065 +2024-09-22T00:44:31.818258Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4065 +2024-09-22T00:44:31.818360Z INFO fork_choice_control::block_processor: Validating block with slot: 5155 +2024-09-22T00:44:31.828732Z INFO fork_choice_control::block_processor: Validating block with slot: 4066 +2024-09-22T00:44:31.829691Z INFO fork_choice_control::block_processor: Validating block with slot: 4900 +2024-09-22T00:44:31.829832Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x73340436209dac5d3d9231e21a43d74dd34f18461cf147d98ecc8805e86b99c9, slot: 4066 +2024-09-22T00:44:31.836345Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4066 +2024-09-22T00:44:31.836358Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4066 +2024-09-22T00:44:31.847405Z INFO fork_choice_control::block_processor: Validating block with slot: 4067 +2024-09-22T00:44:31.848811Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x86a92abc537db0aded7eeaa4e126d417ef6012d60e8078043af3c19eaae76eeb, slot: 4067 +2024-09-22T00:44:31.849238Z INFO fork_choice_control::block_processor: Validating block with slot: 4989 +2024-09-22T00:44:31.856276Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4067 +2024-09-22T00:44:31.856291Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4067 +2024-09-22T00:44:31.862750Z INFO fork_choice_control::block_processor: Validating block with slot: 5112 +2024-09-22T00:44:31.867352Z INFO fork_choice_control::block_processor: Validating block with slot: 4068 +2024-09-22T00:44:31.868296Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0feba4f79169affcd3f5523dbe8c7f4d3716a2f4abee0d59ccba3e025ba13cdb, slot: 4068 +2024-09-22T00:44:31.874792Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4068 +2024-09-22T00:44:31.874829Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4068 +2024-09-22T00:44:31.880186Z INFO fork_choice_control::block_processor: Validating block with slot: 5029 +2024-09-22T00:44:31.885790Z INFO fork_choice_control::block_processor: Validating block with slot: 4069 +2024-09-22T00:44:31.886859Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9616810e79eeaa71f70cef9227a8195cc8c2d22ce89ec1fc5139510bcccd2836, slot: 4069 +2024-09-22T00:44:31.893372Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4069 +2024-09-22T00:44:31.893391Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4069 +2024-09-22T00:44:31.901752Z INFO fork_choice_control::block_processor: Validating block with slot: 5156 +2024-09-22T00:44:31.906244Z INFO fork_choice_control::block_processor: Validating block with slot: 4071 +2024-09-22T00:44:31.908098Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb26868874527fbe79fedbc29d913384bbc8eb20ceae04879e94e748c071e646f, slot: 4071 +2024-09-22T00:44:31.910763Z INFO fork_choice_control::block_processor: Validating block with slot: 4901 +2024-09-22T00:44:31.917591Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4071 +2024-09-22T00:44:31.917602Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4071 +2024-09-22T00:44:31.925914Z INFO fork_choice_control::block_processor: Validating block with slot: 4990 +2024-09-22T00:44:31.929423Z INFO fork_choice_control::block_processor: Validating block with slot: 4072 +2024-09-22T00:44:31.930515Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdf1ce586882e86fcd1c450e393af66430dea543d816fe0274d5cf03c0eaa0c37, slot: 4072 +2024-09-22T00:44:31.936993Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4072 +2024-09-22T00:44:31.937011Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4072 +2024-09-22T00:44:31.948897Z INFO fork_choice_control::block_processor: Validating block with slot: 4073 +2024-09-22T00:44:31.949882Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8d1e0858a2cbe949d7b5fb5a8ae6272b97b3fbdff2fd07003632fad95173571e, slot: 4073 +2024-09-22T00:44:31.955566Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4073 +2024-09-22T00:44:31.955579Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4073 +2024-09-22T00:44:31.959455Z INFO fork_choice_control::block_processor: Validating block with slot: 5030 +2024-09-22T00:44:31.959458Z INFO fork_choice_control::block_processor: Validating block with slot: 5113 +2024-09-22T00:44:31.967820Z INFO fork_choice_control::block_processor: Validating block with slot: 4074 +2024-09-22T00:44:31.969359Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7dcd6475e3d73c4ba5b605f23fba5491876dc8c23c94596eb806be37cc5c3292, slot: 4074 +2024-09-22T00:44:31.972533Z INFO fork_choice_control::block_processor: Validating block with slot: 5157 +2024-09-22T00:44:31.978503Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4074 +2024-09-22T00:44:31.978522Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4074 +2024-09-22T00:44:31.990619Z INFO fork_choice_control::block_processor: Validating block with slot: 4902 +2024-09-22T00:44:31.990659Z INFO fork_choice_control::block_processor: Validating block with slot: 4075 +2024-09-22T00:44:31.992037Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x81a65d7d9f5487f38c2c0d65841a2bfd7b541d4f3daaeed992703f51d6826a2c, slot: 4075 +2024-09-22T00:44:31.998366Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4075 +2024-09-22T00:44:31.998379Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4075 +2024-09-22T00:44:32.003818Z INFO fork_choice_control::block_processor: Validating block with slot: 4991 +2024-09-22T00:44:32.010802Z INFO fork_choice_control::block_processor: Validating block with slot: 4076 +2024-09-22T00:44:32.014595Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc2a2e0077276700dffe87d43d66efda04340c476daaa64fcbbb10ba9ead42441, slot: 4076 +2024-09-22T00:44:32.020666Z INFO fork_choice_control::block_processor: Validating block with slot: 5114 +2024-09-22T00:44:32.027836Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4076 +2024-09-22T00:44:32.027857Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4076 +2024-09-22T00:44:32.037683Z INFO fork_choice_control::block_processor: Validating block with slot: 5031 +2024-09-22T00:44:32.040812Z INFO fork_choice_control::block_processor: Validating block with slot: 4077 +2024-09-22T00:44:32.041771Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeb8d04d1f7ebe4fab35ac7d0dab2a96e7f0ca40c0e3d7d715ebf8c625d0b8530, slot: 4077 +2024-09-22T00:44:32.047371Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4077 +2024-09-22T00:44:32.047384Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4077 +2024-09-22T00:44:32.053280Z INFO fork_choice_control::block_processor: Validating block with slot: 5158 +2024-09-22T00:44:32.053277Z INFO fork_choice_control::block_processor: Validating block with slot: 4903 +2024-09-22T00:44:32.060714Z INFO fork_choice_control::block_processor: Validating block with slot: 4078 +2024-09-22T00:44:32.061847Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe69749dd6fe8a7d95276a956e8240539989f7ab969009584eb66b331d75326a6, slot: 4078 +2024-09-22T00:44:32.067868Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4078 +2024-09-22T00:44:32.067887Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4078 +2024-09-22T00:44:32.081282Z INFO fork_choice_control::block_processor: Validating block with slot: 4079 +2024-09-22T00:44:32.083146Z INFO fork_choice_control::block_processor: Validating block with slot: 4992 +2024-09-22T00:44:32.084762Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3928b29128b84c99978a49f442be52e169e3ace7ac5eeaa13549ed6e630c37a2, slot: 4079 +2024-09-22T00:44:32.096949Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4079 +2024-09-22T00:44:32.096970Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4079 +2024-09-22T00:44:32.100058Z INFO fork_choice_control::block_processor: Validating block with slot: 5115 +2024-09-22T00:44:32.111066Z INFO fork_choice_control::block_processor: Validating block with slot: 4080 +2024-09-22T00:44:32.112887Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1fab242c2c7756583e52af6e34df26e4e9c556e66724a1001112342dcce87d4d, slot: 4080 +2024-09-22T00:44:32.114205Z INFO fork_choice_control::block_processor: Validating block with slot: 5032 +2024-09-22T00:44:32.120834Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4080 +2024-09-22T00:44:32.120845Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4080 +2024-09-22T00:44:32.128921Z INFO fork_choice_control::block_processor: Validating block with slot: 5159 +2024-09-22T00:44:32.135043Z INFO fork_choice_control::block_processor: Validating block with slot: 4081 +2024-09-22T00:44:32.136113Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x300d91e60a8b00079a46186d6ec1328586e90be11ad55583162f172848822d39, slot: 4081 +2024-09-22T00:44:32.142538Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4081 +2024-09-22T00:44:32.142559Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4081 +2024-09-22T00:44:32.152803Z INFO fork_choice_control::block_processor: Validating block with slot: 4904 +2024-09-22T00:44:32.156770Z INFO fork_choice_control::block_processor: Validating block with slot: 4082 +2024-09-22T00:44:32.158352Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xac875fdb2d3894372496b2d73f99e7c280e3121cee06fe47efb2cf0a4ffebce9, slot: 4082 +2024-09-22T00:44:32.159725Z INFO fork_choice_control::block_processor: Validating block with slot: 4993 +2024-09-22T00:44:32.165376Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4082 +2024-09-22T00:44:32.165390Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4082 +2024-09-22T00:44:32.174849Z INFO fork_choice_control::block_processor: Validating block with slot: 5116 +2024-09-22T00:44:32.179958Z INFO fork_choice_control::block_processor: Validating block with slot: 4083 +2024-09-22T00:44:32.181992Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf9ca5d75a782ab76bb216d5afffd4a71c2ebc202817792af1616c0aa579474c1, slot: 4083 +2024-09-22T00:44:32.190958Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4083 +2024-09-22T00:44:32.190979Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4083 +2024-09-22T00:44:32.192159Z INFO fork_choice_control::block_processor: Validating block with slot: 5033 +2024-09-22T00:44:32.205576Z INFO fork_choice_control::block_processor: Validating block with slot: 4084 +2024-09-22T00:44:32.206556Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x66b392602c530bbe1904b32275d7ff556a52ceee68a13582ee58786f61f959cd, slot: 4084 +2024-09-22T00:44:32.208951Z INFO fork_choice_control::block_processor: Validating block with slot: 5160 +2024-09-22T00:44:32.213197Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4084 +2024-09-22T00:44:32.213213Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4084 +2024-09-22T00:44:32.223718Z INFO fork_choice_control::block_processor: Validating block with slot: 4905 +2024-09-22T00:44:32.228580Z INFO fork_choice_control::block_processor: Validating block with slot: 4085 +2024-09-22T00:44:32.229561Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2b9e1a027aa114428170546affe18b525a71366cdb857238cf932baaa33a9cfc, slot: 4085 +2024-09-22T00:44:32.235479Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4085 +2024-09-22T00:44:32.235493Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4085 +2024-09-22T00:44:32.246648Z INFO fork_choice_control::block_processor: Validating block with slot: 4994 +2024-09-22T00:44:32.250847Z INFO fork_choice_control::block_processor: Validating block with slot: 4086 +2024-09-22T00:44:32.252128Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x046ce6745133d840e87ac2a203021887a0962a24ec4dd25ef2a6d50636f7602f, slot: 4086 +2024-09-22T00:44:32.253710Z INFO fork_choice_control::block_processor: Validating block with slot: 5117 +2024-09-22T00:44:32.258899Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4086 +2024-09-22T00:44:32.258920Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4086 +2024-09-22T00:44:32.272637Z INFO fork_choice_control::block_processor: Validating block with slot: 5161 +2024-09-22T00:44:32.272672Z INFO fork_choice_control::block_processor: Validating block with slot: 5034 +2024-09-22T00:44:32.274512Z INFO fork_choice_control::block_processor: Validating block with slot: 4087 +2024-09-22T00:44:32.275609Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x80049a734bd980bf9ca99b6a55c18171d86a81d74c251ce5be4d391d5b335023, slot: 4087 +2024-09-22T00:44:32.281543Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4087 +2024-09-22T00:44:32.281558Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4087 +2024-09-22T00:44:32.302123Z INFO fork_choice_control::block_processor: Validating block with slot: 4088 +2024-09-22T00:44:32.302129Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 126, root: 0x533fd8c5d0cd131e54b510681294227e5918a57b506961c64dd2bd88778aa159, head slot: 4087, head root: 0x80049a734bd980bf9ca99b6a55c18171d86a81d74c251ce5be4d391d5b335023) +2024-09-22T00:44:32.303110Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe524357a679a625bf94a51cbd41c9110da40e4aa505e4c3d15f5c7a221dbc6b1, slot: 4088 +2024-09-22T00:44:32.309950Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4088 +2024-09-22T00:44:32.309973Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4088 +2024-09-22T00:44:32.311838Z INFO fork_choice_control::block_processor: Validating block with slot: 4906 +2024-09-22T00:44:32.315329Z INFO fork_choice_control::block_processor: Validating block with slot: 4995 +2024-09-22T00:44:32.326281Z INFO fork_choice_control::block_processor: Validating block with slot: 4089 +2024-09-22T00:44:32.327400Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x62a1dc7483eaa3575ba5ab72d10b1d56c65009e5a1dc7bf231bede1f50adf5dc, slot: 4089 +2024-09-22T00:44:32.333157Z INFO fork_choice_control::block_processor: Validating block with slot: 5118 +2024-09-22T00:44:32.334546Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4089 +2024-09-22T00:44:32.334557Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4089 +2024-09-22T00:44:32.348491Z INFO fork_choice_control::block_processor: Validating block with slot: 5035 +2024-09-22T00:44:32.350758Z INFO fork_choice_control::block_processor: Validating block with slot: 4090 +2024-09-22T00:44:32.351850Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2e04392310ef05206bca8abf9de0715fd8346933e24b0eaf3da642578414dc2a, slot: 4090 +2024-09-22T00:44:32.360049Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4090 +2024-09-22T00:44:32.360070Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4090 +2024-09-22T00:44:32.364036Z INFO fork_choice_control::block_processor: Validating block with slot: 5162 +2024-09-22T00:44:32.376702Z INFO fork_choice_control::block_processor: Validating block with slot: 4091 +2024-09-22T00:44:32.378387Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x92dde3962f974e6680200e1ab10ad3bc0fb11de882e7b3eb86938e6b7da7411b, slot: 4091 +2024-09-22T00:44:32.383092Z INFO fork_choice_control::block_processor: Validating block with slot: 4907 +2024-09-22T00:44:32.387511Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4091 +2024-09-22T00:44:32.387522Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4091 +2024-09-22T00:44:32.394590Z INFO fork_choice_control::block_processor: Validating block with slot: 4996 +2024-09-22T00:44:32.404131Z INFO fork_choice_control::block_processor: Validating block with slot: 4092 +2024-09-22T00:44:32.405369Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3aa6bcbe7e58788c932983aebe86551b3ecbaddee6e5340582ce337aa69b723d, slot: 4092 +2024-09-22T00:44:32.412384Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4092 +2024-09-22T00:44:32.412402Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4092 +2024-09-22T00:44:32.419312Z INFO fork_choice_control::block_processor: Validating block with slot: 5119 +2024-09-22T00:44:32.429500Z INFO fork_choice_control::block_processor: Validating block with slot: 4093 +2024-09-22T00:44:32.430407Z INFO fork_choice_control::block_processor: Validating block with slot: 5037 +2024-09-22T00:44:32.430748Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe411092fc52d81b98a48427b1b97c0df18b3ae1d68fe4d1e26ed7cc09b929dfb, slot: 4093 +2024-09-22T00:44:32.432001Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 4032 +2024-09-22T00:44:32.438132Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4093 +2024-09-22T00:44:32.438148Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4093 +2024-09-22T00:44:32.440877Z INFO fork_choice_control::block_processor: Validating block with slot: 5163 +2024-09-22T00:44:32.455060Z INFO fork_choice_control::block_processor: Validating block with slot: 4094 +2024-09-22T00:44:32.456101Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x330cc90d97834ea0e08ab5bdcb0ee32200dbdab142935c59fb27e82183d2f18f, slot: 4094 +2024-09-22T00:44:32.457155Z INFO fork_choice_control::block_processor: Validating block with slot: 4908 +2024-09-22T00:44:32.462776Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4094 +2024-09-22T00:44:32.462794Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4094 +2024-09-22T00:44:32.472968Z INFO fork_choice_control::block_processor: Validating block with slot: 4997 +2024-09-22T00:44:32.480652Z INFO fork_choice_control::block_processor: Validating block with slot: 4095 +2024-09-22T00:44:32.481768Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdaab5b56db23cd5d63aee91cba59c098b42fa6aab47541f9dd2a6ca71535de5b, slot: 4095 +2024-09-22T00:44:32.488703Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4095 +2024-09-22T00:44:32.488722Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4095 +2024-09-22T00:44:32.489385Z INFO fork_choice_control::block_processor: Validating block with slot: 5120 +2024-09-22T00:44:32.495665Z INFO fork_choice_control::block_processor: Validating block with slot: 5038 +2024-09-22T00:44:32.506141Z INFO fork_choice_control::block_processor: Validating block with slot: 4096 +2024-09-22T00:44:32.507256Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0ddeea949d02a96bbe824ae05310bb2da4e0e67fdf04c00e98373e32cb9defdc, slot: 4096 +2024-09-22T00:44:32.518896Z INFO fork_choice_control::block_processor: Validating block with slot: 5164 +2024-09-22T00:44:32.536103Z INFO fork_choice_control::block_processor: Validating block with slot: 4909 +2024-09-22T00:44:32.563333Z INFO fork_choice_control::block_processor: Validating block with slot: 4998 +2024-09-22T00:44:32.571367Z INFO fork_choice_control::block_processor: Validating block with slot: 5121 +2024-09-22T00:44:32.583782Z INFO fork_choice_control::block_processor: Validating block with slot: 5039 +2024-09-22T00:44:32.608674Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4096 +2024-09-22T00:44:32.608696Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4096 +2024-09-22T00:44:32.618249Z INFO fork_choice_control::block_processor: Validating block with slot: 4910 +2024-09-22T00:44:32.618277Z INFO fork_choice_control::block_processor: Validating block with slot: 5167 +2024-09-22T00:44:32.619273Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 4096) +2024-09-22T00:44:32.619460Z INFO fork_choice_control::block_processor: Validating block with slot: 4097 +2024-09-22T00:44:32.620915Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfdf1610edd1cb3c9c484d730e6723e4ed01acac671a908d26967a7cf610b1a3a, slot: 4097 +2024-09-22T00:44:32.631377Z INFO fork_choice_control::block_processor: Validating block with slot: 4999 +2024-09-22T00:44:32.646653Z INFO fork_choice_control::block_processor: Validating block with slot: 5122 +2024-09-22T00:44:32.660117Z INFO fork_choice_control::block_processor: Validating block with slot: 5040 +2024-09-22T00:44:32.697093Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4097 +2024-09-22T00:44:32.697111Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4097 +2024-09-22T00:44:32.707993Z INFO fork_choice_control::block_processor: Validating block with slot: 4098 +2024-09-22T00:44:32.709263Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe7373dc3328fe69bfdc869a76c8a6e4a4743a3fd4c9474e593d20693e008e45c, slot: 4098 +2024-09-22T00:44:32.716373Z INFO fork_choice_control::block_processor: Validating block with slot: 5168 +2024-09-22T00:44:32.717466Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4098 +2024-09-22T00:44:32.717479Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4098 +2024-09-22T00:44:32.728573Z INFO fork_choice_control::block_processor: Validating block with slot: 4099 +2024-09-22T00:44:32.729671Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3f4777b74dd187191deeda0f8f04f15a7d7e12c28a429ed396489557b39a313c, slot: 4099 +2024-09-22T00:44:32.736229Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4099 +2024-09-22T00:44:32.736241Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4099 +2024-09-22T00:44:32.747442Z INFO fork_choice_control::block_processor: Validating block with slot: 4100 +2024-09-22T00:44:32.749686Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2ab32510a8a29c726199df75a9df6bf6433c7f6e532113fc2c6df4442c19c5d3, slot: 4100 +2024-09-22T00:44:32.760974Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4100 +2024-09-22T00:44:32.760993Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4100 +2024-09-22T00:44:32.772408Z INFO fork_choice_control::block_processor: Validating block with slot: 4101 +2024-09-22T00:44:32.773524Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x461b718911b7775561c2a9a1cbc7f4dd695db83b9f41d93e24eb11631c44c7c3, slot: 4101 +2024-09-22T00:44:32.781988Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4101 +2024-09-22T00:44:32.782009Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4101 +2024-09-22T00:44:32.793910Z INFO fork_choice_control::block_processor: Validating block with slot: 4102 +2024-09-22T00:44:32.795303Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x819fc31865d5172aff952014bcdf092bda2384f85c401ce51b1ed1e7d64585ab, slot: 4102 +2024-09-22T00:44:32.802678Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4102 +2024-09-22T00:44:32.802691Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4102 +2024-09-22T00:44:32.814468Z INFO fork_choice_control::block_processor: Validating block with slot: 4103 +2024-09-22T00:44:32.815721Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x109c1cfe47536e224ce99c8b25d69e33c81a0d807db2de62190c20677f15ba39, slot: 4103 +2024-09-22T00:44:32.823014Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4103 +2024-09-22T00:44:32.823034Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4103 +2024-09-22T00:44:32.834967Z INFO fork_choice_control::block_processor: Validating block with slot: 4104 +2024-09-22T00:44:32.836368Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4b7ec1342ad1761ead856440a7c568ed260493fb8453f67c3150b6023867d998, slot: 4104 +2024-09-22T00:44:32.844755Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4104 +2024-09-22T00:44:32.844776Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4104 +2024-09-22T00:44:32.857083Z INFO fork_choice_control::block_processor: Validating block with slot: 4105 +2024-09-22T00:44:32.858105Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9887ce4af1e4de2b3d1b48a21e129d92d468b97d2d7f7a33537d0ddfa54b9f55, slot: 4105 +2024-09-22T00:44:32.863929Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4105 +2024-09-22T00:44:32.863941Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4105 +2024-09-22T00:44:32.876247Z INFO fork_choice_control::block_processor: Validating block with slot: 4106 +2024-09-22T00:44:32.878255Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6a44584387c58247ea1d74eb732f45e492e5a893bdae097a29133a5761d1bfcf, slot: 4106 +2024-09-22T00:44:32.895646Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4106 +2024-09-22T00:44:32.895669Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4106 +2024-09-22T00:44:32.909008Z INFO fork_choice_control::block_processor: Validating block with slot: 4107 +2024-09-22T00:44:32.910630Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcf860acb088cb5ae6140448e55aee511a5cdbf452a109e4aa9b69538c28856d4, slot: 4107 +2024-09-22T00:44:32.933483Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4107 +2024-09-22T00:44:32.933522Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4107 +2024-09-22T00:44:32.947481Z INFO fork_choice_control::block_processor: Validating block with slot: 4109 +2024-09-22T00:44:32.950359Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x44299b7f1c33ac24c4a91ff97fbf3ee3f3371a5ba8563b3571759801f5167eef, slot: 4109 +2024-09-22T00:44:32.962753Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4109 +2024-09-22T00:44:32.962774Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4109 +2024-09-22T00:44:32.976037Z INFO fork_choice_control::block_processor: Validating block with slot: 4110 +2024-09-22T00:44:32.977167Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8ed71916af0e8e5037035998d6b170dee81f78d37a1715c983444cb926dee9e6, slot: 4110 +2024-09-22T00:44:32.983385Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4110 +2024-09-22T00:44:32.983398Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4110 +2024-09-22T00:44:32.996816Z INFO fork_choice_control::block_processor: Validating block with slot: 4111 +2024-09-22T00:44:32.997781Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x514ec14121e433f3236a6ec5b6b9fa7f197cedff5764e1ebd27888211e424150, slot: 4111 +2024-09-22T00:44:33.004034Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4111 +2024-09-22T00:44:33.004054Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4111 +2024-09-22T00:44:33.017625Z INFO fork_choice_control::block_processor: Validating block with slot: 4112 +2024-09-22T00:44:33.018990Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3f8e2f5e4a5085d28d953141d1ec3afdbe575e457e3ca91c1cf19dc26f7a2bb7, slot: 4112 +2024-09-22T00:44:33.025948Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4112 +2024-09-22T00:44:33.025970Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4112 +2024-09-22T00:44:33.035014Z INFO fork_choice_control::block_processor: Validating block with slot: 4911 +2024-09-22T00:44:33.035018Z INFO fork_choice_control::block_processor: Validating block with slot: 4912 +2024-09-22T00:44:33.039940Z INFO fork_choice_control::block_processor: Validating block with slot: 4113 +2024-09-22T00:44:33.040921Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaca18a21fa9e2dd591589b0a73f033312b5d857dd4f3ffe1d309b10f9ab8ec15, slot: 4113 +2024-09-22T00:44:33.045236Z INFO fork_choice_control::block_processor: Validating block with slot: 4913 +2024-09-22T00:44:33.048540Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4113 +2024-09-22T00:44:33.048555Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4113 +2024-09-22T00:44:33.063290Z INFO fork_choice_control::block_processor: Validating block with slot: 4114 +2024-09-22T00:44:33.064642Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0755d09266333e3a6c7613993da492fa8262cd49f40e74379cff3311de786046, slot: 4114 +2024-09-22T00:44:33.072236Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4114 +2024-09-22T00:44:33.072253Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4114 +2024-09-22T00:44:33.081832Z INFO fork_choice_control::block_processor: Validating block with slot: 4916 +2024-09-22T00:44:33.081851Z INFO fork_choice_control::block_processor: Validating block with slot: 4917 +2024-09-22T00:44:33.081876Z INFO fork_choice_control::block_processor: Validating block with slot: 4918 +2024-09-22T00:44:33.081882Z INFO fork_choice_control::block_processor: Validating block with slot: 4914 +2024-09-22T00:44:33.081923Z INFO fork_choice_control::block_processor: Validating block with slot: 4920 +2024-09-22T00:44:33.082306Z INFO fork_choice_control::block_processor: Validating block with slot: 4915 +2024-09-22T00:44:33.083163Z INFO fork_choice_control::block_processor: Validating block with slot: 4921 +2024-09-22T00:44:33.084246Z INFO fork_choice_control::block_processor: Validating block with slot: 4922 +2024-09-22T00:44:33.084428Z INFO fork_choice_control::block_processor: Validating block with slot: 4923 +2024-09-22T00:44:33.084576Z INFO fork_choice_control::block_processor: Validating block with slot: 4919 +2024-09-22T00:44:33.086157Z INFO fork_choice_control::block_processor: Validating block with slot: 4924 +2024-09-22T00:44:33.086339Z INFO fork_choice_control::block_processor: Validating block with slot: 4930 +2024-09-22T00:44:33.086762Z INFO fork_choice_control::block_processor: Validating block with slot: 4925 +2024-09-22T00:44:33.086966Z INFO fork_choice_control::block_processor: Validating block with slot: 4931 +2024-09-22T00:44:33.087422Z INFO fork_choice_control::block_processor: Validating block with slot: 5041 +2024-09-22T00:44:33.088373Z INFO fork_choice_control::block_processor: Validating block with slot: 5123 +2024-09-22T00:44:33.088859Z INFO fork_choice_control::block_processor: Validating block with slot: 4932 +2024-09-22T00:44:33.090982Z INFO fork_choice_control::block_processor: Validating block with slot: 5000 +2024-09-22T00:44:33.092361Z INFO fork_choice_control::block_processor: Validating block with slot: 5169 +2024-09-22T00:44:33.092596Z INFO fork_choice_control::block_processor: Validating block with slot: 4927 +2024-09-22T00:44:33.092894Z INFO fork_choice_control::block_processor: Validating block with slot: 4933 +2024-09-22T00:44:33.093402Z INFO fork_choice_control::block_processor: Validating block with slot: 4115 +2024-09-22T00:44:33.094137Z INFO fork_choice_control::block_processor: Validating block with slot: 4928 +2024-09-22T00:44:33.094534Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaf2d5d1b133c22def7b37589f3a860f3a8683f37f8078a2a95947ef9bcd4e9db, slot: 4115 +2024-09-22T00:44:33.094670Z INFO fork_choice_control::block_processor: Validating block with slot: 4929 +2024-09-22T00:44:33.101962Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4115 +2024-09-22T00:44:33.101985Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4115 +2024-09-22T00:44:33.110715Z INFO fork_choice_control::block_processor: Validating block with slot: 5001 +2024-09-22T00:44:33.118499Z INFO fork_choice_control::block_processor: Validating block with slot: 4116 +2024-09-22T00:44:33.120129Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb2ebb75c519d6121ddca54f43b70319464fc6dd0540e5611f6d2dfe62d6fb2c4, slot: 4116 +2024-09-22T00:44:33.129193Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4116 +2024-09-22T00:44:33.129214Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4116 +2024-09-22T00:44:33.140981Z INFO fork_choice_control::block_processor: Validating block with slot: 5042 +2024-09-22T00:44:33.141172Z INFO fork_choice_control::block_processor: Validating block with slot: 5124 +2024-09-22T00:44:33.144211Z INFO fork_choice_control::block_processor: Validating block with slot: 4117 +2024-09-22T00:44:33.145294Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbaebda7ff81f7d76aff28cc3263ba51d79449ddfdc59c8843de57a3a4b7b7df2, slot: 4117 +2024-09-22T00:44:33.151158Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4117 +2024-09-22T00:44:33.151171Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4117 +2024-09-22T00:44:33.165845Z INFO fork_choice_control::block_processor: Validating block with slot: 4119 +2024-09-22T00:44:33.168165Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4202679a416ac1d85d6d40c2409896be7ea47aac896aae8b5c252dcda234ec59, slot: 4119 +2024-09-22T00:44:33.179082Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4119 +2024-09-22T00:44:33.179103Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4119 +2024-09-22T00:44:33.199436Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 127, root: 0x73fd338cf03b54e93bfd4312bb579611d8a5a3d4130a14dc0bd42bfc3fe80068, head slot: 4119, head root: 0x4202679a416ac1d85d6d40c2409896be7ea47aac896aae8b5c252dcda234ec59) +2024-09-22T00:44:33.199506Z INFO fork_choice_control::block_processor: Validating block with slot: 4120 +2024-09-22T00:44:33.201988Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x954877163d0cd4e9a75dab4a86c4bac50640c2143743dfbb94ad1cacea416682, slot: 4120 +2024-09-22T00:44:33.214399Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4120 +2024-09-22T00:44:33.214419Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4120 +2024-09-22T00:44:33.230341Z INFO fork_choice_control::block_processor: Validating block with slot: 4122 +2024-09-22T00:44:33.232021Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7692bf22c5f2d63a80eff6e227ae0d4d42e2892b48b601121c843795123f109d, slot: 4122 +2024-09-22T00:44:33.243602Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4122 +2024-09-22T00:44:33.243625Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4122 +2024-09-22T00:44:33.252160Z INFO fork_choice_control::block_processor: Validating block with slot: 5170 +2024-09-22T00:44:33.259845Z INFO fork_choice_control::block_processor: Validating block with slot: 4123 +2024-09-22T00:44:33.260970Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd4a2abb1712cd8e085939454683a8d94c5a8b905a971235bf33e81b1d293379d, slot: 4123 +2024-09-22T00:44:33.267299Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4123 +2024-09-22T00:44:33.267313Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4123 +2024-09-22T00:44:33.283433Z INFO fork_choice_control::block_processor: Validating block with slot: 4124 +2024-09-22T00:44:33.284713Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8d88c43ff6ab22b941211412ab8d5106942a1e7581e0939030b09409854a0790, slot: 4124 +2024-09-22T00:44:33.292527Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4124 +2024-09-22T00:44:33.292549Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4124 +2024-09-22T00:44:33.308900Z INFO fork_choice_control::block_processor: Validating block with slot: 4125 +2024-09-22T00:44:33.310319Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xff61c01bdd6f83741bcb164f6200fe756aa87f1642303b655647c2263bedede5, slot: 4125 +2024-09-22T00:44:33.318986Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4125 +2024-09-22T00:44:33.319004Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4125 +2024-09-22T00:44:33.329011Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 4064 +2024-09-22T00:44:33.335507Z INFO fork_choice_control::block_processor: Validating block with slot: 4126 +2024-09-22T00:44:33.337066Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd60ab91f372c4a1c0df9a2c78a638e6fc37b28502db6a90f3f51d8f89845029d, slot: 4126 +2024-09-22T00:44:33.344957Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4126 +2024-09-22T00:44:33.344978Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4126 +2024-09-22T00:44:33.362081Z INFO fork_choice_control::block_processor: Validating block with slot: 4127 +2024-09-22T00:44:33.363778Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x20d6112566106b8443a63d80ee207b4269f278a4ac4c4a411ea296e13e88d08f, slot: 4127 +2024-09-22T00:44:33.374883Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4127 +2024-09-22T00:44:33.374903Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4127 +2024-09-22T00:44:33.392448Z INFO fork_choice_control::block_processor: Validating block with slot: 4128 +2024-09-22T00:44:33.393563Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfe9b000c35a0e1dc4372ce89523cbc5c7e99088e89cb775d15fb6bd97f398500, slot: 4128 +2024-09-22T00:44:33.492629Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4128 +2024-09-22T00:44:33.492653Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4128 +2024-09-22T00:44:33.500214Z INFO fork_choice_control::block_processor: Validating block with slot: 4934 +2024-09-22T00:44:33.503212Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 4128) +2024-09-22T00:44:33.503349Z INFO fork_choice_control::block_processor: Validating block with slot: 4129 +2024-09-22T00:44:33.504580Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4d543f283e06c7802720bf3f40678bd50e00df1b58d7ee20c359c5f53650cf0e, slot: 4129 +2024-09-22T00:44:33.506754Z INFO fork_choice_control::block_processor: Validating block with slot: 4935 +2024-09-22T00:44:33.506824Z INFO fork_choice_control::block_processor: Validating block with slot: 4936 +2024-09-22T00:44:33.506850Z INFO fork_choice_control::block_processor: Validating block with slot: 4937 +2024-09-22T00:44:33.506901Z INFO fork_choice_control::block_processor: Validating block with slot: 4938 +2024-09-22T00:44:33.516724Z INFO fork_choice_control::block_processor: Validating block with slot: 4940 +2024-09-22T00:44:33.516728Z INFO fork_choice_control::block_processor: Validating block with slot: 4939 +2024-09-22T00:44:33.516775Z INFO fork_choice_control::block_processor: Validating block with slot: 4941 +2024-09-22T00:44:33.516870Z INFO fork_choice_control::block_processor: Validating block with slot: 4942 +2024-09-22T00:44:33.542591Z INFO fork_choice_control::block_processor: Validating block with slot: 4944 +2024-09-22T00:44:33.542630Z INFO fork_choice_control::block_processor: Validating block with slot: 4947 +2024-09-22T00:44:33.542650Z INFO fork_choice_control::block_processor: Validating block with slot: 4946 +2024-09-22T00:44:33.542658Z INFO fork_choice_control::block_processor: Validating block with slot: 4945 +2024-09-22T00:44:33.543145Z INFO fork_choice_control::block_processor: Validating block with slot: 5043 +2024-09-22T00:44:33.543723Z INFO fork_choice_control::block_processor: Validating block with slot: 5125 +2024-09-22T00:44:33.544411Z INFO fork_choice_control::block_processor: Validating block with slot: 4948 +2024-09-22T00:44:33.544705Z INFO fork_choice_control::block_processor: Validating block with slot: 4949 +2024-09-22T00:44:33.545257Z INFO fork_choice_control::block_processor: Validating block with slot: 4950 +2024-09-22T00:44:33.545267Z INFO fork_choice_control::block_processor: Validating block with slot: 4951 +2024-09-22T00:44:33.545350Z INFO fork_choice_control::block_processor: Validating block with slot: 4952 +2024-09-22T00:44:33.546160Z INFO fork_choice_control::block_processor: Validating block with slot: 4953 +2024-09-22T00:44:33.546289Z INFO fork_choice_control::block_processor: Validating block with slot: 4954 +2024-09-22T00:44:33.546339Z INFO fork_choice_control::block_processor: Validating block with slot: 5002 +2024-09-22T00:44:33.546999Z INFO fork_choice_control::block_processor: Validating block with slot: 5171 +2024-09-22T00:44:33.547408Z INFO fork_choice_control::block_processor: Validating block with slot: 4955 +2024-09-22T00:44:33.577921Z INFO fork_choice_control::block_processor: Validating block with slot: 5003 +2024-09-22T00:44:33.579967Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4129 +2024-09-22T00:44:33.579978Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4129 +2024-09-22T00:44:33.585461Z INFO fork_choice_control::block_processor: Validating block with slot: 5126 +2024-09-22T00:44:33.590362Z INFO fork_choice_control::block_processor: Validating block with slot: 4130 +2024-09-22T00:44:33.591468Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x949123cde763cdd957d2c4f88ae085c8189ee345ea23cd2e7700cc6b5f59fe9e, slot: 4130 +2024-09-22T00:44:33.597799Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4130 +2024-09-22T00:44:33.597813Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4130 +2024-09-22T00:44:33.599324Z INFO fork_choice_control::block_processor: Validating block with slot: 5044 +2024-09-22T00:44:33.608243Z INFO fork_choice_control::block_processor: Validating block with slot: 5172 +2024-09-22T00:44:33.608620Z INFO fork_choice_control::block_processor: Validating block with slot: 4131 +2024-09-22T00:44:33.609580Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x42f4fb41237bf5dbcf06ad4090f5b6a4ab09f371f991220355b9ce5483dbdfd4, slot: 4131 +2024-09-22T00:44:33.615908Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4131 +2024-09-22T00:44:33.615920Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4131 +2024-09-22T00:44:33.622669Z INFO fork_choice_control::block_processor: Validating block with slot: 4956 +2024-09-22T00:44:33.627080Z INFO fork_choice_control::block_processor: Validating block with slot: 4132 +2024-09-22T00:44:33.628465Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe6f0d4c150dc45f55625d8e786ca82ea128b465e57252c5448af3aa6bb4202cf, slot: 4132 +2024-09-22T00:44:33.636668Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4132 +2024-09-22T00:44:33.636681Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4132 +2024-09-22T00:44:33.636805Z INFO fork_choice_control::block_processor: Validating block with slot: 5004 +2024-09-22T00:44:33.647776Z INFO fork_choice_control::block_processor: Validating block with slot: 4133 +2024-09-22T00:44:33.650732Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc88b89ed2dde91830d698952a170fe8a1f3f7457f9986cafcc19b9f848bc4e8d, slot: 4133 +2024-09-22T00:44:33.664950Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4133 +2024-09-22T00:44:33.664972Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4133 +2024-09-22T00:44:33.676841Z INFO fork_choice_control::block_processor: Validating block with slot: 4134 +2024-09-22T00:44:33.677832Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x611fd1c2cbac243a1a69e5310e1cdeeac3f84390bdffa769be438181205bf4d6, slot: 4134 +2024-09-22T00:44:33.684222Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4134 +2024-09-22T00:44:33.684233Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4134 +2024-09-22T00:44:33.695930Z INFO fork_choice_control::block_processor: Validating block with slot: 4135 +2024-09-22T00:44:33.698037Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8964312e4159b5b20bf503150264bd72068a2febb8ef247feec19de9a950b0d9, slot: 4135 +2024-09-22T00:44:33.708096Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4135 +2024-09-22T00:44:33.708117Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4135 +2024-09-22T00:44:33.720295Z INFO fork_choice_control::block_processor: Validating block with slot: 4136 +2024-09-22T00:44:33.721258Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4d5ab301ca5bf446a5f77ad9c72665ae6ef600c8ac284d1c694f478df2bac73b, slot: 4136 +2024-09-22T00:44:33.723216Z INFO fork_choice_control::block_processor: Validating block with slot: 5045 +2024-09-22T00:44:33.723230Z INFO fork_choice_control::block_processor: Validating block with slot: 5173 +2024-09-22T00:44:33.723300Z INFO fork_choice_control::block_processor: Validating block with slot: 5047 +2024-09-22T00:44:33.723427Z INFO fork_choice_control::block_processor: Validating block with slot: 5127 +2024-09-22T00:44:33.723976Z INFO fork_choice_control::block_processor: Validating block with slot: 4957 +2024-09-22T00:44:33.724438Z INFO fork_choice_control::block_processor: Validating block with slot: 5005 +2024-09-22T00:44:33.732771Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4136 +2024-09-22T00:44:33.732792Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4136 +2024-09-22T00:44:33.745014Z INFO fork_choice_control::block_processor: Validating block with slot: 4137 +2024-09-22T00:44:33.746267Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x41fe5fc178e96ee0dc08ad60455aa92c177b1c17f4ad2993a31b20c81fb26983, slot: 4137 +2024-09-22T00:44:33.752799Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4137 +2024-09-22T00:44:33.752815Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4137 +2024-09-22T00:44:33.760000Z INFO fork_choice_control::block_processor: Validating block with slot: 5128 +2024-09-22T00:44:33.760003Z INFO fork_choice_control::block_processor: Validating block with slot: 5048 +2024-09-22T00:44:33.765296Z INFO fork_choice_control::block_processor: Validating block with slot: 4138 +2024-09-22T00:44:33.767731Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3d5140e13a0d8506df7d815f090f625bc2e0c202ab149a481b99fee4cca016e1, slot: 4138 +2024-09-22T00:44:33.773639Z INFO fork_choice_control::block_processor: Validating block with slot: 5174 +2024-09-22T00:44:33.778643Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4138 +2024-09-22T00:44:33.778659Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4138 +2024-09-22T00:44:33.785392Z INFO fork_choice_control::block_processor: Validating block with slot: 4958 +2024-09-22T00:44:33.791544Z INFO fork_choice_control::block_processor: Validating block with slot: 4140 +2024-09-22T00:44:33.793328Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xff7d6a2f824fc546466d950a5fb1323a665281e9287f988f547c4cbed054dcaf, slot: 4140 +2024-09-22T00:44:33.801567Z INFO fork_choice_control::block_processor: Validating block with slot: 5006 +2024-09-22T00:44:33.803176Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4140 +2024-09-22T00:44:33.803186Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4140 +2024-09-22T00:44:33.816091Z INFO fork_choice_control::block_processor: Validating block with slot: 4141 +2024-09-22T00:44:33.817046Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x324529bacf573713dd2028712ba2fbfd94c390c6a6455de62d944dc1616ae849, slot: 4141 +2024-09-22T00:44:33.821572Z INFO fork_choice_control::block_processor: Validating block with slot: 5129 +2024-09-22T00:44:33.823481Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4141 +2024-09-22T00:44:33.823499Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4141 +2024-09-22T00:44:33.836371Z INFO fork_choice_control::block_processor: Validating block with slot: 5049 +2024-09-22T00:44:33.836745Z INFO fork_choice_control::block_processor: Validating block with slot: 4142 +2024-09-22T00:44:33.837690Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3209e1ab514030d707d3d91505dfc0024ce8bd5b47121c8fe75ce9bca7578252, slot: 4142 +2024-09-22T00:44:33.844122Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4142 +2024-09-22T00:44:33.844141Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4142 +2024-09-22T00:44:33.852907Z INFO fork_choice_control::block_processor: Validating block with slot: 5175 +2024-09-22T00:44:33.857618Z INFO fork_choice_control::block_processor: Validating block with slot: 4143 +2024-09-22T00:44:33.859159Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x72c808fa6315d7ecea6ff483a6bce1c21520ec82a2844a8a14e7eeb0f4e37eff, slot: 4143 +2024-09-22T00:44:33.865055Z INFO fork_choice_control::block_processor: Validating block with slot: 4959 +2024-09-22T00:44:33.866363Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4143 +2024-09-22T00:44:33.866373Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4143 +2024-09-22T00:44:33.879933Z INFO fork_choice_control::block_processor: Validating block with slot: 4144 +2024-09-22T00:44:33.879951Z INFO fork_choice_control::block_processor: Validating block with slot: 5007 +2024-09-22T00:44:33.880924Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3a8fb445bf09f9a409af58dbb8918fe3fba110256137e7b05393bd0e9b05da65, slot: 4144 +2024-09-22T00:44:33.886714Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4144 +2024-09-22T00:44:33.886726Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4144 +2024-09-22T00:44:33.895870Z INFO fork_choice_control::block_processor: Validating block with slot: 5130 +2024-09-22T00:44:33.900482Z INFO fork_choice_control::block_processor: Validating block with slot: 4145 +2024-09-22T00:44:33.902394Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x069011b17552742a5b98ca80adba8f2268dce756727cfb7f544afaeda25989ee, slot: 4145 +2024-09-22T00:44:33.910448Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4145 +2024-09-22T00:44:33.910468Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4145 +2024-09-22T00:44:33.912288Z INFO fork_choice_control::block_processor: Validating block with slot: 5050 +2024-09-22T00:44:33.924583Z INFO fork_choice_control::block_processor: Validating block with slot: 4146 +2024-09-22T00:44:33.925705Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x03348f4c2624e9a9cc628f7dbf1f67d32032ec4a3cf3f1d49552b7c7393780d6, slot: 4146 +2024-09-22T00:44:33.929151Z INFO fork_choice_control::block_processor: Validating block with slot: 5176 +2024-09-22T00:44:33.932868Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4146 +2024-09-22T00:44:33.932883Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4146 +2024-09-22T00:44:33.941067Z INFO fork_choice_control::block_processor: Validating block with slot: 5008 +2024-09-22T00:44:33.948426Z INFO fork_choice_control::block_processor: Validating block with slot: 4147 +2024-09-22T00:44:33.949545Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x210baff196e6c7a71d35e2054d2800086e0aff3bcc5976acbe2e1604ac980a1d, slot: 4147 +2024-09-22T00:44:33.956162Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4147 +2024-09-22T00:44:33.956191Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4147 +2024-09-22T00:44:33.959407Z INFO fork_choice_control::block_processor: Validating block with slot: 5131 +2024-09-22T00:44:33.971097Z INFO fork_choice_control::block_processor: Validating block with slot: 4148 +2024-09-22T00:44:33.971368Z INFO fork_choice_control::block_processor: Validating block with slot: 5051 +2024-09-22T00:44:33.972066Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x002fb18cba901434bcc98a27ffd41444e0dfcce5ff3afbf524b1d4fde1e365c6, slot: 4148 +2024-09-22T00:44:33.977990Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4148 +2024-09-22T00:44:33.978010Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4148 +2024-09-22T00:44:33.990240Z INFO fork_choice_control::block_processor: Validating block with slot: 5177 +2024-09-22T00:44:33.995118Z INFO fork_choice_control::block_processor: Validating block with slot: 4149 +2024-09-22T00:44:33.996324Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0ebb329db3f9f9067698ba52769e3daf52f6ca1f4833d7fbdd9e8322825b627c, slot: 4149 +2024-09-22T00:44:34.035387Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4149 +2024-09-22T00:44:34.035425Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4149 +2024-09-22T00:44:34.042710Z INFO fork_choice_control::block_processor: Validating block with slot: 5009 +2024-09-22T00:44:34.043089Z INFO fork_choice_control::block_processor: Validating block with slot: 5132 +2024-09-22T00:44:34.046599Z INFO fork_choice_control::block_processor: Validating block with slot: 5052 +2024-09-22T00:44:34.058926Z INFO fork_choice_control::block_processor: Validating block with slot: 5178 +2024-09-22T00:44:34.062193Z INFO fork_choice_control::block_processor: Validating block with slot: 4150 +2024-09-22T00:44:34.063270Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x45a884472661b276d4166d88132853606a90108aff25ded36493e98a003e10dd, slot: 4150 +2024-09-22T00:44:34.069568Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4150 +2024-09-22T00:44:34.069594Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4150 +2024-09-22T00:44:34.071909Z INFO fork_choice_control::block_processor: Validating block with slot: 5010 +2024-09-22T00:44:34.082562Z INFO fork_choice_control::block_processor: Validating block with slot: 5133 +2024-09-22T00:44:34.085119Z INFO fork_choice_control::block_processor: Validating block with slot: 4151 +2024-09-22T00:44:34.087003Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8958214bce575469b98c7dfd9822be9c78c23c3012eddce090ac8c6a53560dd8, slot: 4151 +2024-09-22T00:44:34.094926Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4151 +2024-09-22T00:44:34.094945Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4151 +2024-09-22T00:44:34.112160Z INFO fork_choice_control::block_processor: Validating block with slot: 5053 +2024-09-22T00:44:34.114983Z INFO fork_choice_control::block_processor: Validating block with slot: 5179 +2024-09-22T00:44:34.115534Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 128, root: 0x0ddeea949d02a96bbe824ae05310bb2da4e0e67fdf04c00e98373e32cb9defdc, head slot: 4151, head root: 0x8958214bce575469b98c7dfd9822be9c78c23c3012eddce090ac8c6a53560dd8) +2024-09-22T00:44:34.115558Z INFO fork_choice_control::block_processor: Validating block with slot: 4152 +2024-09-22T00:44:34.116858Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf12573e0720710a94ea50c0a2bb6f179e04fc078cd6bbe31dde70f15451a492a, slot: 4152 +2024-09-22T00:44:34.123291Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4152 +2024-09-22T00:44:34.123317Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4152 +2024-09-22T00:44:34.131391Z INFO fork_choice_control::block_processor: Validating block with slot: 5011 +2024-09-22T00:44:34.146870Z INFO fork_choice_control::block_processor: Validating block with slot: 4153 +2024-09-22T00:44:34.150404Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7790212c9e1c66cb094760a546a283cf9ee79acb1443be8201ae9d1f48cc97bf, slot: 4153 +2024-09-22T00:44:34.152163Z INFO fork_choice_control::block_processor: Validating block with slot: 5134 +2024-09-22T00:44:34.171008Z INFO fork_choice_control::block_processor: Validating block with slot: 5180 +2024-09-22T00:44:34.171321Z INFO fork_choice_control::block_processor: Validating block with slot: 5054 +2024-09-22T00:44:34.184177Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4153 +2024-09-22T00:44:34.184204Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4153 +2024-09-22T00:44:34.197269Z INFO fork_choice_control::block_processor: Validating block with slot: 5012 +2024-09-22T00:44:34.201276Z INFO fork_choice_control::block_processor: Validating block with slot: 4154 +2024-09-22T00:44:34.202821Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf651a4ac85e98769fcdd20ec6b5478d050c8f438d5e629ea7f7c9f6306cf922f, slot: 4154 +2024-09-22T00:44:34.211328Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4154 +2024-09-22T00:44:34.211349Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4154 +2024-09-22T00:44:34.212460Z INFO fork_choice_control::block_processor: Validating block with slot: 5135 +2024-09-22T00:44:34.223835Z INFO fork_choice_control::block_processor: Validating block with slot: 5056 +2024-09-22T00:44:34.227722Z INFO fork_choice_control::block_processor: Validating block with slot: 4155 +2024-09-22T00:44:34.228710Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9d99675e319d6d553559b40893d6df36a0e7abe768a52736dd1224f26cd0ae43, slot: 4155 +2024-09-22T00:44:34.235237Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4155 +2024-09-22T00:44:34.235257Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4155 +2024-09-22T00:44:34.238683Z INFO fork_choice_control::block_processor: Validating block with slot: 5181 +2024-09-22T00:44:34.251910Z INFO fork_choice_control::block_processor: Validating block with slot: 4156 +2024-09-22T00:44:34.252890Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6da57a101bbec7ab1a9ede73be575615cc12f0629f35e3d190f61265161927ff, slot: 4156 +2024-09-22T00:44:34.257203Z INFO fork_choice_control::block_processor: Validating block with slot: 5013 +2024-09-22T00:44:34.259780Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4156 +2024-09-22T00:44:34.259794Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4156 +2024-09-22T00:44:34.271469Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 4096 +2024-09-22T00:44:34.273346Z INFO fork_choice_control::block_processor: Validating block with slot: 5136 +2024-09-22T00:44:34.276357Z INFO fork_choice_control::block_processor: Validating block with slot: 4157 +2024-09-22T00:44:34.277493Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x67d42eac769eaaae719ce1f0cbd230b3f73220745660caa66fd81d385ec922bb, slot: 4157 +2024-09-22T00:44:34.284176Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4157 +2024-09-22T00:44:34.284195Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4157 +2024-09-22T00:44:34.287465Z INFO fork_choice_control::block_processor: Validating block with slot: 5057 +2024-09-22T00:44:34.301169Z INFO fork_choice_control::block_processor: Validating block with slot: 4158 +2024-09-22T00:44:34.302145Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf89a568dd4919f122947eec9d74953dbb964fc6b60b06b49b5bd3f587845919d, slot: 4158 +2024-09-22T00:44:34.304924Z INFO fork_choice_control::block_processor: Validating block with slot: 5182 +2024-09-22T00:44:34.312650Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4158 +2024-09-22T00:44:34.312673Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4158 +2024-09-22T00:44:34.317324Z INFO fork_choice_control::block_processor: Validating block with slot: 5014 +2024-09-22T00:44:34.323648Z INFO fork_choice_control::storage: saving state in slot 4096 +2024-09-22T00:44:34.329513Z INFO fork_choice_control::block_processor: Validating block with slot: 4159 +2024-09-22T00:44:34.330736Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0a890cf43499dac7882dff800e41024704003213fc922e5be228d37f58c23c8d, slot: 4159 +2024-09-22T00:44:34.332336Z INFO fork_choice_control::block_processor: Validating block with slot: 5137 +2024-09-22T00:44:34.337824Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4159 +2024-09-22T00:44:34.337836Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4159 +2024-09-22T00:44:34.348446Z INFO fork_choice_control::block_processor: Validating block with slot: 5058 +2024-09-22T00:44:34.355215Z INFO fork_choice_control::block_processor: Validating block with slot: 4161 +2024-09-22T00:44:34.358231Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x00f2aeac48e567864027b76ad21bb3a27fdd6b2e3bc809079675724df6556f1d, slot: 4161 +2024-09-22T00:44:34.364116Z INFO fork_choice_control::block_processor: Validating block with slot: 5183 +2024-09-22T00:44:34.401612Z INFO fork_choice_control::block_processor: Validating block with slot: 5138 +2024-09-22T00:44:34.401648Z INFO fork_choice_control::block_processor: Validating block with slot: 5015 +2024-09-22T00:44:34.410888Z INFO fork_choice_control::block_processor: Validating block with slot: 5059 +2024-09-22T00:44:34.424720Z INFO fork_choice_control::block_processor: Validating block with slot: 5184 +2024-09-22T00:44:34.446731Z INFO fork_choice_control::block_processor: Validating block with slot: 5016 +2024-09-22T00:44:34.459788Z INFO fork_choice_control::block_processor: Validating block with slot: 5139 +2024-09-22T00:44:34.474186Z INFO fork_choice_control::block_processor: Validating block with slot: 5060 +2024-09-22T00:44:34.488038Z INFO fork_choice_control::block_processor: Validating block with slot: 5185 +2024-09-22T00:44:34.506193Z INFO fork_choice_control::block_processor: Validating block with slot: 5017 +2024-09-22T00:44:34.519766Z INFO fork_choice_control::block_processor: Validating block with slot: 5140 +2024-09-22T00:44:34.536085Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4161 +2024-09-22T00:44:34.536107Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4161 +2024-09-22T00:44:34.538331Z INFO fork_choice_control::block_processor: Validating block with slot: 5061 +2024-09-22T00:44:34.547193Z INFO fork_choice_control::block_processor: Validating block with slot: 4162 +2024-09-22T00:44:34.548772Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6b2686b449ec53d40b7bd5f727ef4bb9849a00925860bdbb3e7320694a07807e, slot: 4162 +2024-09-22T00:44:34.552648Z INFO fork_choice_control::block_processor: Validating block with slot: 5186 +2024-09-22T00:44:34.560447Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4162 +2024-09-22T00:44:34.560467Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4162 +2024-09-22T00:44:34.567091Z INFO fork_choice_control::block_processor: Validating block with slot: 5018 +2024-09-22T00:44:34.571329Z INFO fork_choice_control::block_processor: Validating block with slot: 4163 +2024-09-22T00:44:34.573156Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5f0aefa98dc257515173257958ff7f901bac55648b02c8de5428f3a132e8f2a7, slot: 4163 +2024-09-22T00:44:34.582296Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4163 +2024-09-22T00:44:34.582312Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4163 +2024-09-22T00:44:34.584263Z INFO fork_choice_control::block_processor: Validating block with slot: 5141 +2024-09-22T00:44:34.593910Z INFO fork_choice_control::block_processor: Validating block with slot: 4164 +2024-09-22T00:44:34.596025Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9f884730ef332e92f734ee573d143ecde1ecac1a3f9e8bed458dc7139232ca9f, slot: 4164 +2024-09-22T00:44:34.607079Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4164 +2024-09-22T00:44:34.607103Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4164 +2024-09-22T00:44:34.607752Z INFO fork_choice_control::block_processor: Validating block with slot: 5062 +2024-09-22T00:44:34.618321Z INFO fork_choice_control::block_processor: Validating block with slot: 4165 +2024-09-22T00:44:34.619292Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xadf341bc1cbdaac184a72b312b231d2b848d95146361497e9fd8aa71c175a8ec, slot: 4165 +2024-09-22T00:44:34.624144Z INFO fork_choice_control::block_processor: Validating block with slot: 5187 +2024-09-22T00:44:34.624675Z INFO fork_choice_control::block_processor: Validating block with slot: 5019 +2024-09-22T00:44:34.630150Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4165 +2024-09-22T00:44:34.630169Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4165 +2024-09-22T00:44:34.642116Z INFO fork_choice_control::block_processor: Validating block with slot: 4166 +2024-09-22T00:44:34.643112Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x49c1fd53f37e70c98cd6243bff7ac145f232cd0690e79c06b4829123ec7c677d, slot: 4166 +2024-09-22T00:44:34.646669Z INFO fork_choice_control::block_processor: Validating block with slot: 5142 +2024-09-22T00:44:34.649730Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4166 +2024-09-22T00:44:34.649744Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4166 +2024-09-22T00:44:34.661102Z INFO fork_choice_control::block_processor: Validating block with slot: 5063 +2024-09-22T00:44:34.661777Z INFO fork_choice_control::block_processor: Validating block with slot: 4167 +2024-09-22T00:44:34.663008Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaad23becceef34c9d39edc9dd360ade48866d9301ab262d4bbf17f281ff1bc60, slot: 4167 +2024-09-22T00:44:34.669944Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4167 +2024-09-22T00:44:34.669960Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4167 +2024-09-22T00:44:34.682232Z INFO fork_choice_control::block_processor: Validating block with slot: 4168 +2024-09-22T00:44:34.683212Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x618388fa4598aca1d4e4575489283937bbb4c045cf1ad71a7e5f905068ba2c5b, slot: 4168 +2024-09-22T00:44:34.690602Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4168 +2024-09-22T00:44:34.690626Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4168 +2024-09-22T00:44:34.702430Z INFO fork_choice_control::block_processor: Validating block with slot: 4170 +2024-09-22T00:44:34.704117Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1f43fe924e6a319d073f59deff0764068e4fce504cebf25c6b9132244b02246b, slot: 4170 +2024-09-22T00:44:34.714559Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4170 +2024-09-22T00:44:34.714579Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4170 +2024-09-22T00:44:34.727122Z INFO fork_choice_control::block_processor: Validating block with slot: 4171 +2024-09-22T00:44:34.728810Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb8da9b05a6079ce9a0be53be982f758738dfced2e16377ba64afbb69ebaa2c9e, slot: 4171 +2024-09-22T00:44:34.730276Z INFO fork_choice_control::block_processor: Validating block with slot: 5188 +2024-09-22T00:44:34.730327Z INFO fork_choice_control::block_processor: Validating block with slot: 5020 +2024-09-22T00:44:34.736865Z INFO fork_choice_control::block_processor: Validating block with slot: 5143 +2024-09-22T00:44:34.738294Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4171 +2024-09-22T00:44:34.738306Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4171 +2024-09-22T00:44:34.740010Z INFO fork_choice_control::block_processor: Validating block with slot: 5064 +2024-09-22T00:44:34.743334Z INFO fork_choice_control::block_processor: Validating block with slot: 5189 +2024-09-22T00:44:34.750963Z INFO fork_choice_control::block_processor: Validating block with slot: 4172 +2024-09-22T00:44:34.751906Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6fbfd27e7965a631487b7a21fd98b4df50d2fa65aeda78e3b9a7b7250a123b58, slot: 4172 +2024-09-22T00:44:34.754110Z INFO fork_choice_control::block_processor: Validating block with slot: 5021 +2024-09-22T00:44:34.758218Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4172 +2024-09-22T00:44:34.758238Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4172 +2024-09-22T00:44:34.770569Z INFO fork_choice_control::block_processor: Validating block with slot: 5144 +2024-09-22T00:44:34.770860Z INFO fork_choice_control::block_processor: Validating block with slot: 4173 +2024-09-22T00:44:34.773087Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe3aeb26d8e47f2f788de2cdfde6a42a77b12b3e01cc90f8ee22f89bbca15f3a4, slot: 4173 +2024-09-22T00:44:34.781735Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4173 +2024-09-22T00:44:34.781752Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4173 +2024-09-22T00:44:34.793344Z INFO fork_choice_control::block_processor: Validating block with slot: 5065 +2024-09-22T00:44:34.794815Z INFO fork_choice_control::block_processor: Validating block with slot: 4174 +2024-09-22T00:44:34.795751Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf7497c88bdab68b692803dfd5e9aae4486327edae6d841a6b423f8e9f2ed7065, slot: 4174 +2024-09-22T00:44:34.799610Z INFO fork_choice_control::block_processor: Validating block with slot: 5190 +2024-09-22T00:44:34.802011Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4174 +2024-09-22T00:44:34.802027Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4174 +2024-09-22T00:44:34.815196Z INFO fork_choice_control::block_processor: Validating block with slot: 4175 +2024-09-22T00:44:34.816326Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x433624bd4ea8c57fc3e906631b690a759bfef4d37e1034bc6dab6591f3600ffb, slot: 4175 +2024-09-22T00:44:34.817042Z INFO fork_choice_control::block_processor: Validating block with slot: 5022 +2024-09-22T00:44:34.822392Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4175 +2024-09-22T00:44:34.822405Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4175 +2024-09-22T00:44:34.832813Z INFO fork_choice_control::block_processor: Validating block with slot: 5145 +2024-09-22T00:44:34.835677Z INFO fork_choice_control::block_processor: Validating block with slot: 4176 +2024-09-22T00:44:34.836607Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdeaafd3a83bc07e3d95a6e531807633b1167a81a0c17b76ae1539ea06fa1e496, slot: 4176 +2024-09-22T00:44:34.843147Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4176 +2024-09-22T00:44:34.843165Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4176 +2024-09-22T00:44:34.848595Z INFO fork_choice_control::block_processor: Validating block with slot: 5066 +2024-09-22T00:44:34.856640Z INFO fork_choice_control::block_processor: Validating block with slot: 4177 +2024-09-22T00:44:34.858715Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb2187a7713c4c3853175743b3457095934f1a21239f7f48c3eea64b9185fe3df, slot: 4177 +2024-09-22T00:44:34.867042Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4177 +2024-09-22T00:44:34.867055Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4177 +2024-09-22T00:44:34.874672Z INFO fork_choice_control::block_processor: Validating block with slot: 5023 +2024-09-22T00:44:34.874704Z INFO fork_choice_control::block_processor: Validating block with slot: 5191 +2024-09-22T00:44:34.881431Z INFO fork_choice_control::block_processor: Validating block with slot: 4178 +2024-09-22T00:44:34.882910Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5846318f80a74a7ac4787e919e2adc8153af2db4b4611f9612a88082be0f7604, slot: 4178 +2024-09-22T00:44:34.890632Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4178 +2024-09-22T00:44:34.890655Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4178 +2024-09-22T00:44:34.896804Z INFO fork_choice_control::block_processor: Validating block with slot: 5147 +2024-09-22T00:44:34.904665Z INFO fork_choice_control::block_processor: Validating block with slot: 4179 +2024-09-22T00:44:34.906335Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x20cc9612c16a5d7c060fd6784a8a34a74270debe4bbda60f342bf8646b697491, slot: 4179 +2024-09-22T00:44:34.911540Z INFO fork_choice_control::block_processor: Validating block with slot: 5067 +2024-09-22T00:44:34.916162Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4179 +2024-09-22T00:44:34.916175Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4179 +2024-09-22T00:44:34.926779Z INFO fork_choice_control::block_processor: Validating block with slot: 5192 +2024-09-22T00:44:34.930863Z INFO fork_choice_control::block_processor: Validating block with slot: 4180 +2024-09-22T00:44:34.931811Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd1eee16cdc5a8395d4ed46a82dbe376cc1586c7493ac09c5f6d86ba25231c2b2, slot: 4180 +2024-09-22T00:44:34.938442Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4180 +2024-09-22T00:44:34.938465Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4180 +2024-09-22T00:44:34.942110Z INFO fork_choice_control::block_processor: Validating block with slot: 5148 +2024-09-22T00:44:34.953056Z INFO fork_choice_control::block_processor: Validating block with slot: 4181 +2024-09-22T00:44:34.955087Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6414440213f8c29d6331d583fc456376da33b5bbcfe75b6cd58cc288eeddd3e8, slot: 4181 +2024-09-22T00:44:34.963475Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4181 +2024-09-22T00:44:34.963495Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4181 +2024-09-22T00:44:34.970877Z INFO fork_choice_control::block_processor: Validating block with slot: 5068 +2024-09-22T00:44:34.978834Z INFO fork_choice_control::block_processor: Validating block with slot: 4182 +2024-09-22T00:44:34.980522Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc908a893eac476af2915fc8b5fc6a2a5a6e563ec0de63a95d0b38e445a4cc3c6, slot: 4182 +2024-09-22T00:44:34.980566Z INFO fork_choice_control::block_processor: Validating block with slot: 5193 +2024-09-22T00:44:34.988205Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4182 +2024-09-22T00:44:34.988221Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4182 +2024-09-22T00:44:34.990242Z INFO fork_choice_control::block_processor: Validating block with slot: 5149 +2024-09-22T00:44:35.003201Z INFO fork_choice_control::block_processor: Validating block with slot: 4183 +2024-09-22T00:44:35.004590Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x128518a21a7851564e93a4e1d687a6d6903ee6d98a32ab529d2b678af4cfcaaf, slot: 4183 +2024-09-22T00:44:35.005820Z INFO fork_choice_control::block_processor: Validating block with slot: 5070 +2024-09-22T00:44:35.011911Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4183 +2024-09-22T00:44:35.011930Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4183 +2024-09-22T00:44:35.024261Z INFO fork_choice_control::block_processor: Validating block with slot: 5194 +2024-09-22T00:44:35.035345Z INFO fork_choice_control::block_processor: Validating block with slot: 5150 +2024-09-22T00:44:35.048592Z INFO fork_choice_control::block_processor: Validating block with slot: 5071 +2024-09-22T00:44:35.066324Z INFO fork_choice_control::block_processor: Validating block with slot: 5195 +2024-09-22T00:44:35.068327Z INFO fork_choice_control::block_processor: Validating block with slot: 5151 +2024-09-22T00:44:35.082539Z INFO fork_choice_control::block_processor: Validating block with slot: 4184 +2024-09-22T00:44:35.082543Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 129, root: 0xfe9b000c35a0e1dc4372ce89523cbc5c7e99088e89cb775d15fb6bd97f398500, head slot: 4183, head root: 0x128518a21a7851564e93a4e1d687a6d6903ee6d98a32ab529d2b678af4cfcaaf) +2024-09-22T00:44:35.083540Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x18df6135c8d40530671456e0dfee44cd7b9f9caf39b7e95f02024bbf1d840190, slot: 4184 +2024-09-22T00:44:35.095297Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4184 +2024-09-22T00:44:35.095316Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4184 +2024-09-22T00:44:35.113896Z INFO fork_choice_control::block_processor: Validating block with slot: 4185 +2024-09-22T00:44:35.114444Z INFO fork_choice_control::block_processor: Validating block with slot: 5196 +2024-09-22T00:44:35.114451Z INFO fork_choice_control::block_processor: Validating block with slot: 5072 +2024-09-22T00:44:35.115839Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe001a43846d61add274ff284224751b61e6c9ee7f4c9b3f219e39f9665fffe34, slot: 4185 +2024-09-22T00:44:35.125883Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4185 +2024-09-22T00:44:35.125906Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4185 +2024-09-22T00:44:35.131590Z INFO fork_choice_control::block_processor: Validating block with slot: 5073 +2024-09-22T00:44:35.142652Z INFO fork_choice_control::block_processor: Validating block with slot: 4186 +2024-09-22T00:44:35.145166Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe61ddfe03706a590c2170bb368f1f5757476cb2d506f9b6af1da8980a8714a6c, slot: 4186 +2024-09-22T00:44:35.145398Z INFO fork_choice_control::block_processor: Validating block with slot: 5197 +2024-09-22T00:44:35.151889Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4186 +2024-09-22T00:44:35.151903Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4186 +2024-09-22T00:44:35.160130Z INFO fork_choice_control::block_processor: Validating block with slot: 5074 +2024-09-22T00:44:35.168160Z INFO fork_choice_control::block_processor: Validating block with slot: 4188 +2024-09-22T00:44:35.170528Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5940a4a07ed2576012799dc86ab257fec3614464a355284a023ddadada2e0ba7, slot: 4188 +2024-09-22T00:44:35.181877Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4188 +2024-09-22T00:44:35.181903Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4188 +2024-09-22T00:44:35.182402Z INFO fork_choice_control::block_processor: Validating block with slot: 5198 +2024-09-22T00:44:35.192424Z INFO fork_choice_control::block_processor: Validating block with slot: 5075 +2024-09-22T00:44:35.198656Z INFO fork_choice_control::block_processor: Validating block with slot: 4189 +2024-09-22T00:44:35.199698Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5ca65927e903b56686d2ab931d0a33d09c974a3c9e313caa3c745d5bf1cac6ce, slot: 4189 +2024-09-22T00:44:35.206322Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4189 +2024-09-22T00:44:35.206349Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4189 +2024-09-22T00:44:35.208098Z INFO fork_choice_control::block_processor: Validating block with slot: 5199 +2024-09-22T00:44:35.215043Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 4128 +2024-09-22T00:44:35.223004Z INFO fork_choice_control::block_processor: Validating block with slot: 4190 +2024-09-22T00:44:35.224226Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcb504ca8a52aac0ef509bfbf214bbdd0a326d882bf0add3e1c0eb068cbc7425b, slot: 4190 +2024-09-22T00:44:35.231045Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4190 +2024-09-22T00:44:35.231065Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4190 +2024-09-22T00:44:35.232141Z INFO fork_choice_control::block_processor: Validating block with slot: 5076 +2024-09-22T00:44:35.242988Z INFO fork_choice_control::block_processor: Validating block with slot: 5200 +2024-09-22T00:44:35.248120Z INFO fork_choice_control::block_processor: Validating block with slot: 4191 +2024-09-22T00:44:35.249654Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9c523aa578b0f340b3d4547ae37ad3d82383c7a0292bda49314f15583b0fd598, slot: 4191 +2024-09-22T00:44:35.258419Z INFO fork_choice_control::block_processor: Validating block with slot: 5077 +2024-09-22T00:44:35.259043Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4191 +2024-09-22T00:44:35.259056Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4191 +2024-09-22T00:44:35.264454Z INFO fork_choice_control::storage: saving state in slot 4096 +2024-09-22T00:44:35.268601Z INFO fork_choice_control::block_processor: Validating block with slot: 5201 +2024-09-22T00:44:35.276658Z INFO fork_choice_control::block_processor: Validating block with slot: 4192 +2024-09-22T00:44:35.277776Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe367f940d954ef55f17071b02a47f7d5188a5c15bd470bd95b44d57d3f58e953, slot: 4192 +2024-09-22T00:44:35.318382Z INFO fork_choice_control::block_processor: Validating block with slot: 5202 +2024-09-22T00:44:35.318386Z INFO fork_choice_control::block_processor: Validating block with slot: 5079 +2024-09-22T00:44:35.318423Z INFO fork_choice_control::block_processor: Validating block with slot: 5078 +2024-09-22T00:44:35.333893Z INFO fork_choice_control::block_processor: Validating block with slot: 5203 +2024-09-22T00:44:35.355433Z INFO fork_choice_control::block_processor: Validating block with slot: 5080 +2024-09-22T00:44:35.372596Z INFO fork_choice_control::block_processor: Validating block with slot: 5204 +2024-09-22T00:44:35.379132Z INFO fork_choice_control::block_processor: Validating block with slot: 5081 +2024-09-22T00:44:35.379359Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4192 +2024-09-22T00:44:35.379375Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4192 +2024-09-22T00:44:35.389830Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 4192) +2024-09-22T00:44:35.390100Z INFO fork_choice_control::block_processor: Validating block with slot: 4193 +2024-09-22T00:44:35.391238Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x61929f6b4d80877b3166ad2f6689c9f4c5d144889052c8eaee1619ef74cd22e7, slot: 4193 +2024-09-22T00:44:35.393911Z INFO fork_choice_control::block_processor: Validating block with slot: 5205 +2024-09-22T00:44:35.421402Z INFO fork_choice_control::block_processor: Validating block with slot: 5082 +2024-09-22T00:44:35.450019Z INFO fork_choice_control::block_processor: Validating block with slot: 5206 +2024-09-22T00:44:35.450014Z INFO fork_choice_control::block_processor: Validating block with slot: 5083 +2024-09-22T00:44:35.463849Z INFO fork_choice_control::block_processor: Validating block with slot: 5207 +2024-09-22T00:44:35.469870Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4193 +2024-09-22T00:44:35.469885Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4193 +2024-09-22T00:44:35.482203Z INFO fork_choice_control::block_processor: Validating block with slot: 4195 +2024-09-22T00:44:35.489092Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5e9c72d418409aa44bfdd61989fdce2daf9de3dfbaef586a00515c443a8613f0, slot: 4195 +2024-09-22T00:44:35.490480Z INFO fork_choice_control::block_processor: Validating block with slot: 5084 +2024-09-22T00:44:35.502511Z INFO fork_choice_control::block_processor: Validating block with slot: 5208 +2024-09-22T00:44:35.515554Z INFO fork_choice_control::block_processor: Validating block with slot: 5085 +2024-09-22T00:44:35.526449Z INFO fork_choice_control::block_processor: Validating block with slot: 5209 +2024-09-22T00:44:35.528517Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4195 +2024-09-22T00:44:35.528584Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4195 +2024-09-22T00:44:35.540729Z INFO fork_choice_control::block_processor: Validating block with slot: 5087 +2024-09-22T00:44:35.542218Z INFO fork_choice_control::block_processor: Validating block with slot: 5210 +2024-09-22T00:44:35.547514Z INFO fork_choice_control::block_processor: Validating block with slot: 4196 +2024-09-22T00:44:35.549573Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0c18635ab7b67d909e6b3493d6d6e3b3f25649976ed166f2e1c7d1ecae9457d3, slot: 4196 +2024-09-22T00:44:35.557721Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4196 +2024-09-22T00:44:35.557747Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4196 +2024-09-22T00:44:35.568735Z INFO fork_choice_control::block_processor: Validating block with slot: 4197 +2024-09-22T00:44:35.570565Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeea929b2b5899f672c9dca05d0d52818bbca6f48e04f9ed9cb304ca9f0c5c43c, slot: 4197 +2024-09-22T00:44:35.571306Z INFO fork_choice_control::block_processor: Validating block with slot: 5211 +2024-09-22T00:44:35.580537Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4197 +2024-09-22T00:44:35.580560Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4197 +2024-09-22T00:44:35.582494Z INFO fork_choice_control::block_processor: Validating block with slot: 5212 +2024-09-22T00:44:35.592110Z INFO fork_choice_control::block_processor: Validating block with slot: 4198 +2024-09-22T00:44:35.593708Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x83871235f9fd2d0427477f39c8f3010c46c2aa670e24e5a56b1d9b6c48df808b, slot: 4198 +2024-09-22T00:44:35.600960Z INFO fork_choice_control::block_processor: Validating block with slot: 5213 +2024-09-22T00:44:35.602948Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4198 +2024-09-22T00:44:35.602967Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4198 +2024-09-22T00:44:35.613862Z INFO fork_choice_control::block_processor: Validating block with slot: 5214 +2024-09-22T00:44:35.615148Z INFO fork_choice_control::block_processor: Validating block with slot: 4199 +2024-09-22T00:44:35.616234Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x82b392822d590193edff70fcbe51fc992f8c5d8ebb2ca5cf547ca7dac7e6c077, slot: 4199 +2024-09-22T00:44:35.624361Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4199 +2024-09-22T00:44:35.624383Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4199 +2024-09-22T00:44:35.636867Z INFO fork_choice_control::block_processor: Validating block with slot: 4200 +2024-09-22T00:44:35.637849Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7ba0fefa85c05cdb2fa8f7538e9c9658feee7347516dc3f94455bb201df50197, slot: 4200 +2024-09-22T00:44:35.645347Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4200 +2024-09-22T00:44:35.645366Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4200 +2024-09-22T00:44:35.657731Z INFO fork_choice_control::block_processor: Validating block with slot: 4201 +2024-09-22T00:44:35.658710Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x467904cefcf2c7dde637e69299edd3ff4022ca65a47523d525a78828962378fa, slot: 4201 +2024-09-22T00:44:35.664947Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4201 +2024-09-22T00:44:35.664962Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4201 +2024-09-22T00:44:35.677424Z INFO fork_choice_control::block_processor: Validating block with slot: 4202 +2024-09-22T00:44:35.678402Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x714253c00f678228a935ca0c4d44c27e15cc243a3d5fd1e8bf7fecec50a6dd16, slot: 4202 +2024-09-22T00:44:35.683785Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4202 +2024-09-22T00:44:35.683799Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4202 +2024-09-22T00:44:35.696192Z INFO fork_choice_control::block_processor: Validating block with slot: 4203 +2024-09-22T00:44:35.698535Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x66c396a0f397476b1a70e0c9002095a194c163cf6fd03929bc91f3685ffc0807, slot: 4203 +2024-09-22T00:44:35.708075Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4203 +2024-09-22T00:44:35.708101Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4203 +2024-09-22T00:44:35.721480Z INFO fork_choice_control::block_processor: Validating block with slot: 4204 +2024-09-22T00:44:35.722535Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x589a01107ac3401632db9281bbbb72154fa172f8d58cad17f647af98e3620bfd, slot: 4204 +2024-09-22T00:44:35.730951Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4204 +2024-09-22T00:44:35.730970Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4204 +2024-09-22T00:44:35.752374Z INFO fork_choice_control::block_processor: Validating block with slot: 4205 +2024-09-22T00:44:35.757172Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7a52fe49b6b32ea57718741469e54ad9063fb731092dcc0ff60783f6c39368d9, slot: 4205 +2024-09-22T00:44:35.765582Z INFO fork_choice_control::block_processor: Validating block with slot: 5215 +2024-09-22T00:44:35.787157Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4205 +2024-09-22T00:44:35.787184Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4205 +2024-09-22T00:44:35.804612Z INFO fork_choice_control::block_processor: Validating block with slot: 4206 +2024-09-22T00:44:35.805738Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6cb6ba3242700cac69ba9c86c88d3ecd7171daa392072f968bd2a43f6aaeca91, slot: 4206 +2024-09-22T00:44:35.812067Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4206 +2024-09-22T00:44:35.812086Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4206 +2024-09-22T00:44:35.825394Z INFO fork_choice_control::block_processor: Validating block with slot: 4207 +2024-09-22T00:44:35.827738Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2f504db492101bad58b42ac2533aff7c1f262b58be2aefce4f01025b216ede48, slot: 4207 +2024-09-22T00:44:35.836695Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4207 +2024-09-22T00:44:35.836706Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4207 +2024-09-22T00:44:35.850214Z INFO fork_choice_control::block_processor: Validating block with slot: 4208 +2024-09-22T00:44:35.851316Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa4f8de7e19a5d48e16f49643c437e44b0556c981cf92909b034b013e9830d426, slot: 4208 +2024-09-22T00:44:35.857877Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4208 +2024-09-22T00:44:35.857899Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4208 +2024-09-22T00:44:35.871577Z INFO fork_choice_control::block_processor: Validating block with slot: 4209 +2024-09-22T00:44:35.872775Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd6e7050d52866d55c1a04dd644583708a767dfcdb7646c385a0301ab1abe8200, slot: 4209 +2024-09-22T00:44:35.878631Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4209 +2024-09-22T00:44:35.878648Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4209 +2024-09-22T00:44:35.892905Z INFO fork_choice_control::block_processor: Validating block with slot: 4210 +2024-09-22T00:44:35.894913Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6f349bf863bdb774b7dafa9d9d7d8e30148f832d3b94c32d64f4ee5a8cb486b9, slot: 4210 +2024-09-22T00:44:35.903641Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4210 +2024-09-22T00:44:35.903662Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4210 +2024-09-22T00:44:35.918412Z INFO fork_choice_control::block_processor: Validating block with slot: 4211 +2024-09-22T00:44:35.919392Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0d1a9eb063c093e19aec1eb2a5cf0333dc6765831f04d875c7642ca57ad8a458, slot: 4211 +2024-09-22T00:44:35.925880Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4211 +2024-09-22T00:44:35.925900Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4211 +2024-09-22T00:44:35.940615Z INFO fork_choice_control::block_processor: Validating block with slot: 4212 +2024-09-22T00:44:35.941738Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf8f2278830fc4ac9520648922d12cdf67f34cbe31373886a6609544c6e56555d, slot: 4212 +2024-09-22T00:44:35.947684Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4212 +2024-09-22T00:44:35.947705Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4212 +2024-09-22T00:44:35.962707Z INFO fork_choice_control::block_processor: Validating block with slot: 4213 +2024-09-22T00:44:35.964267Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1d044496acb442851d417b52c378985760a6847ac76171203f9b02049316b749, slot: 4213 +2024-09-22T00:44:35.971461Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4213 +2024-09-22T00:44:35.971479Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4213 +2024-09-22T00:44:35.986254Z INFO fork_choice_control::block_processor: Validating block with slot: 4214 +2024-09-22T00:44:35.987362Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x95597e8046b385e14838307ee2990cb9041f588b7dec99dfab8609bbc39e0a6e, slot: 4214 +2024-09-22T00:44:36.002796Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4214 +2024-09-22T00:44:36.002824Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4214 +2024-09-22T00:44:36.020812Z INFO fork_choice_control::block_processor: Validating block with slot: 4215 +2024-09-22T00:44:36.022316Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x08b235071e78e8062f52ed1480c81e46ccdb0cbbf021459029e211ab189cfc29, slot: 4215 +2024-09-22T00:44:36.029242Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4215 +2024-09-22T00:44:36.029265Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4215 +2024-09-22T00:44:36.049933Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 130, root: 0x0a890cf43499dac7882dff800e41024704003213fc922e5be228d37f58c23c8d, head slot: 4215, head root: 0x08b235071e78e8062f52ed1480c81e46ccdb0cbbf021459029e211ab189cfc29) +2024-09-22T00:44:36.049946Z INFO fork_choice_control::block_processor: Validating block with slot: 4216 +2024-09-22T00:44:36.050925Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8171b4969d69eb9f5cf04b75b6edf874019c36b3c644ac7bab18c0e75017feea, slot: 4216 +2024-09-22T00:44:36.057158Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4216 +2024-09-22T00:44:36.057182Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4216 +2024-09-22T00:44:36.072236Z INFO fork_choice_control::block_processor: Validating block with slot: 4217 +2024-09-22T00:44:36.073373Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0f29a76eb23f5eda3913b06b8d15346bcba2c57adc91b8eda819cf1a1a33372c, slot: 4217 +2024-09-22T00:44:36.079783Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4217 +2024-09-22T00:44:36.079799Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4217 +2024-09-22T00:44:36.095244Z INFO fork_choice_control::block_processor: Validating block with slot: 4218 +2024-09-22T00:44:36.097430Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf5be9b6705382c97c361220a1f914fd404ac354b0aad4ca8501417991e279c45, slot: 4218 +2024-09-22T00:44:36.105915Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4218 +2024-09-22T00:44:36.105930Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4218 +2024-09-22T00:44:36.121695Z INFO fork_choice_control::block_processor: Validating block with slot: 4219 +2024-09-22T00:44:36.123412Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x10bf6b2b3a9720526f62e3629a1f1c64deb5e7d8b26a88d8ce2a402f0d1836b7, slot: 4219 +2024-09-22T00:44:36.131105Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4219 +2024-09-22T00:44:36.131126Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4219 +2024-09-22T00:44:36.147310Z INFO fork_choice_control::block_processor: Validating block with slot: 4220 +2024-09-22T00:44:36.148843Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xffa81b84cbb8fc16d319bf0b46f3567baabc72b4182dfa3e3be0b681a5b73b0f, slot: 4220 +2024-09-22T00:44:36.156587Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4220 +2024-09-22T00:44:36.156613Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4220 +2024-09-22T00:44:36.173181Z INFO fork_choice_control::block_processor: Validating block with slot: 4221 +2024-09-22T00:44:36.174178Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x44656a48eed74b200b08b5e6fb73ac63df8aadb1c8226a88adc53c023b3a25f2, slot: 4221 +2024-09-22T00:44:36.180150Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4221 +2024-09-22T00:44:36.180168Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4221 +2024-09-22T00:44:36.196607Z INFO fork_choice_control::block_processor: Validating block with slot: 4222 +2024-09-22T00:44:36.197729Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9d02e1c99981131e4aa0f9880eca176abb66cd98649cff554361a3623a5fd9ad, slot: 4222 +2024-09-22T00:44:36.203639Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4222 +2024-09-22T00:44:36.203656Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4222 +2024-09-22T00:44:36.220128Z INFO fork_choice_control::block_processor: Validating block with slot: 4223 +2024-09-22T00:44:36.221383Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6962da5779021fa14359ead797cbd39f5e74922212ff68fad0b5567e4590e679, slot: 4223 +2024-09-22T00:44:36.227703Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4223 +2024-09-22T00:44:36.227727Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4223 +2024-09-22T00:44:36.244715Z INFO fork_choice_control::block_processor: Validating block with slot: 4224 +2024-09-22T00:44:36.245678Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x022e097cad8b5e495567505f2be8d70cd3de0e394f1cba1bad8089d2fe449890, slot: 4224 +2024-09-22T00:44:36.342941Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4224 +2024-09-22T00:44:36.342963Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4224 +2024-09-22T00:44:36.353256Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 4224) +2024-09-22T00:44:36.353496Z INFO fork_choice_control::block_processor: Validating block with slot: 4225 +2024-09-22T00:44:36.354653Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc114bbbac4fcbea9f905af46bf5a4c611089b84e6afe042826729efd69a067f2, slot: 4225 +2024-09-22T00:44:36.428195Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4225 +2024-09-22T00:44:36.428216Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4225 +2024-09-22T00:44:36.438804Z INFO fork_choice_control::block_processor: Validating block with slot: 4227 +2024-09-22T00:44:36.441213Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x17c694b946167fbf7ff74a2bd7052a76e778f88ae933b69552f2783800512c34, slot: 4227 +2024-09-22T00:44:36.452326Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4227 +2024-09-22T00:44:36.452338Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4227 +2024-09-22T00:44:36.463300Z INFO fork_choice_control::block_processor: Validating block with slot: 4228 +2024-09-22T00:44:36.464576Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1c73cf48950ab93e40efba49502de5e4e01683af97f1c0ecee80338b24572136, slot: 4228 +2024-09-22T00:44:36.469461Z INFO fork_choice_control::block_processor: Validating block with slot: 5344 +2024-09-22T00:44:36.469467Z INFO fork_choice_control::block_processor: Validating block with slot: 5345 +2024-09-22T00:44:36.474256Z INFO fork_choice_control::block_processor: Validating block with slot: 5347 +2024-09-22T00:44:36.474281Z INFO fork_choice_control::block_processor: Validating block with slot: 5348 +2024-09-22T00:44:36.475423Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4228 +2024-09-22T00:44:36.475469Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4228 +2024-09-22T00:44:36.479796Z INFO fork_choice_control::block_processor: Validating block with slot: 5351 +2024-09-22T00:44:36.479797Z INFO fork_choice_control::block_processor: Validating block with slot: 5352 +2024-09-22T00:44:36.479841Z INFO fork_choice_control::block_processor: Validating block with slot: 5350 +2024-09-22T00:44:36.487497Z INFO fork_choice_control::block_processor: Validating block with slot: 4229 +2024-09-22T00:44:36.488869Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe43e316484570366c7cbc366da04d9956e15af50a88f4721225134456f16ddc9, slot: 4229 +2024-09-22T00:44:36.498746Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4229 +2024-09-22T00:44:36.498769Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4229 +2024-09-22T00:44:36.514766Z INFO fork_choice_control::block_processor: Validating block with slot: 4230 +2024-09-22T00:44:36.516017Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x90227b6d59f6da57701c84a5ece9cd123145982e5847c4abd85a0c02cc59d319, slot: 4230 +2024-09-22T00:44:36.523322Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4230 +2024-09-22T00:44:36.523341Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4230 +2024-09-22T00:44:36.534724Z INFO fork_choice_control::block_processor: Validating block with slot: 4231 +2024-09-22T00:44:36.538626Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x08b532a62bae6da4919db7cbd2f27c833dc35b34f26fe193ac858b42de4f9787, slot: 4231 +2024-09-22T00:44:36.540841Z INFO fork_choice_control::block_processor: Validating block with slot: 5354 +2024-09-22T00:44:36.540900Z INFO fork_choice_control::block_processor: Validating block with slot: 5355 +2024-09-22T00:44:36.541440Z INFO fork_choice_control::block_processor: Validating block with slot: 5356 +2024-09-22T00:44:36.541543Z INFO fork_choice_control::block_processor: Validating block with slot: 5357 +2024-09-22T00:44:36.541897Z INFO fork_choice_control::block_processor: Validating block with slot: 5358 +2024-09-22T00:44:36.543209Z INFO fork_choice_control::block_processor: Validating block with slot: 5359 +2024-09-22T00:44:36.543218Z INFO fork_choice_control::block_processor: Validating block with slot: 5362 +2024-09-22T00:44:36.544907Z INFO fork_choice_control::block_processor: Validating block with slot: 5360 +2024-09-22T00:44:36.545234Z INFO fork_choice_control::block_processor: Validating block with slot: 5368 +2024-09-22T00:44:36.545991Z INFO fork_choice_control::block_processor: Validating block with slot: 5369 +2024-09-22T00:44:36.546928Z INFO fork_choice_control::block_processor: Validating block with slot: 5370 +2024-09-22T00:44:36.548154Z INFO fork_choice_control::block_processor: Validating block with slot: 5371 +2024-09-22T00:44:36.548242Z INFO fork_choice_control::block_processor: Validating block with slot: 5372 +2024-09-22T00:44:36.549232Z INFO fork_choice_control::block_processor: Validating block with slot: 5373 +2024-09-22T00:44:36.549631Z INFO fork_choice_control::block_processor: Validating block with slot: 5363 +2024-09-22T00:44:36.550828Z INFO fork_choice_control::block_processor: Validating block with slot: 5364 +2024-09-22T00:44:36.551014Z INFO fork_choice_control::block_processor: Validating block with slot: 5375 +2024-09-22T00:44:36.551031Z INFO fork_choice_control::block_processor: Validating block with slot: 5376 +2024-09-22T00:44:36.551083Z INFO fork_choice_control::block_processor: Validating block with slot: 5365 +2024-09-22T00:44:36.551257Z INFO fork_choice_control::block_processor: Validating block with slot: 5366 +2024-09-22T00:44:36.551331Z INFO fork_choice_control::block_processor: Validating block with slot: 5367 +2024-09-22T00:44:36.551780Z INFO fork_choice_control::block_processor: Validating block with slot: 5374 +2024-09-22T00:44:36.552236Z INFO fork_choice_control::block_processor: Validating block with slot: 5377 +2024-09-22T00:44:36.552328Z INFO fork_choice_control::block_processor: Validating block with slot: 5378 +2024-09-22T00:44:36.553614Z INFO fork_choice_control::block_processor: Validating block with slot: 5379 +2024-09-22T00:44:36.554064Z INFO fork_choice_control::block_processor: Validating block with slot: 5380 +2024-09-22T00:44:36.554446Z INFO fork_choice_control::block_processor: Validating block with slot: 5381 +2024-09-22T00:44:36.554700Z INFO fork_choice_control::block_processor: Validating block with slot: 5382 +2024-09-22T00:44:36.555945Z INFO fork_choice_control::block_processor: Validating block with slot: 5383 +2024-09-22T00:44:36.556229Z INFO fork_choice_control::block_processor: Validating block with slot: 5384 +2024-09-22T00:44:36.556613Z INFO fork_choice_control::block_processor: Validating block with slot: 5385 +2024-09-22T00:44:36.557563Z INFO fork_choice_control::block_processor: Validating block with slot: 5386 +2024-09-22T00:44:36.557745Z INFO fork_choice_control::block_processor: Validating block with slot: 5387 +2024-09-22T00:44:36.558899Z INFO fork_choice_control::block_processor: Validating block with slot: 5388 +2024-09-22T00:44:36.558995Z INFO fork_choice_control::block_processor: Validating block with slot: 5389 +2024-09-22T00:44:36.559151Z INFO fork_choice_control::block_processor: Validating block with slot: 5390 +2024-09-22T00:44:36.560100Z INFO fork_choice_control::block_processor: Validating block with slot: 5391 +2024-09-22T00:44:36.560966Z INFO fork_choice_control::block_processor: Validating block with slot: 5393 +2024-09-22T00:44:36.564988Z INFO fork_choice_control::block_processor: Validating block with slot: 5394 +2024-09-22T00:44:36.567367Z INFO fork_choice_control::block_processor: Validating block with slot: 5395 +2024-09-22T00:44:36.567876Z INFO fork_choice_control::block_processor: Validating block with slot: 5396 +2024-09-22T00:44:36.570724Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4231 +2024-09-22T00:44:36.570800Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4231 +2024-09-22T00:44:36.570914Z INFO fork_choice_control::block_processor: Validating block with slot: 5397 +2024-09-22T00:44:36.583700Z INFO fork_choice_control::block_processor: Validating block with slot: 4232 +2024-09-22T00:44:36.584734Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xccc157066ae17010c3527c34f27705d728bedab96a2b4ca295c2db025852a3b9, slot: 4232 +2024-09-22T00:44:36.592320Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4232 +2024-09-22T00:44:36.592349Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4232 +2024-09-22T00:44:36.606409Z INFO fork_choice_control::block_processor: Validating block with slot: 4233 +2024-09-22T00:44:36.608697Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1923f78768c82e0854b2e9be5a64e415ebb55400c6055e8d3b32204cc0153354, slot: 4233 +2024-09-22T00:44:36.616659Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4233 +2024-09-22T00:44:36.616678Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4233 +2024-09-22T00:44:36.629302Z INFO fork_choice_control::block_processor: Validating block with slot: 4234 +2024-09-22T00:44:36.630826Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x06882344f2fd7d9f26de179fb787efb9f8dbc88ca8228c001f741204637f4083, slot: 4234 +2024-09-22T00:44:36.638507Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4234 +2024-09-22T00:44:36.638525Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4234 +2024-09-22T00:44:36.651339Z INFO fork_choice_control::block_processor: Validating block with slot: 4235 +2024-09-22T00:44:36.653463Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdacdfe5c768dcdd535af0e0519f5d7e3d31ba8be166656b45da2a91036f4174d, slot: 4235 +2024-09-22T00:44:36.662484Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4235 +2024-09-22T00:44:36.662505Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4235 +2024-09-22T00:44:36.675558Z INFO fork_choice_control::block_processor: Validating block with slot: 4236 +2024-09-22T00:44:36.677140Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x10e2ada794b99d675927969192378b803a3666d7dbfbe57596b5f27b9b923e30, slot: 4236 +2024-09-22T00:44:36.684024Z INFO fork_choice_control::block_processor: Validating block with slot: 5398 +2024-09-22T00:44:36.685353Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4236 +2024-09-22T00:44:36.685372Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4236 +2024-09-22T00:44:36.698557Z INFO fork_choice_control::block_processor: Validating block with slot: 4237 +2024-09-22T00:44:36.699956Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4b2f8dba8e48a4ad0074fff3da3a22d7972d2391e3b915a139e78eacfbb458ac, slot: 4237 +2024-09-22T00:44:36.707764Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4237 +2024-09-22T00:44:36.707786Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4237 +2024-09-22T00:44:36.720959Z INFO fork_choice_control::block_processor: Validating block with slot: 4239 +2024-09-22T00:44:36.722749Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa3aa15e04eb67608a144291a2a89ee2e6f69bb6abdd33d7cd3561e258ae40d84, slot: 4239 +2024-09-22T00:44:36.732183Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4239 +2024-09-22T00:44:36.732203Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4239 +2024-09-22T00:44:36.746059Z INFO fork_choice_control::block_processor: Validating block with slot: 4240 +2024-09-22T00:44:36.747655Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x67c002e1978ac54057e35f31a1534827070d29d770f50f33908448a3669ab568, slot: 4240 +2024-09-22T00:44:36.756305Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4240 +2024-09-22T00:44:36.756333Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4240 +2024-09-22T00:44:36.770514Z INFO fork_choice_control::block_processor: Validating block with slot: 4241 +2024-09-22T00:44:36.771586Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7a6cf6b3c3bdb383e1750d00160ea94de757a055b6a0d5a5c610147d7c0875b2, slot: 4241 +2024-09-22T00:44:36.778568Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4241 +2024-09-22T00:44:36.778592Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4241 +2024-09-22T00:44:36.792936Z INFO fork_choice_control::block_processor: Validating block with slot: 4242 +2024-09-22T00:44:36.794329Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5aeaa0c29919bc272e92fdab7a16624e552c99284e7ee1443d3e292f69e3eba1, slot: 4242 +2024-09-22T00:44:36.801888Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4242 +2024-09-22T00:44:36.801906Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4242 +2024-09-22T00:44:36.802295Z INFO fork_choice_control::block_processor: Validating block with slot: 5399 +2024-09-22T00:44:36.816337Z INFO fork_choice_control::block_processor: Validating block with slot: 4243 +2024-09-22T00:44:36.816334Z INFO fork_choice_control::block_processor: Validating block with slot: 5280 +2024-09-22T00:44:36.817302Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8bc29c320ed5cdd08bd9cad6d9b2bdd23158125577a0ce0ce3be2f5c0ba7501a, slot: 4243 +2024-09-22T00:44:36.823041Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4243 +2024-09-22T00:44:36.823057Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4243 +2024-09-22T00:44:36.830975Z INFO fork_choice_control::block_processor: Validating block with slot: 5216 +2024-09-22T00:44:36.837290Z INFO fork_choice_control::block_processor: Validating block with slot: 4244 +2024-09-22T00:44:36.840762Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc21654ea21da18e731ceff4c46a9e7f63b9beef7f81f086a4d0f8572ef7b0ead, slot: 4244 +2024-09-22T00:44:36.853327Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4244 +2024-09-22T00:44:36.853344Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4244 +2024-09-22T00:44:36.856724Z INFO fork_choice_control::block_processor: Validating block with slot: 5400 +2024-09-22T00:44:36.864013Z INFO fork_choice_control::block_processor: Validating block with slot: 5281 +2024-09-22T00:44:36.868512Z INFO fork_choice_control::block_processor: Validating block with slot: 4246 +2024-09-22T00:44:36.870418Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x43a550d3550bf6493047b054252c93a8eb72d355bf2a2130dd59cd91f99bb803, slot: 4246 +2024-09-22T00:44:36.880570Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4246 +2024-09-22T00:44:36.880591Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4246 +2024-09-22T00:44:36.881158Z INFO fork_choice_control::block_processor: Validating block with slot: 5217 +2024-09-22T00:44:36.895753Z INFO fork_choice_control::block_processor: Validating block with slot: 5401 +2024-09-22T00:44:36.896257Z INFO fork_choice_control::block_processor: Validating block with slot: 4247 +2024-09-22T00:44:36.898439Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5568d2ff66241b1217cc341bc5f0cfd6574f028ed7f94582fc15f42e8cb7a79c, slot: 4247 +2024-09-22T00:44:36.907422Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4247 +2024-09-22T00:44:36.907443Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4247 +2024-09-22T00:44:36.913088Z INFO fork_choice_control::block_processor: Validating block with slot: 5282 +2024-09-22T00:44:36.918446Z INFO fork_choice_control::block_processor: Validating block with slot: 5218 +2024-09-22T00:44:36.931210Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 131, root: 0xe367f940d954ef55f17071b02a47f7d5188a5c15bd470bd95b44d57d3f58e953, head slot: 4247, head root: 0x5568d2ff66241b1217cc341bc5f0cfd6574f028ed7f94582fc15f42e8cb7a79c) +2024-09-22T00:44:36.931669Z INFO fork_choice_control::block_processor: Validating block with slot: 4248 +2024-09-22T00:44:36.932641Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7d17331295b75a0e95f91f88d38b787df89aa551a02f7ed0c270f98e674e2203, slot: 4248 +2024-09-22T00:44:36.957296Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4248 +2024-09-22T00:44:36.957320Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4248 +2024-09-22T00:44:36.963923Z INFO fork_choice_control::block_processor: Validating block with slot: 5402 +2024-09-22T00:44:36.963938Z INFO fork_choice_control::block_processor: Validating block with slot: 5283 +2024-09-22T00:44:36.974850Z INFO fork_choice_control::block_processor: Validating block with slot: 4249 +2024-09-22T00:44:36.975835Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc26f884fb74bcea5604a73317316e516a0977d8800768415a27413b11c55afe2, slot: 4249 +2024-09-22T00:44:36.981140Z INFO fork_choice_control::block_processor: Validating block with slot: 5219 +2024-09-22T00:44:36.982290Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4249 +2024-09-22T00:44:36.982304Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4249 +2024-09-22T00:44:36.989256Z INFO fork_choice_control::block_processor: Validating block with slot: 5403 +2024-09-22T00:44:36.999726Z INFO fork_choice_control::block_processor: Validating block with slot: 4250 +2024-09-22T00:44:37.000878Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaba402c6fd50bdbf70ab6106d44463e72b5945d724e08efeb5e46000529f93c5, slot: 4250 +2024-09-22T00:44:37.003710Z INFO fork_choice_control::block_processor: Validating block with slot: 5284 +2024-09-22T00:44:37.010511Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4250 +2024-09-22T00:44:37.010533Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4250 +2024-09-22T00:44:37.021139Z INFO fork_choice_control::block_processor: Validating block with slot: 5220 +2024-09-22T00:44:37.027513Z INFO fork_choice_control::block_processor: Validating block with slot: 4251 +2024-09-22T00:44:37.028793Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6a94c07092e92e519aefb6d5087a10c4172b227b1f5b8abcfb7bc6f9494a7dcd, slot: 4251 +2024-09-22T00:44:37.035955Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4251 +2024-09-22T00:44:37.035969Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4251 +2024-09-22T00:44:37.048399Z INFO fork_choice_control::block_processor: Validating block with slot: 5404 +2024-09-22T00:44:37.053095Z INFO fork_choice_control::block_processor: Validating block with slot: 4252 +2024-09-22T00:44:37.054047Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf503a6149e0304379085ab945f85dac2f4ba1c1deb75e2f51ba8ab426cc1a87e, slot: 4252 +2024-09-22T00:44:37.057808Z INFO fork_choice_control::block_processor: Validating block with slot: 5285 +2024-09-22T00:44:37.061978Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4252 +2024-09-22T00:44:37.061994Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4252 +2024-09-22T00:44:37.065757Z INFO fork_choice_control::block_processor: Validating block with slot: 5221 +2024-09-22T00:44:37.079253Z INFO fork_choice_control::block_processor: Validating block with slot: 4253 +2024-09-22T00:44:37.080697Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0fb45e41770151c1663ee74d148b2678a75be0332aaa61008b369bd386d2cf71, slot: 4253 +2024-09-22T00:44:37.084202Z INFO fork_choice_control::block_processor: Validating block with slot: 5405 +2024-09-22T00:44:37.088698Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4253 +2024-09-22T00:44:37.088713Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4253 +2024-09-22T00:44:37.090025Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 4192 +2024-09-22T00:44:37.105643Z INFO fork_choice_control::block_processor: Validating block with slot: 4254 +2024-09-22T00:44:37.106818Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe6ec25eebefb3251416ea3694508cd9a1d81b0e35bda62393373bcb6cbb6006f, slot: 4254 +2024-09-22T00:44:37.112852Z INFO fork_choice_control::block_processor: Validating block with slot: 5286 +2024-09-22T00:44:37.114107Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4254 +2024-09-22T00:44:37.114121Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4254 +2024-09-22T00:44:37.115499Z INFO fork_choice_control::block_processor: Validating block with slot: 5222 +2024-09-22T00:44:37.129014Z INFO fork_choice_control::block_processor: Validating block with slot: 5406 +2024-09-22T00:44:37.131649Z INFO fork_choice_control::block_processor: Validating block with slot: 4255 +2024-09-22T00:44:37.132903Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x74287addd94b7b7415327d3e12ee86bcf0f39f53a70e69b0ce85294ada96a699, slot: 4255 +2024-09-22T00:44:37.140424Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4255 +2024-09-22T00:44:37.140449Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4255 +2024-09-22T00:44:37.144503Z INFO fork_choice_control::block_processor: Validating block with slot: 5287 +2024-09-22T00:44:37.152531Z INFO fork_choice_control::block_processor: Validating block with slot: 5223 +2024-09-22T00:44:37.158360Z INFO fork_choice_control::block_processor: Validating block with slot: 4256 +2024-09-22T00:44:37.159351Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x98d7178fd5d810845d675b015bec5b36a05c10fea174e5b5186c20e4acc10afa, slot: 4256 +2024-09-22T00:44:37.194560Z INFO fork_choice_control::block_processor: Validating block with slot: 5407 +2024-09-22T00:44:37.201990Z INFO fork_choice_control::block_processor: Validating block with slot: 5288 +2024-09-22T00:44:37.219511Z INFO fork_choice_control::block_processor: Validating block with slot: 5224 +2024-09-22T00:44:37.228963Z INFO fork_choice_control::block_processor: Validating block with slot: 5289 +2024-09-22T00:44:37.242089Z INFO fork_choice_control::block_processor: Validating block with slot: 5225 +2024-09-22T00:44:37.258657Z INFO fork_choice_control::block_processor: Validating block with slot: 5290 +2024-09-22T00:44:37.260380Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4256 +2024-09-22T00:44:37.260393Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4256 +2024-09-22T00:44:37.272299Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 4256) +2024-09-22T00:44:37.272481Z INFO fork_choice_control::block_processor: Validating block with slot: 4257 +2024-09-22T00:44:37.273905Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe7220deadddaf2d197d4159bcd335ab754be6e47dd52094d7a8203a09e657567, slot: 4257 +2024-09-22T00:44:37.275882Z INFO fork_choice_control::block_processor: Validating block with slot: 5226 +2024-09-22T00:44:37.287437Z INFO fork_choice_control::block_processor: Validating block with slot: 5291 +2024-09-22T00:44:37.300203Z INFO fork_choice_control::block_processor: Validating block with slot: 5227 +2024-09-22T00:44:37.317624Z INFO fork_choice_control::block_processor: Validating block with slot: 5293 +2024-09-22T00:44:37.333827Z INFO fork_choice_control::block_processor: Validating block with slot: 5228 +2024-09-22T00:44:37.349369Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4257 +2024-09-22T00:44:37.349390Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4257 +2024-09-22T00:44:37.355747Z INFO fork_choice_control::block_processor: Validating block with slot: 5294 +2024-09-22T00:44:37.360342Z INFO fork_choice_control::block_processor: Validating block with slot: 4258 +2024-09-22T00:44:37.361889Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4a4245771d6b4226995487a8dc711f708a86688be76a88dca530af642d0fb477, slot: 4258 +2024-09-22T00:44:37.364107Z INFO fork_choice_control::block_processor: Validating block with slot: 5229 +2024-09-22T00:44:37.371992Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4258 +2024-09-22T00:44:37.372007Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4258 +2024-09-22T00:44:37.382223Z INFO fork_choice_control::block_processor: Validating block with slot: 5295 +2024-09-22T00:44:37.383341Z INFO fork_choice_control::block_processor: Validating block with slot: 4259 +2024-09-22T00:44:37.386192Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2ca7237cde0e45720d518fcfa81e23cb36357d80b0b0424700476830baa1fd3e, slot: 4259 +2024-09-22T00:44:37.397386Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4259 +2024-09-22T00:44:37.397409Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4259 +2024-09-22T00:44:37.403372Z INFO fork_choice_control::block_processor: Validating block with slot: 5230 +2024-09-22T00:44:37.409473Z INFO fork_choice_control::block_processor: Validating block with slot: 4260 +2024-09-22T00:44:37.409680Z INFO fork_choice_control::block_processor: Validating block with slot: 5296 +2024-09-22T00:44:37.410820Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x19a93cbb14e28a5db54b5f0bdcb324aec2d3583287f5ee3054ea1d3aa29dbc46, slot: 4260 +2024-09-22T00:44:37.416939Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4260 +2024-09-22T00:44:37.416954Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4260 +2024-09-22T00:44:37.425873Z INFO fork_choice_control::block_processor: Validating block with slot: 5231 +2024-09-22T00:44:37.428945Z INFO fork_choice_control::block_processor: Validating block with slot: 4261 +2024-09-22T00:44:37.430268Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xae0ca525fc774e54393c5f5da0887faea5676ad047b1d5380f51174853791245, slot: 4261 +2024-09-22T00:44:37.437895Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4261 +2024-09-22T00:44:37.437915Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4261 +2024-09-22T00:44:37.441840Z INFO fork_choice_control::block_processor: Validating block with slot: 5297 +2024-09-22T00:44:37.450037Z INFO fork_choice_control::block_processor: Validating block with slot: 4262 +2024-09-22T00:44:37.451002Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd0c949270a2d60b7f29da7537c2c38ecfb2bf4225e115e27e50576a14222274b, slot: 4262 +2024-09-22T00:44:37.457644Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4262 +2024-09-22T00:44:37.457663Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4262 +2024-09-22T00:44:37.458065Z INFO fork_choice_control::block_processor: Validating block with slot: 5232 +2024-09-22T00:44:37.469769Z INFO fork_choice_control::block_processor: Validating block with slot: 4263 +2024-09-22T00:44:37.471322Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb0c1acb4dbb3ec74937e68b26c9d499a2c216c41dbf820bb07417ea36f3d69b9, slot: 4263 +2024-09-22T00:44:37.473561Z INFO fork_choice_control::block_processor: Validating block with slot: 5298 +2024-09-22T00:44:37.480396Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4263 +2024-09-22T00:44:37.480416Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4263 +2024-09-22T00:44:37.493025Z INFO fork_choice_control::block_processor: Validating block with slot: 4264 +2024-09-22T00:44:37.494150Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe340cc7c41662480cbf67784c5d4cfc37b09927d1a8dff74d8e4b8cb54b335d8, slot: 4264 +2024-09-22T00:44:37.498190Z INFO fork_choice_control::block_processor: Validating block with slot: 5233 +2024-09-22T00:44:37.501916Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4264 +2024-09-22T00:44:37.501928Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4264 +2024-09-22T00:44:37.505706Z INFO fork_choice_control::block_processor: Validating block with slot: 5299 +2024-09-22T00:44:37.514613Z INFO fork_choice_control::block_processor: Validating block with slot: 4265 +2024-09-22T00:44:37.515576Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4dc580b2b0d5f3f1e2d309b16dcf3bb619b5aba45d250997400a3ef2a002385c, slot: 4265 +2024-09-22T00:44:37.520357Z INFO fork_choice_control::block_processor: Validating block with slot: 5234 +2024-09-22T00:44:37.521872Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4265 +2024-09-22T00:44:37.521884Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4265 +2024-09-22T00:44:37.534452Z INFO fork_choice_control::block_processor: Validating block with slot: 4267 +2024-09-22T00:44:37.536253Z INFO fork_choice_control::block_processor: Validating block with slot: 5300 +2024-09-22T00:44:37.537510Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdaa3761b05eb935ec1b0977e850e7142a97c97375cecf7beaf9bec1cf09f2791, slot: 4267 +2024-09-22T00:44:37.549710Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4267 +2024-09-22T00:44:37.549728Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4267 +2024-09-22T00:44:37.550377Z INFO fork_choice_control::block_processor: Validating block with slot: 5235 +2024-09-22T00:44:37.563162Z INFO fork_choice_control::block_processor: Validating block with slot: 4268 +2024-09-22T00:44:37.564131Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x31311c5525c8da08bb7d9ea32d45195e9e6869d50d93c1d15247deac2d9fd5a9, slot: 4268 +2024-09-22T00:44:37.569982Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4268 +2024-09-22T00:44:37.569995Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4268 +2024-09-22T00:44:37.583522Z INFO fork_choice_control::block_processor: Validating block with slot: 4269 +2024-09-22T00:44:37.584493Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5b2113ab6648be33aacdcad55901b2bdaf55e2532b619d9883b664c375439760, slot: 4269 +2024-09-22T00:44:37.590293Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4269 +2024-09-22T00:44:37.590315Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4269 +2024-09-22T00:44:37.603513Z INFO fork_choice_control::block_processor: Validating block with slot: 4270 +2024-09-22T00:44:37.604911Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb72f79de070f5b06526e45249e7b9eca6d4ecdb274a942aaafa9bd47fc785a03, slot: 4270 +2024-09-22T00:44:37.608082Z INFO fork_choice_control::block_processor: Validating block with slot: 5302 +2024-09-22T00:44:37.612330Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4270 +2024-09-22T00:44:37.612349Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4270 +2024-09-22T00:44:37.626151Z INFO fork_choice_control::block_processor: Validating block with slot: 4271 +2024-09-22T00:44:37.627422Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x792eef0bfcb83a494e0a5e168401f8f9fd5e6595d1f3066dab4563029cb68396, slot: 4271 +2024-09-22T00:44:37.633538Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4271 +2024-09-22T00:44:37.633556Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4271 +2024-09-22T00:44:37.647524Z INFO fork_choice_control::block_processor: Validating block with slot: 4272 +2024-09-22T00:44:37.648637Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xee825d2c99a548cb41386b9f8023393942d6ba107de0da3627bbd6b19ec0de86, slot: 4272 +2024-09-22T00:44:37.654917Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4272 +2024-09-22T00:44:37.654929Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4272 +2024-09-22T00:44:37.668965Z INFO fork_choice_control::block_processor: Validating block with slot: 4273 +2024-09-22T00:44:37.670055Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x291665e530d6c20cd2e419ee066c62b1dc75ae4475e0c7608810df507c29ba1f, slot: 4273 +2024-09-22T00:44:37.676411Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4273 +2024-09-22T00:44:37.676434Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4273 +2024-09-22T00:44:37.690908Z INFO fork_choice_control::block_processor: Validating block with slot: 4275 +2024-09-22T00:44:37.693959Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x83ad344e0c868b11550579d66785f3a0fa766dde48db803f1b321a1bc159ed84, slot: 4275 +2024-09-22T00:44:37.705928Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4275 +2024-09-22T00:44:37.705944Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4275 +2024-09-22T00:44:37.720458Z INFO fork_choice_control::block_processor: Validating block with slot: 4276 +2024-09-22T00:44:37.722660Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x47ae9607a4bb431de817334efd46d5e55452f97608d041a3f23d36f4f4177e4e, slot: 4276 +2024-09-22T00:44:37.731265Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4276 +2024-09-22T00:44:37.731281Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4276 +2024-09-22T00:44:37.746475Z INFO fork_choice_control::block_processor: Validating block with slot: 4277 +2024-09-22T00:44:37.747432Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe633fed126c44ba4407a4dc7deab7fd527ea6118ae4c069d94cd9a5b9fbcae31, slot: 4277 +2024-09-22T00:44:37.753020Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4277 +2024-09-22T00:44:37.753032Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4277 +2024-09-22T00:44:37.768488Z INFO fork_choice_control::block_processor: Validating block with slot: 4278 +2024-09-22T00:44:37.769451Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd8b3294aca813c2981f5dbbf4411d1e085e36ba4ba7268a1a883486b587e2af6, slot: 4278 +2024-09-22T00:44:37.775246Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4278 +2024-09-22T00:44:37.775268Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4278 +2024-09-22T00:44:37.790934Z INFO fork_choice_control::block_processor: Validating block with slot: 4279 +2024-09-22T00:44:37.792320Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1c5718115f6013e7abf6dc02ac892e710253798f672b6906d40976a2a8b0c463, slot: 4279 +2024-09-22T00:44:37.798892Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4279 +2024-09-22T00:44:37.798905Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4279 +2024-09-22T00:44:37.819899Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 132, root: 0x022e097cad8b5e495567505f2be8d70cd3de0e394f1cba1bad8089d2fe449890, head slot: 4279, head root: 0x1c5718115f6013e7abf6dc02ac892e710253798f672b6906d40976a2a8b0c463) +2024-09-22T00:44:37.819911Z INFO fork_choice_control::block_processor: Validating block with slot: 4280 +2024-09-22T00:44:37.821321Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3d90853d764b9b727df3a6610b8fa1f374ef7ec6c7c020311816ff5ca1f1ee52, slot: 4280 +2024-09-22T00:44:37.828128Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4280 +2024-09-22T00:44:37.828151Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4280 +2024-09-22T00:44:37.844192Z INFO fork_choice_control::block_processor: Validating block with slot: 4281 +2024-09-22T00:44:37.846695Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x95b060d3a202a9438cc48498885d8eea6c41fe4acc48f38609a59939aae49c92, slot: 4281 +2024-09-22T00:44:37.857608Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4281 +2024-09-22T00:44:37.857632Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4281 +2024-09-22T00:44:37.859865Z INFO fork_choice_control::block_processor: Validating block with slot: 5236 +2024-09-22T00:44:37.861865Z INFO fork_choice_control::block_processor: Validating block with slot: 5237 +2024-09-22T00:44:37.874654Z INFO fork_choice_control::block_processor: Validating block with slot: 4282 +2024-09-22T00:44:37.876371Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0c5956515e28efe1f8c3198959bcae5d08d6d014cb12629f88223ab8910338c8, slot: 4282 +2024-09-22T00:44:37.883469Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4282 +2024-09-22T00:44:37.883488Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4282 +2024-09-22T00:44:37.890738Z INFO fork_choice_control::block_processor: Validating block with slot: 5238 +2024-09-22T00:44:37.890769Z INFO fork_choice_control::block_processor: Validating block with slot: 5239 +2024-09-22T00:44:37.890808Z INFO fork_choice_control::block_processor: Validating block with slot: 5241 +2024-09-22T00:44:37.891055Z INFO fork_choice_control::block_processor: Validating block with slot: 5242 +2024-09-22T00:44:37.891077Z INFO fork_choice_control::block_processor: Validating block with slot: 5244 +2024-09-22T00:44:37.891191Z INFO fork_choice_control::block_processor: Validating block with slot: 5243 +2024-09-22T00:44:37.892153Z INFO fork_choice_control::block_processor: Validating block with slot: 5245 +2024-09-22T00:44:37.893223Z INFO fork_choice_control::block_processor: Validating block with slot: 5246 +2024-09-22T00:44:37.893377Z INFO fork_choice_control::block_processor: Validating block with slot: 5251 +2024-09-22T00:44:37.893796Z INFO fork_choice_control::block_processor: Validating block with slot: 5252 +2024-09-22T00:44:37.893970Z INFO fork_choice_control::block_processor: Validating block with slot: 5240 +2024-09-22T00:44:37.894717Z INFO fork_choice_control::block_processor: Validating block with slot: 5253 +2024-09-22T00:44:37.894932Z INFO fork_choice_control::block_processor: Validating block with slot: 5254 +2024-09-22T00:44:37.896454Z INFO fork_choice_control::block_processor: Validating block with slot: 5255 +2024-09-22T00:44:37.896590Z INFO fork_choice_control::block_processor: Validating block with slot: 5256 +2024-09-22T00:44:37.896584Z INFO fork_choice_control::block_processor: Validating block with slot: 5247 +2024-09-22T00:44:37.897238Z INFO fork_choice_control::block_processor: Validating block with slot: 5257 +2024-09-22T00:44:37.900518Z INFO fork_choice_control::block_processor: Validating block with slot: 5303 +2024-09-22T00:44:37.901925Z INFO fork_choice_control::block_processor: Validating block with slot: 4283 +2024-09-22T00:44:37.903210Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1d69ca29ca1e5bd7d070136261c8554462f58fd60268410998a115b1d2d11ed7, slot: 4283 +2024-09-22T00:44:37.912062Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4283 +2024-09-22T00:44:37.912082Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4283 +2024-09-22T00:44:37.915255Z INFO fork_choice_control::block_processor: Validating block with slot: 5258 +2024-09-22T00:44:37.923740Z INFO fork_choice_control::block_processor: Validating block with slot: 5304 +2024-09-22T00:44:37.930137Z INFO fork_choice_control::block_processor: Validating block with slot: 4285 +2024-09-22T00:44:37.931874Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd09ba4de19610696e61a1ff6c3abebff43d6faa6c268b64d8532c670f5792466, slot: 4285 +2024-09-22T00:44:37.947878Z INFO fork_choice_control::block_processor: Validating block with slot: 5259 +2024-09-22T00:44:37.957523Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4285 +2024-09-22T00:44:37.957546Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4285 +2024-09-22T00:44:37.962191Z INFO fork_choice_control::block_processor: Validating block with slot: 5305 +2024-09-22T00:44:37.966758Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 4224 +2024-09-22T00:44:37.970234Z INFO fork_choice_control::block_processor: Validating block with slot: 5260 +2024-09-22T00:44:37.980918Z INFO fork_choice_control::block_processor: Validating block with slot: 4286 +2024-09-22T00:44:37.984113Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa8f125d88cf6e1f824f4bc94934cf36139e13090c2f046fac4ea4db965d725f7, slot: 4286 +2024-09-22T00:44:37.984609Z INFO fork_choice_control::block_processor: Validating block with slot: 5306 +2024-09-22T00:44:37.994678Z INFO fork_choice_control::block_processor: Validating block with slot: 5261 +2024-09-22T00:44:37.995091Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4286 +2024-09-22T00:44:37.995186Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4286 +2024-09-22T00:44:38.009374Z INFO fork_choice_control::block_processor: Validating block with slot: 5307 +2024-09-22T00:44:38.016953Z INFO fork_choice_control::block_processor: Validating block with slot: 4287 +2024-09-22T00:44:38.018457Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7c4f0faccd1849dc0522aac77d7db797cd2f0cb5e95a8a946aaad9882e9eae46, slot: 4287 +2024-09-22T00:44:38.032111Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4287 +2024-09-22T00:44:38.032132Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4287 +2024-09-22T00:44:38.036469Z INFO fork_choice_control::block_processor: Validating block with slot: 5263 +2024-09-22T00:44:38.036521Z INFO fork_choice_control::block_processor: Validating block with slot: 5308 +2024-09-22T00:44:38.053911Z INFO fork_choice_control::block_processor: Validating block with slot: 4288 +2024-09-22T00:44:38.055070Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2e47edf9e4ae70998223cdc9f89363c84608ecac4c856a7824da6c405df7a4a0, slot: 4288 +2024-09-22T00:44:38.057859Z INFO fork_choice_control::block_processor: Validating block with slot: 5264 +2024-09-22T00:44:38.069253Z INFO fork_choice_control::block_processor: Validating block with slot: 5309 +2024-09-22T00:44:38.075812Z INFO fork_choice_control::block_processor: Validating block with slot: 5265 +2024-09-22T00:44:38.097726Z INFO fork_choice_control::block_processor: Validating block with slot: 5310 +2024-09-22T00:44:38.113914Z INFO fork_choice_control::block_processor: Validating block with slot: 5266 +2024-09-22T00:44:38.130086Z INFO fork_choice_control::block_processor: Validating block with slot: 5311 +2024-09-22T00:44:38.143572Z INFO fork_choice_control::block_processor: Validating block with slot: 5267 +2024-09-22T00:44:38.160719Z INFO fork_choice_control::block_processor: Validating block with slot: 5312 +2024-09-22T00:44:38.161655Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4288 +2024-09-22T00:44:38.161669Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4288 +2024-09-22T00:44:38.171913Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 4288) +2024-09-22T00:44:38.172023Z INFO fork_choice_control::block_processor: Validating block with slot: 4289 +2024-09-22T00:44:38.173219Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x569f627978bf96c497bf1f75009b5e60ec56b7eed64f30e65967bdf127f546ad, slot: 4289 +2024-09-22T00:44:38.189040Z INFO fork_choice_control::block_processor: Validating block with slot: 5268 +2024-09-22T00:44:38.199366Z INFO fork_choice_control::block_processor: Validating block with slot: 5313 +2024-09-22T00:44:38.207756Z INFO fork_choice_control::block_processor: Validating block with slot: 5269 +2024-09-22T00:44:38.222784Z INFO fork_choice_control::block_processor: Validating block with slot: 5314 +2024-09-22T00:44:38.240055Z INFO fork_choice_control::block_processor: Validating block with slot: 5270 +2024-09-22T00:44:38.247219Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4289 +2024-09-22T00:44:38.247233Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4289 +2024-09-22T00:44:38.255889Z INFO fork_choice_control::block_processor: Validating block with slot: 5315 +2024-09-22T00:44:38.257840Z INFO fork_choice_control::block_processor: Validating block with slot: 4290 +2024-09-22T00:44:38.260943Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1ee8baf9bd4c5af39057a1f6796c9ab24990092dd693c780ad529979ac95b824, slot: 4290 +2024-09-22T00:44:38.283866Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4290 +2024-09-22T00:44:38.283924Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4290 +2024-09-22T00:44:38.285821Z INFO fork_choice_control::block_processor: Validating block with slot: 5271 +2024-09-22T00:44:38.287650Z INFO fork_choice_control::block_processor: Validating block with slot: 5316 +2024-09-22T00:44:38.297697Z INFO fork_choice_control::block_processor: Validating block with slot: 4291 +2024-09-22T00:44:38.300086Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6b5140df3d29af6e88149ef4aa37e28ec3880a9c179dbd19bfaf1cf6b756af65, slot: 4291 +2024-09-22T00:44:38.301411Z INFO fork_choice_control::block_processor: Validating block with slot: 5272 +2024-09-22T00:44:38.306682Z INFO fork_choice_control::block_processor: Validating block with slot: 5317 +2024-09-22T00:44:38.308451Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4291 +2024-09-22T00:44:38.308463Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4291 +2024-09-22T00:44:38.319878Z INFO fork_choice_control::block_processor: Validating block with slot: 4292 +2024-09-22T00:44:38.320982Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc0b1fcb43414ddb397adceed6fd48a37ec0920856cd12714871fedd261550381, slot: 4292 +2024-09-22T00:44:38.328376Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4292 +2024-09-22T00:44:38.328398Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4292 +2024-09-22T00:44:38.332786Z INFO fork_choice_control::block_processor: Validating block with slot: 5273 +2024-09-22T00:44:38.340696Z INFO fork_choice_control::block_processor: Validating block with slot: 4293 +2024-09-22T00:44:38.342058Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf0e6e8fd1c69cd9ac567da91807962c96e7d3d6850bffc34e3fb73541ff0a7a4, slot: 4293 +2024-09-22T00:44:38.349338Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4293 +2024-09-22T00:44:38.349350Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4293 +2024-09-22T00:44:38.353019Z INFO fork_choice_control::block_processor: Validating block with slot: 5318 +2024-09-22T00:44:38.363750Z INFO fork_choice_control::block_processor: Validating block with slot: 4294 +2024-09-22T00:44:38.364227Z INFO fork_choice_control::block_processor: Validating block with slot: 5274 +2024-09-22T00:44:38.364713Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd20b3eb6f47f4d9d756dceb6879c6097a62e86744b19a2a71001173adef53d35, slot: 4294 +2024-09-22T00:44:38.371102Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4294 +2024-09-22T00:44:38.371115Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4294 +2024-09-22T00:44:38.380333Z INFO fork_choice_control::block_processor: Validating block with slot: 5319 +2024-09-22T00:44:38.382772Z INFO fork_choice_control::block_processor: Validating block with slot: 4295 +2024-09-22T00:44:38.385674Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd49a2e40ce6529e560f34a40df19f58f8d15f4879d99976dcf68729acbdd30f7, slot: 4295 +2024-09-22T00:44:38.396914Z INFO fork_choice_control::block_processor: Validating block with slot: 5275 +2024-09-22T00:44:38.398842Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4295 +2024-09-22T00:44:38.398855Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4295 +2024-09-22T00:44:38.411610Z INFO fork_choice_control::block_processor: Validating block with slot: 4296 +2024-09-22T00:44:38.412609Z INFO fork_choice_control::block_processor: Validating block with slot: 5320 +2024-09-22T00:44:38.412709Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4497563311af0f8fa8800d02b68b9485d775cdae60571d246b1bc45cadcb068e, slot: 4296 +2024-09-22T00:44:38.419430Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4296 +2024-09-22T00:44:38.419442Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4296 +2024-09-22T00:44:38.426508Z INFO fork_choice_control::block_processor: Validating block with slot: 5276 +2024-09-22T00:44:38.431844Z INFO fork_choice_control::block_processor: Validating block with slot: 4297 +2024-09-22T00:44:38.433077Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf811ac0650c18ee02792f6da75b041de294678b3f01065addb9f6161def797bb, slot: 4297 +2024-09-22T00:44:38.439463Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4297 +2024-09-22T00:44:38.439485Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4297 +2024-09-22T00:44:38.441614Z INFO fork_choice_control::block_processor: Validating block with slot: 5322 +2024-09-22T00:44:38.451860Z INFO fork_choice_control::block_processor: Validating block with slot: 4298 +2024-09-22T00:44:38.453381Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x325ed9919224bbba55150df4cfae87786c4d14beab98183cfba82ed3762e4486, slot: 4298 +2024-09-22T00:44:38.457447Z INFO fork_choice_control::block_processor: Validating block with slot: 5277 +2024-09-22T00:44:38.461020Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4298 +2024-09-22T00:44:38.461037Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4298 +2024-09-22T00:44:38.473626Z INFO fork_choice_control::block_processor: Validating block with slot: 4300 +2024-09-22T00:44:38.475445Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1509b3b4bdea5346def2a2a44633a739eba6c2182bb100b35480ef7f6d2bab3c, slot: 4300 +2024-09-22T00:44:38.480467Z INFO fork_choice_control::block_processor: Validating block with slot: 5323 +2024-09-22T00:44:38.484571Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4300 +2024-09-22T00:44:38.484583Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4300 +2024-09-22T00:44:38.492587Z INFO fork_choice_control::block_processor: Validating block with slot: 5278 +2024-09-22T00:44:38.497598Z INFO fork_choice_control::block_processor: Validating block with slot: 4301 +2024-09-22T00:44:38.498673Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdbd4bd081bd55886ad99cfb7bf10f9793f303a6846d9d8592cac81a82a4a2a29, slot: 4301 +2024-09-22T00:44:38.504789Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4301 +2024-09-22T00:44:38.504806Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4301 +2024-09-22T00:44:38.518208Z INFO fork_choice_control::block_processor: Validating block with slot: 4302 +2024-09-22T00:44:38.519195Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x16b5e4ede1a7e53639344f8cccfc96777e548582441f19ee60e6bef1841bcd6e, slot: 4302 +2024-09-22T00:44:38.520233Z INFO fork_choice_control::block_processor: Validating block with slot: 5324 +2024-09-22T00:44:38.525402Z INFO fork_choice_control::block_processor: Validating block with slot: 5279 +2024-09-22T00:44:38.527052Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4302 +2024-09-22T00:44:38.527072Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4302 +2024-09-22T00:44:38.529207Z INFO fork_choice_control::block_processor: Validating block with slot: 5325 +2024-09-22T00:44:38.540364Z INFO fork_choice_control::block_processor: Validating block with slot: 4303 +2024-09-22T00:44:38.541355Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x729dea54273b3bdc97e636742ea16d21a3cbaab11a0eaa883dce8353e6aad759, slot: 4303 +2024-09-22T00:44:38.546747Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4303 +2024-09-22T00:44:38.546759Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4303 +2024-09-22T00:44:38.549880Z INFO fork_choice_control::block_processor: Validating block with slot: 5326 +2024-09-22T00:44:38.560456Z INFO fork_choice_control::block_processor: Validating block with slot: 4304 +2024-09-22T00:44:38.561970Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5abfe75b1b7f139a31f7afe4daea17fc268b3463e65c9ba422d3502356615e70, slot: 4304 +2024-09-22T00:44:38.568821Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4304 +2024-09-22T00:44:38.568833Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4304 +2024-09-22T00:44:38.576647Z INFO fork_choice_control::block_processor: Validating block with slot: 5327 +2024-09-22T00:44:38.582693Z INFO fork_choice_control::block_processor: Validating block with slot: 4305 +2024-09-22T00:44:38.583631Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x972dba4bfbd785939b8023e5ca65970bd128505dc381c9d9df34b5dfc4fd08e0, slot: 4305 +2024-09-22T00:44:38.588413Z INFO fork_choice_control::block_processor: Validating block with slot: 5328 +2024-09-22T00:44:38.589793Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4305 +2024-09-22T00:44:38.589812Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4305 +2024-09-22T00:44:38.597448Z INFO fork_choice_control::block_processor: Validating block with slot: 5329 +2024-09-22T00:44:38.603406Z INFO fork_choice_control::block_processor: Validating block with slot: 4306 +2024-09-22T00:44:38.604342Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x06c61964ec8bf2a52d3e7afbe0c9831b7c58baf57f5a48692aa0e8d59a93dca0, slot: 4306 +2024-09-22T00:44:38.610508Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4306 +2024-09-22T00:44:38.610531Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4306 +2024-09-22T00:44:38.622737Z INFO fork_choice_control::block_processor: Validating block with slot: 5330 +2024-09-22T00:44:38.624622Z INFO fork_choice_control::block_processor: Validating block with slot: 4307 +2024-09-22T00:44:38.627242Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3fea13b8b799c35f193aa5a06459777b64eb8163b71603b9dff8c077cb76f401, slot: 4307 +2024-09-22T00:44:38.630421Z INFO fork_choice_control::block_processor: Validating block with slot: 5331 +2024-09-22T00:44:38.637160Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4307 +2024-09-22T00:44:38.637171Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4307 +2024-09-22T00:44:38.645402Z INFO fork_choice_control::block_processor: Validating block with slot: 5332 +2024-09-22T00:44:38.651785Z INFO fork_choice_control::block_processor: Validating block with slot: 4308 +2024-09-22T00:44:38.652744Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x09ff4cf1bec6ed1a14ecaa8b8866eb972e6a89e0c273d6586d95048c34085027, slot: 4308 +2024-09-22T00:44:38.659174Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4308 +2024-09-22T00:44:38.659194Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4308 +2024-09-22T00:44:38.662071Z INFO fork_choice_control::block_processor: Validating block with slot: 5333 +2024-09-22T00:44:38.673778Z INFO fork_choice_control::block_processor: Validating block with slot: 4309 +2024-09-22T00:44:38.675326Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x18c77aea895d58e8603d6d22dd738b2801b6a215892989c9eba71c76b45f0b84, slot: 4309 +2024-09-22T00:44:38.679679Z INFO fork_choice_control::block_processor: Validating block with slot: 5334 +2024-09-22T00:44:38.682523Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4309 +2024-09-22T00:44:38.682534Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4309 +2024-09-22T00:44:38.697375Z INFO fork_choice_control::block_processor: Validating block with slot: 4310 +2024-09-22T00:44:38.698740Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5844e765d1ef852323637b12a8b82d2cf28e4ecfc2da40591151cdc5dfbe811f, slot: 4310 +2024-09-22T00:44:38.702633Z INFO fork_choice_control::block_processor: Validating block with slot: 5335 +2024-09-22T00:44:38.706086Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4310 +2024-09-22T00:44:38.706101Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4310 +2024-09-22T00:44:38.714543Z INFO fork_choice_control::block_processor: Validating block with slot: 5336 +2024-09-22T00:44:38.721381Z INFO fork_choice_control::block_processor: Validating block with slot: 4311 +2024-09-22T00:44:38.722363Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5d008430a6d9b7f53574b5cdd92e34c153b977fe17ab2072a3d821c13f9a39e2, slot: 4311 +2024-09-22T00:44:38.724246Z INFO fork_choice_control::block_processor: Validating block with slot: 5337 +2024-09-22T00:44:38.728970Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4311 +2024-09-22T00:44:38.728983Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4311 +2024-09-22T00:44:38.742654Z INFO fork_choice_control::block_processor: Validating block with slot: 5338 +2024-09-22T00:44:38.749214Z INFO fork_choice_control::block_processor: Validating block with slot: 5339 +2024-09-22T00:44:38.749668Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 133, root: 0x98d7178fd5d810845d675b015bec5b36a05c10fea174e5b5186c20e4acc10afa, head slot: 4311, head root: 0x5d008430a6d9b7f53574b5cdd92e34c153b977fe17ab2072a3d821c13f9a39e2) +2024-09-22T00:44:38.749703Z INFO fork_choice_control::block_processor: Validating block with slot: 4312 +2024-09-22T00:44:38.751743Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x265452fcd92dc953ad4bd382968ce4c84230296bf9ca3697d9801431fac9e4ce, slot: 4312 +2024-09-22T00:44:38.760596Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4312 +2024-09-22T00:44:38.760618Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4312 +2024-09-22T00:44:38.776266Z INFO fork_choice_control::block_processor: Validating block with slot: 4313 +2024-09-22T00:44:38.777534Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4b7db9c286a818c5f40ca8ed9ad3f4f233adb905c8b40247f96a95180fd53155, slot: 4313 +2024-09-22T00:44:38.779135Z INFO fork_choice_control::block_processor: Validating block with slot: 5340 +2024-09-22T00:44:38.784819Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4313 +2024-09-22T00:44:38.784834Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4313 +2024-09-22T00:44:38.786915Z INFO fork_choice_control::block_processor: Validating block with slot: 5341 +2024-09-22T00:44:38.800845Z INFO fork_choice_control::block_processor: Validating block with slot: 4314 +2024-09-22T00:44:38.802678Z INFO fork_choice_control::block_processor: Validating block with slot: 5342 +2024-09-22T00:44:38.802680Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x44309474f0ba459cfd7d00434a651d090c749681a231acb106ae5ee754fdeb0b, slot: 4314 +2024-09-22T00:44:38.814413Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4314 +2024-09-22T00:44:38.814433Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4314 +2024-09-22T00:44:38.831165Z INFO fork_choice_control::block_processor: Validating block with slot: 4315 +2024-09-22T00:44:38.832156Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7d3acfc8dfe87afb561c0188705ee16382e37759efe12eb8babb9dfd2727ed97, slot: 4315 +2024-09-22T00:44:38.839043Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4315 +2024-09-22T00:44:38.839065Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4315 +2024-09-22T00:44:38.856735Z INFO fork_choice_control::block_processor: Validating block with slot: 4316 +2024-09-22T00:44:38.857911Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe6a668ed6930e80e8fe8ffd4b99d6d6387273c1bd9cd801a62ceedec1d4e33de, slot: 4316 +2024-09-22T00:44:38.868162Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4316 +2024-09-22T00:44:38.868185Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4316 +2024-09-22T00:44:38.879644Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 4256 +2024-09-22T00:44:38.885017Z INFO fork_choice_control::block_processor: Validating block with slot: 4317 +2024-09-22T00:44:38.886275Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7a0ea5af512fefcc4dc1b5a9a07f6f6a24e97a8cc4d7169ec7c5051295721310, slot: 4317 +2024-09-22T00:44:38.893538Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4317 +2024-09-22T00:44:38.893559Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4317 +2024-09-22T00:44:38.910420Z INFO fork_choice_control::block_processor: Validating block with slot: 4318 +2024-09-22T00:44:38.911406Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xda32735a285a24e5cabbecec14b415990a9a08eaf2acca017843c7450fe2cb34, slot: 4318 +2024-09-22T00:44:38.917977Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4318 +2024-09-22T00:44:38.917994Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4318 +2024-09-22T00:44:38.935774Z INFO fork_choice_control::block_processor: Validating block with slot: 4319 +2024-09-22T00:44:38.937821Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3854f34a4ba41c025b6e4e7fa87cb5bb93bf1c6622b73ce5402fc850f5b4ed37, slot: 4319 +2024-09-22T00:44:38.948339Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4319 +2024-09-22T00:44:38.948365Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4319 +2024-09-22T00:44:38.967691Z INFO fork_choice_control::block_processor: Validating block with slot: 4320 +2024-09-22T00:44:38.969044Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd632a225b3d80abefcbc5ffa4991766adf13ce4fac455dd3fb8abba723f75ab4, slot: 4320 +2024-09-22T00:44:38.969770Z INFO fork_choice_control::block_processor: Validating block with slot: 5343 +2024-09-22T00:44:39.069895Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4320 +2024-09-22T00:44:39.069918Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4320 +2024-09-22T00:44:39.080293Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 4320) +2024-09-22T00:44:39.080444Z INFO fork_choice_control::block_processor: Validating block with slot: 4321 +2024-09-22T00:44:39.081405Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x927afcbd59a513cc81e2d91b8f21e431626ffb783e48f4f32eef3465ef352728, slot: 4321 +2024-09-22T00:44:39.153584Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4321 +2024-09-22T00:44:39.153603Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4321 +2024-09-22T00:44:39.164230Z INFO fork_choice_control::block_processor: Validating block with slot: 4322 +2024-09-22T00:44:39.166415Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd09ea078be91ac0750cd8a5085fe4f957f48245de088d5e9c444a1abce15ece4, slot: 4322 +2024-09-22T00:44:39.177200Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4322 +2024-09-22T00:44:39.177221Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4322 +2024-09-22T00:44:39.188031Z INFO fork_choice_control::block_processor: Validating block with slot: 4323 +2024-09-22T00:44:39.189308Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8802b0f7325580e1e5d859dd5918d2fb0ef1a6691cef8b94919b9da056e5ba0d, slot: 4323 +2024-09-22T00:44:39.196398Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4323 +2024-09-22T00:44:39.196418Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4323 +2024-09-22T00:44:39.207733Z INFO fork_choice_control::block_processor: Validating block with slot: 4324 +2024-09-22T00:44:39.209373Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb284905a151ab4f1d29d9c1bf5b200a8dd3ab65c6e792c7afe36b5cd201813a6, slot: 4324 +2024-09-22T00:44:39.217643Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4324 +2024-09-22T00:44:39.217656Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4324 +2024-09-22T00:44:39.229253Z INFO fork_choice_control::block_processor: Validating block with slot: 4325 +2024-09-22T00:44:39.230240Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeacab4d74e46113ab9c7c80ea501c04b0971832ad98ed67dfe6771f2a254109d, slot: 4325 +2024-09-22T00:44:39.238906Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4325 +2024-09-22T00:44:39.238929Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4325 +2024-09-22T00:44:39.250570Z INFO fork_choice_control::block_processor: Validating block with slot: 4326 +2024-09-22T00:44:39.251840Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc1fbbea21fd3bd45977ac93d8ba7ba73f910f787ce4cffb559a9dd519fc03d6a, slot: 4326 +2024-09-22T00:44:39.259895Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4326 +2024-09-22T00:44:39.259916Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4326 +2024-09-22T00:44:39.271605Z INFO fork_choice_control::block_processor: Validating block with slot: 4327 +2024-09-22T00:44:39.272594Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7f233b20031e389d1cf63fbe409477247e372e6daab889e77704a77dc8a8686c, slot: 4327 +2024-09-22T00:44:39.279209Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4327 +2024-09-22T00:44:39.279226Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4327 +2024-09-22T00:44:39.291714Z INFO fork_choice_control::block_processor: Validating block with slot: 4328 +2024-09-22T00:44:39.292857Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x292714ffb966c47a5add0572e11cd9a79c22e27eda54669b1c5ae2cdf138dbe2, slot: 4328 +2024-09-22T00:44:39.299962Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4328 +2024-09-22T00:44:39.299979Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4328 +2024-09-22T00:44:39.312374Z INFO fork_choice_control::block_processor: Validating block with slot: 4329 +2024-09-22T00:44:39.315407Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe8533fba22ab4f477bdf17b3ec4f8b1f06fac7187766d012c4a2c5d53cd07838, slot: 4329 +2024-09-22T00:44:39.326524Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4329 +2024-09-22T00:44:39.326544Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4329 +2024-09-22T00:44:39.339205Z INFO fork_choice_control::block_processor: Validating block with slot: 4330 +2024-09-22T00:44:39.340206Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x22afcd620f30dd19e71fb3d296894a0a903330ebf8dcb988bde4484e062204f8, slot: 4330 +2024-09-22T00:44:39.345730Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4330 +2024-09-22T00:44:39.345750Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4330 +2024-09-22T00:44:39.358766Z INFO fork_choice_control::block_processor: Validating block with slot: 4331 +2024-09-22T00:44:39.360147Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1e71e81731ce0a3c4d60373050438cdc1724df8bb99275a2e239b13febfcd78b, slot: 4331 +2024-09-22T00:44:39.366666Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4331 +2024-09-22T00:44:39.366679Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4331 +2024-09-22T00:44:39.379717Z INFO fork_choice_control::block_processor: Validating block with slot: 4332 +2024-09-22T00:44:39.380826Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf4c6c0620f1c9769ce1419ee8b49cf040c34dac56ef64829cc9dc56a32924cf4, slot: 4332 +2024-09-22T00:44:39.386605Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4332 +2024-09-22T00:44:39.386621Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4332 +2024-09-22T00:44:39.399806Z INFO fork_choice_control::block_processor: Validating block with slot: 4333 +2024-09-22T00:44:39.400771Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd5b2a50260bd20cdc02cac08c29699c2af046d9b63cf2081c743ac58a1383fc9, slot: 4333 +2024-09-22T00:44:39.406430Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4333 +2024-09-22T00:44:39.406451Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4333 +2024-09-22T00:44:39.419677Z INFO fork_choice_control::block_processor: Validating block with slot: 4334 +2024-09-22T00:44:39.421340Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x975b2c95451b9557549ddecbd18d3ba56917ce1390e639c56af219305b464729, slot: 4334 +2024-09-22T00:44:39.428773Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4334 +2024-09-22T00:44:39.428791Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4334 +2024-09-22T00:44:39.443471Z INFO fork_choice_control::block_processor: Validating block with slot: 4335 +2024-09-22T00:44:39.444836Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x17688b0af6f4ae01c797c1c3b37b21df736ac08229c24d81aa810e803703121c, slot: 4335 +2024-09-22T00:44:39.451803Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4335 +2024-09-22T00:44:39.451816Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4335 +2024-09-22T00:44:39.465656Z INFO fork_choice_control::block_processor: Validating block with slot: 4336 +2024-09-22T00:44:39.466624Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x46f1a1e788e0ee754984b8e3d78d3112c0a221da88216028470cf3b1ccab713d, slot: 4336 +2024-09-22T00:44:39.472325Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4336 +2024-09-22T00:44:39.472343Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4336 +2024-09-22T00:44:39.486308Z INFO fork_choice_control::block_processor: Validating block with slot: 4337 +2024-09-22T00:44:39.487983Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc5462a8988c7282c7c9a9a35872ede822fa9236f2dbc2e7e1040f9e24406d462, slot: 4337 +2024-09-22T00:44:39.496024Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4337 +2024-09-22T00:44:39.496043Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4337 +2024-09-22T00:44:39.510332Z INFO fork_choice_control::block_processor: Validating block with slot: 4338 +2024-09-22T00:44:39.511596Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xef90ac22a36a49a9d156776cccfb7866c6a6e491dde7e4c5a68ece437c0a87be, slot: 4338 +2024-09-22T00:44:39.518550Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4338 +2024-09-22T00:44:39.518569Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4338 +2024-09-22T00:44:39.533170Z INFO fork_choice_control::block_processor: Validating block with slot: 4339 +2024-09-22T00:44:39.534263Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc4ea9a0c18f92d5b6e0a627c7bd1e6ab914ed53c30c8ef93fab6f0e13157ac74, slot: 4339 +2024-09-22T00:44:39.540238Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4339 +2024-09-22T00:44:39.540264Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4339 +2024-09-22T00:44:39.554862Z INFO fork_choice_control::block_processor: Validating block with slot: 4340 +2024-09-22T00:44:39.556157Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc49d73c2b14186e1a7ac5a83894d6be86de85510f584e10bd1cc6af24281c58e, slot: 4340 +2024-09-22T00:44:39.562552Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4340 +2024-09-22T00:44:39.562571Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4340 +2024-09-22T00:44:39.577490Z INFO fork_choice_control::block_processor: Validating block with slot: 4341 +2024-09-22T00:44:39.578581Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x99b35b325247e30fe679ee6c1d3ade41f48235c13125e616e181881401de6ff6, slot: 4341 +2024-09-22T00:44:39.584336Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4341 +2024-09-22T00:44:39.584347Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4341 +2024-09-22T00:44:39.599371Z INFO fork_choice_control::block_processor: Validating block with slot: 4342 +2024-09-22T00:44:39.600328Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa68479b73b41c6674ca6cd1c9ad5ab3a4d9e5c1543d585f8f5447031b15be3d0, slot: 4342 +2024-09-22T00:44:39.605797Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4342 +2024-09-22T00:44:39.605820Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4342 +2024-09-22T00:44:39.620812Z INFO fork_choice_control::block_processor: Validating block with slot: 4343 +2024-09-22T00:44:39.622088Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x551ae850ca25f4ba8fc476dd766302902ddc442defd2db2a17656ef511d5f693, slot: 4343 +2024-09-22T00:44:39.628436Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4343 +2024-09-22T00:44:39.628453Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4343 +2024-09-22T00:44:39.649091Z INFO fork_choice_control::block_processor: Validating block with slot: 4345 +2024-09-22T00:44:39.649134Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 134, root: 0x2e47edf9e4ae70998223cdc9f89363c84608ecac4c856a7824da6c405df7a4a0, head slot: 4343, head root: 0x551ae850ca25f4ba8fc476dd766302902ddc442defd2db2a17656ef511d5f693) +2024-09-22T00:44:39.650931Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x777a0fd6cf5ae495a5e9887ef4e34db929cc1aaf437088deebbb0f6df979d4f5, slot: 4345 +2024-09-22T00:44:39.661846Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4345 +2024-09-22T00:44:39.661866Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4345 +2024-09-22T00:44:39.677836Z INFO fork_choice_control::block_processor: Validating block with slot: 4346 +2024-09-22T00:44:39.679041Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xec6ae3f0d398a33bc521594b62c3aa720b9ff669ddb885e88fdf4e68212f4a85, slot: 4346 +2024-09-22T00:44:39.683182Z INFO fork_choice_control::block_processor: Validating block with slot: 5728 +2024-09-22T00:44:39.683336Z INFO fork_choice_control::block_processor: Validating block with slot: 5729 +2024-09-22T00:44:39.686204Z INFO fork_choice_control::block_processor: Validating block with slot: 5730 +2024-09-22T00:44:39.687112Z INFO fork_choice_control::block_processor: Validating block with slot: 5731 +2024-09-22T00:44:39.687415Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4346 +2024-09-22T00:44:39.687609Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4346 +2024-09-22T00:44:39.688553Z INFO fork_choice_control::block_processor: Validating block with slot: 5732 +2024-09-22T00:44:39.706010Z INFO fork_choice_control::block_processor: Validating block with slot: 4347 +2024-09-22T00:44:39.708626Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x187326e213484dd840360eb17ef58751f57c07be1e3448c9e6867429fe140195, slot: 4347 +2024-09-22T00:44:39.710571Z INFO fork_choice_control::block_processor: Validating block with slot: 5734 +2024-09-22T00:44:39.710610Z INFO fork_choice_control::block_processor: Validating block with slot: 5735 +2024-09-22T00:44:39.712225Z INFO fork_choice_control::block_processor: Validating block with slot: 5736 +2024-09-22T00:44:39.712467Z INFO fork_choice_control::block_processor: Validating block with slot: 5737 +2024-09-22T00:44:39.713457Z INFO fork_choice_control::block_processor: Validating block with slot: 5738 +2024-09-22T00:44:39.713546Z INFO fork_choice_control::block_processor: Validating block with slot: 5739 +2024-09-22T00:44:39.714531Z INFO fork_choice_control::block_processor: Validating block with slot: 5740 +2024-09-22T00:44:39.719393Z INFO fork_choice_control::block_processor: Validating block with slot: 5741 +2024-09-22T00:44:39.721183Z INFO fork_choice_control::block_processor: Validating block with slot: 5743 +2024-09-22T00:44:39.721176Z INFO fork_choice_control::block_processor: Validating block with slot: 5742 +2024-09-22T00:44:39.721986Z INFO fork_choice_control::block_processor: Validating block with slot: 5744 +2024-09-22T00:44:39.729800Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4347 +2024-09-22T00:44:39.729818Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4347 +2024-09-22T00:44:39.750188Z INFO fork_choice_control::block_processor: Validating block with slot: 4348 +2024-09-22T00:44:39.754665Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfd50c4f5db96c5063e9c629dc412dace2412c49cadbc41fa0ebce6d8cb844892, slot: 4348 +2024-09-22T00:44:39.769547Z INFO fork_choice_control::block_processor: Validating block with slot: 5748 +2024-09-22T00:44:39.769568Z INFO fork_choice_control::block_processor: Validating block with slot: 5750 +2024-09-22T00:44:39.769542Z INFO fork_choice_control::block_processor: Validating block with slot: 5745 +2024-09-22T00:44:39.770180Z INFO fork_choice_control::block_processor: Validating block with slot: 5751 +2024-09-22T00:44:39.770362Z INFO fork_choice_control::block_processor: Validating block with slot: 5752 +2024-09-22T00:44:39.770688Z INFO fork_choice_control::block_processor: Validating block with slot: 5753 +2024-09-22T00:44:39.770885Z INFO fork_choice_control::block_processor: Validating block with slot: 5747 +2024-09-22T00:44:39.770902Z INFO fork_choice_control::block_processor: Validating block with slot: 5749 +2024-09-22T00:44:39.771403Z INFO fork_choice_control::block_processor: Validating block with slot: 5754 +2024-09-22T00:44:39.771628Z INFO fork_choice_control::block_processor: Validating block with slot: 5755 +2024-09-22T00:44:39.771940Z INFO fork_choice_control::block_processor: Validating block with slot: 5756 +2024-09-22T00:44:39.772845Z INFO fork_choice_control::block_processor: Validating block with slot: 5757 +2024-09-22T00:44:39.773027Z INFO fork_choice_control::block_processor: Validating block with slot: 5758 +2024-09-22T00:44:39.773154Z INFO fork_choice_control::block_processor: Validating block with slot: 5759 +2024-09-22T00:44:39.774059Z INFO fork_choice_control::block_processor: Validating block with slot: 5761 +2024-09-22T00:44:39.774381Z INFO fork_choice_control::block_processor: Validating block with slot: 5762 +2024-09-22T00:44:39.774502Z INFO fork_choice_control::block_processor: Validating block with slot: 5763 +2024-09-22T00:44:39.774530Z INFO fork_choice_control::block_processor: Validating block with slot: 5764 +2024-09-22T00:44:39.775570Z INFO fork_choice_control::block_processor: Validating block with slot: 5765 +2024-09-22T00:44:39.775974Z INFO fork_choice_control::block_processor: Validating block with slot: 5766 +2024-09-22T00:44:39.776168Z INFO fork_choice_control::block_processor: Validating block with slot: 5767 +2024-09-22T00:44:39.777075Z INFO fork_choice_control::block_processor: Validating block with slot: 5768 +2024-09-22T00:44:39.778879Z INFO fork_choice_control::block_processor: Validating block with slot: 5769 +2024-09-22T00:44:39.778909Z INFO fork_choice_control::block_processor: Validating block with slot: 5774 +2024-09-22T00:44:39.779125Z INFO fork_choice_control::block_processor: Validating block with slot: 5770 +2024-09-22T00:44:39.779190Z INFO fork_choice_control::block_processor: Validating block with slot: 5771 +2024-09-22T00:44:39.779355Z INFO fork_choice_control::block_processor: Validating block with slot: 5772 +2024-09-22T00:44:39.780367Z INFO fork_choice_control::block_processor: Validating block with slot: 5776 +2024-09-22T00:44:39.780514Z INFO fork_choice_control::block_processor: Validating block with slot: 5773 +2024-09-22T00:44:39.781122Z INFO fork_choice_control::block_processor: Validating block with slot: 5777 +2024-09-22T00:44:39.781578Z INFO fork_choice_control::block_processor: Validating block with slot: 5778 +2024-09-22T00:44:39.782427Z INFO fork_choice_control::block_processor: Validating block with slot: 5779 +2024-09-22T00:44:39.782513Z INFO fork_choice_control::block_processor: Validating block with slot: 5780 +2024-09-22T00:44:39.782816Z INFO fork_choice_control::block_processor: Validating block with slot: 5775 +2024-09-22T00:44:39.782905Z INFO fork_choice_control::block_processor: Validating block with slot: 5781 +2024-09-22T00:44:39.784708Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4348 +2024-09-22T00:44:39.784722Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4348 +2024-09-22T00:44:39.788791Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 4288 +2024-09-22T00:44:39.802357Z INFO fork_choice_control::block_processor: Validating block with slot: 4349 +2024-09-22T00:44:39.805979Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0775700bac15b93b1f788d032333488b38e54e9875134a2e8d2db54bb627aa52, slot: 4349 +2024-09-22T00:44:39.820666Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4349 +2024-09-22T00:44:39.820687Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4349 +2024-09-22T00:44:39.838923Z INFO fork_choice_control::block_processor: Validating block with slot: 4350 +2024-09-22T00:44:39.840064Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x076d1208f8700a0a2fcdef7a6cfaf949ab0bfdf0fb2f5fb25f8eaef929992bf3, slot: 4350 +2024-09-22T00:44:39.846824Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4350 +2024-09-22T00:44:39.846843Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4350 +2024-09-22T00:44:39.865036Z INFO fork_choice_control::block_processor: Validating block with slot: 4351 +2024-09-22T00:44:39.866436Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6202ccd3efef0a7f016485cbe13b536687c6dbd51e4792514f1c0ea03698051c, slot: 4351 +2024-09-22T00:44:39.875336Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4351 +2024-09-22T00:44:39.875358Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4351 +2024-09-22T00:44:39.893779Z INFO fork_choice_control::block_processor: Validating block with slot: 4352 +2024-09-22T00:44:39.894770Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd17e8a2e0c9257d8b848ded58c5be9c7f9ffad9e1bfec30571ca44c332e4e7e7, slot: 4352 +2024-09-22T00:44:39.901897Z INFO fork_choice_control::block_processor: Validating block with slot: 5784 +2024-09-22T00:44:39.998290Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4352 +2024-09-22T00:44:39.998314Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4352 +2024-09-22T00:44:40.008941Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 4352) +2024-09-22T00:44:40.009090Z INFO fork_choice_control::block_processor: Validating block with slot: 4354 +2024-09-22T00:44:40.013138Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd445e8852043ccd8394e0118c3623613bcf0118049463f47727e700d9574ac55, slot: 4354 +2024-09-22T00:44:40.094571Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4354 +2024-09-22T00:44:40.094590Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4354 +2024-09-22T00:44:40.105944Z INFO fork_choice_control::block_processor: Validating block with slot: 4355 +2024-09-22T00:44:40.106938Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x721b97b16331097ef0e4b92a77f4df1a8b561990c7909c31d34e967e117adaf3, slot: 4355 +2024-09-22T00:44:40.113402Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4355 +2024-09-22T00:44:40.113414Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4355 +2024-09-22T00:44:40.125204Z INFO fork_choice_control::block_processor: Validating block with slot: 4356 +2024-09-22T00:44:40.126168Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x98f7b9c81d3e48f357a930a2c6ea5228e43f5bdb7cc2dc05621d4f3d28731270, slot: 4356 +2024-09-22T00:44:40.132592Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4356 +2024-09-22T00:44:40.132608Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4356 +2024-09-22T00:44:40.144474Z INFO fork_choice_control::block_processor: Validating block with slot: 4357 +2024-09-22T00:44:40.145588Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9683e507f353ebe32d6c0849fcc38d37d45481d9cc8e1b3078147b8d6d64bc5c, slot: 4357 +2024-09-22T00:44:40.151848Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4357 +2024-09-22T00:44:40.151860Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4357 +2024-09-22T00:44:40.163846Z INFO fork_choice_control::block_processor: Validating block with slot: 4358 +2024-09-22T00:44:40.164947Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7c48f2fea1d9bd629fb98e4a238937fefef71fdeda39a6d5ec0f58418a6f70a3, slot: 4358 +2024-09-22T00:44:40.171602Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4358 +2024-09-22T00:44:40.171617Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4358 +2024-09-22T00:44:40.184009Z INFO fork_choice_control::block_processor: Validating block with slot: 4359 +2024-09-22T00:44:40.184992Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe391e8fcf68692a670388586255fe2bb7b1bb3707f13f42cb2a8b9cb8b3565c1, slot: 4359 +2024-09-22T00:44:40.191876Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4359 +2024-09-22T00:44:40.191898Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4359 +2024-09-22T00:44:40.204143Z INFO fork_choice_control::block_processor: Validating block with slot: 4360 +2024-09-22T00:44:40.205122Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0ed092542785d3b06c46521dd9c230e0119ee096de10d7dbe0b58a20901fac8e, slot: 4360 +2024-09-22T00:44:40.211721Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4360 +2024-09-22T00:44:40.211738Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4360 +2024-09-22T00:44:40.224363Z INFO fork_choice_control::block_processor: Validating block with slot: 4361 +2024-09-22T00:44:40.227165Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x00ab29c1d1c89e465e43e984f97ee710b6759bae035c130b6072484902d11eeb, slot: 4361 +2024-09-22T00:44:40.238781Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4361 +2024-09-22T00:44:40.238795Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4361 +2024-09-22T00:44:40.251706Z INFO fork_choice_control::block_processor: Validating block with slot: 4362 +2024-09-22T00:44:40.252689Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8733efbf938ab4a48250d767f5c911881e749f72b81a2c7ed7f54a244dea744a, slot: 4362 +2024-09-22T00:44:40.259310Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4362 +2024-09-22T00:44:40.259329Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4362 +2024-09-22T00:44:40.272266Z INFO fork_choice_control::block_processor: Validating block with slot: 4363 +2024-09-22T00:44:40.273398Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3dbff4cecbd778ed594b0ac09bbac48278f92cea9afd0d5e857ac22b0987c4bd, slot: 4363 +2024-09-22T00:44:40.280201Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4363 +2024-09-22T00:44:40.280223Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4363 +2024-09-22T00:44:40.293785Z INFO fork_choice_control::block_processor: Validating block with slot: 4364 +2024-09-22T00:44:40.295187Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf7e7ad7cdcf4ce90bd74e010b1c0b27c8902b5bd3fa5991dd8099491316d47a6, slot: 4364 +2024-09-22T00:44:40.304884Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4364 +2024-09-22T00:44:40.304901Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4364 +2024-09-22T00:44:40.320953Z INFO fork_choice_control::block_processor: Validating block with slot: 4365 +2024-09-22T00:44:40.322278Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x147ef60672182a3816dadcc41c5cccac7111c2599dc4bccc118054fc576e3438, slot: 4365 +2024-09-22T00:44:40.330271Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4365 +2024-09-22T00:44:40.330294Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4365 +2024-09-22T00:44:40.344091Z INFO fork_choice_control::block_processor: Validating block with slot: 4366 +2024-09-22T00:44:40.346001Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x782b3f541896d7058b80b3560fdf779a0f29d2c4e8944f7201687f11ee5debc5, slot: 4366 +2024-09-22T00:44:40.354058Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4366 +2024-09-22T00:44:40.354070Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4366 +2024-09-22T00:44:40.367980Z INFO fork_choice_control::block_processor: Validating block with slot: 4367 +2024-09-22T00:44:40.369084Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xae20eca4b4fa256238fc6e434488c29bf0e7febc0d26714d8c1f37d86ffa352a, slot: 4367 +2024-09-22T00:44:40.375540Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4367 +2024-09-22T00:44:40.375560Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4367 +2024-09-22T00:44:40.389876Z INFO fork_choice_control::block_processor: Validating block with slot: 4368 +2024-09-22T00:44:40.390850Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4d88143af4616e85430d33eef8a08dbb7e28c114cd01245bdf8bcc7061623485, slot: 4368 +2024-09-22T00:44:40.394761Z INFO fork_choice_control::block_processor: Validating block with slot: 5785 +2024-09-22T00:44:40.397876Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4368 +2024-09-22T00:44:40.397887Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4368 +2024-09-22T00:44:40.410320Z INFO fork_choice_control::block_processor: Validating block with slot: 5664 +2024-09-22T00:44:40.412430Z INFO fork_choice_control::block_processor: Validating block with slot: 4369 +2024-09-22T00:44:40.414518Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb7da77503cd4efed0746250c6254ab44fe1c3d669075bc949631a12460f439c5, slot: 4369 +2024-09-22T00:44:40.423810Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4369 +2024-09-22T00:44:40.423833Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4369 +2024-09-22T00:44:40.438309Z INFO fork_choice_control::block_processor: Validating block with slot: 4370 +2024-09-22T00:44:40.439430Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb0a7f3554d28486219eea5c1f7b532ffbc593953d3c26cb5bdda5a9e33659242, slot: 4370 +2024-09-22T00:44:40.442696Z INFO fork_choice_control::block_processor: Validating block with slot: 5408 +2024-09-22T00:44:40.443255Z INFO fork_choice_control::block_processor: Validating block with slot: 5536 +2024-09-22T00:44:40.446990Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4370 +2024-09-22T00:44:40.447001Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4370 +2024-09-22T00:44:40.463134Z INFO fork_choice_control::block_processor: Validating block with slot: 4371 +2024-09-22T00:44:40.464232Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb97bb83ea00860298148858441739ba0b4476566ae3672cc6dd3435dfffb3918, slot: 4371 +2024-09-22T00:44:40.470036Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4371 +2024-09-22T00:44:40.470049Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4371 +2024-09-22T00:44:40.481005Z INFO fork_choice_control::block_processor: Validating block with slot: 5472 +2024-09-22T00:44:40.481008Z INFO fork_choice_control::block_processor: Validating block with slot: 5600 +2024-09-22T00:44:40.485389Z INFO fork_choice_control::block_processor: Validating block with slot: 4372 +2024-09-22T00:44:40.487156Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0385a64722ee19f586c3f7d7d55e4ebdd3fbafd5dac6528b62178cdd8308aea2, slot: 4372 +2024-09-22T00:44:40.488975Z INFO fork_choice_control::block_processor: Validating block with slot: 5786 +2024-09-22T00:44:40.494650Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4372 +2024-09-22T00:44:40.494665Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4372 +2024-09-22T00:44:40.504684Z INFO fork_choice_control::block_processor: Validating block with slot: 5665 +2024-09-22T00:44:40.510132Z INFO fork_choice_control::block_processor: Validating block with slot: 4373 +2024-09-22T00:44:40.511365Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8c79ba2b865088b2f816967083855f2e426e1f0128e7c54c02424d27202c171a, slot: 4373 +2024-09-22T00:44:40.517357Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4373 +2024-09-22T00:44:40.517371Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4373 +2024-09-22T00:44:40.519296Z INFO fork_choice_control::block_processor: Validating block with slot: 5537 +2024-09-22T00:44:40.532709Z INFO fork_choice_control::block_processor: Validating block with slot: 4374 +2024-09-22T00:44:40.534070Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x32211337a751cca3f82d010159e9383d32edb8e80203924645d0d78d759a64e0, slot: 4374 +2024-09-22T00:44:40.540580Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4374 +2024-09-22T00:44:40.540603Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4374 +2024-09-22T00:44:40.544971Z INFO fork_choice_control::block_processor: Validating block with slot: 5409 +2024-09-22T00:44:40.556073Z INFO fork_choice_control::block_processor: Validating block with slot: 4375 +2024-09-22T00:44:40.557198Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8aa9ca1eaed054b61c582ea6dc35f86191b4cc6b9ca6077a00a77fd5189bfd23, slot: 4375 +2024-09-22T00:44:40.563074Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4375 +2024-09-22T00:44:40.563087Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4375 +2024-09-22T00:44:40.584611Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 135, root: 0xd632a225b3d80abefcbc5ffa4991766adf13ce4fac455dd3fb8abba723f75ab4, head slot: 4375, head root: 0x8aa9ca1eaed054b61c582ea6dc35f86191b4cc6b9ca6077a00a77fd5189bfd23) +2024-09-22T00:44:40.584622Z INFO fork_choice_control::block_processor: Validating block with slot: 4376 +2024-09-22T00:44:40.586119Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x21e0c5faceb7d91a6fed6b524628366ed04d7deb2b9ac7c9b4136c3d393072a7, slot: 4376 +2024-09-22T00:44:40.596083Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4376 +2024-09-22T00:44:40.596104Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4376 +2024-09-22T00:44:40.612303Z INFO fork_choice_control::block_processor: Validating block with slot: 4377 +2024-09-22T00:44:40.613423Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7224d97a04a688d7965098b41fc027e4f32a91cd8bfd697a0b934449d1b16117, slot: 4377 +2024-09-22T00:44:40.619369Z INFO fork_choice_control::block_processor: Validating block with slot: 5474 +2024-09-22T00:44:40.620348Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4377 +2024-09-22T00:44:40.620361Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4377 +2024-09-22T00:44:40.636738Z INFO fork_choice_control::block_processor: Validating block with slot: 4378 +2024-09-22T00:44:40.637878Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5217ecb70ecebac9cad38bde2e29f8bdbc272cbbdd390998cd06048cf33b8bc3, slot: 4378 +2024-09-22T00:44:40.645355Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4378 +2024-09-22T00:44:40.645376Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4378 +2024-09-22T00:44:40.662017Z INFO fork_choice_control::block_processor: Validating block with slot: 4379 +2024-09-22T00:44:40.665069Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3dc16dfac54d86f1b87cc32cae197f84597d59d145b7ffeb5418631966cbb462, slot: 4379 +2024-09-22T00:44:40.676900Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4379 +2024-09-22T00:44:40.676924Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4379 +2024-09-22T00:44:40.694239Z INFO fork_choice_control::block_processor: Validating block with slot: 4380 +2024-09-22T00:44:40.695681Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1ff5ad91f5ab7272d7498b307e2a5b6f51b74cb44cbfcb07e6cf0b0b60750a70, slot: 4380 +2024-09-22T00:44:40.702777Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4380 +2024-09-22T00:44:40.702797Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4380 +2024-09-22T00:44:40.711109Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 4320 +2024-09-22T00:44:40.720069Z INFO fork_choice_control::block_processor: Validating block with slot: 4381 +2024-09-22T00:44:40.721194Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeb38f42d2048824a96cb59996c170eb82770ec2f09b9c7ac9114381194a23f95, slot: 4381 +2024-09-22T00:44:40.728233Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4381 +2024-09-22T00:44:40.728252Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4381 +2024-09-22T00:44:40.745798Z INFO fork_choice_control::block_processor: Validating block with slot: 4382 +2024-09-22T00:44:40.747090Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8b90b4ffcbffad5b228d4adb6fd09218397154483c98e463135d7ebdf54b956e, slot: 4382 +2024-09-22T00:44:40.756767Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4382 +2024-09-22T00:44:40.756791Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4382 +2024-09-22T00:44:40.775345Z INFO fork_choice_control::block_processor: Validating block with slot: 4383 +2024-09-22T00:44:40.776799Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3cab5732ce423ac7a4a867650859a0708e81a309b8582bdc60719f120bd83a4b, slot: 4383 +2024-09-22T00:44:40.785085Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4383 +2024-09-22T00:44:40.785112Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4383 +2024-09-22T00:44:40.803484Z INFO fork_choice_control::block_processor: Validating block with slot: 4384 +2024-09-22T00:44:40.804894Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x76a15cb0711c44ab9c6fe384d568f8b73221f2763248384eda52d458f79228b0, slot: 4384 +2024-09-22T00:44:40.890679Z INFO fork_choice_control::block_processor: Validating block with slot: 5601 +2024-09-22T00:44:40.892356Z INFO fork_choice_control::block_processor: Validating block with slot: 5602 +2024-09-22T00:44:40.900843Z INFO fork_choice_control::block_processor: Validating block with slot: 5603 +2024-09-22T00:44:40.900845Z INFO fork_choice_control::block_processor: Validating block with slot: 5604 +2024-09-22T00:44:40.900860Z INFO fork_choice_control::block_processor: Validating block with slot: 5606 +2024-09-22T00:44:40.900875Z INFO fork_choice_control::block_processor: Validating block with slot: 5605 +2024-09-22T00:44:40.903176Z INFO fork_choice_control::block_processor: Validating block with slot: 5608 +2024-09-22T00:44:40.903178Z INFO fork_choice_control::block_processor: Validating block with slot: 5607 +2024-09-22T00:44:40.908395Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4384 +2024-09-22T00:44:40.908417Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4384 +2024-09-22T00:44:40.919624Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 4384) +2024-09-22T00:44:40.919712Z INFO fork_choice_control::block_processor: Validating block with slot: 4385 +2024-09-22T00:44:40.920663Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x34a1bcbd4166ecd724189188fa70d285312d06d7f066a5ae162a30f36e8d2a36, slot: 4385 +2024-09-22T00:44:40.929501Z INFO fork_choice_control::block_processor: Validating block with slot: 5609 +2024-09-22T00:44:40.929533Z INFO fork_choice_control::block_processor: Validating block with slot: 5610 +2024-09-22T00:44:40.929546Z INFO fork_choice_control::block_processor: Validating block with slot: 5611 +2024-09-22T00:44:40.929554Z INFO fork_choice_control::block_processor: Validating block with slot: 5612 +2024-09-22T00:44:40.929614Z INFO fork_choice_control::block_processor: Validating block with slot: 5613 +2024-09-22T00:44:40.929752Z INFO fork_choice_control::block_processor: Validating block with slot: 5614 +2024-09-22T00:44:40.933124Z INFO fork_choice_control::block_processor: Validating block with slot: 5615 +2024-09-22T00:44:40.933254Z INFO fork_choice_control::block_processor: Validating block with slot: 5616 +2024-09-22T00:44:40.933365Z INFO fork_choice_control::block_processor: Validating block with slot: 5538 +2024-09-22T00:44:40.933490Z INFO fork_choice_control::block_processor: Validating block with slot: 5617 +2024-09-22T00:44:40.934248Z INFO fork_choice_control::block_processor: Validating block with slot: 5666 +2024-09-22T00:44:40.935208Z INFO fork_choice_control::block_processor: Validating block with slot: 5410 +2024-09-22T00:44:40.935228Z INFO fork_choice_control::block_processor: Validating block with slot: 5618 +2024-09-22T00:44:40.936298Z INFO fork_choice_control::block_processor: Validating block with slot: 5475 +2024-09-22T00:44:40.936471Z INFO fork_choice_control::block_processor: Validating block with slot: 5619 +2024-09-22T00:44:40.936925Z INFO fork_choice_control::block_processor: Validating block with slot: 5787 +2024-09-22T00:44:40.950001Z INFO fork_choice_control::block_processor: Validating block with slot: 5788 +2024-09-22T00:44:40.965699Z INFO fork_choice_control::block_processor: Validating block with slot: 5667 +2024-09-22T00:44:40.977089Z INFO fork_choice_control::block_processor: Validating block with slot: 5539 +2024-09-22T00:44:40.988363Z INFO fork_choice_control::block_processor: Validating block with slot: 5411 +2024-09-22T00:44:40.995060Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4385 +2024-09-22T00:44:40.995081Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4385 +2024-09-22T00:44:41.004729Z INFO fork_choice_control::block_processor: Validating block with slot: 5476 +2024-09-22T00:44:41.005690Z INFO fork_choice_control::block_processor: Validating block with slot: 4386 +2024-09-22T00:44:41.008356Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x65708faa628ebbe1affd06cbe3459067fd06e9b0fbff01ae4ac8d80a7d670a2f, slot: 4386 +2024-09-22T00:44:41.019881Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4386 +2024-09-22T00:44:41.019895Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4386 +2024-09-22T00:44:41.020359Z INFO fork_choice_control::block_processor: Validating block with slot: 5620 +2024-09-22T00:44:41.031112Z INFO fork_choice_control::block_processor: Validating block with slot: 4387 +2024-09-22T00:44:41.032081Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x777dfaee177c5cdf6c475d985c4a20a38d5066f59c59d670746fac0017d8fcb1, slot: 4387 +2024-09-22T00:44:41.035829Z INFO fork_choice_control::block_processor: Validating block with slot: 5789 +2024-09-22T00:44:41.038769Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4387 +2024-09-22T00:44:41.038781Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4387 +2024-09-22T00:44:41.050310Z INFO fork_choice_control::block_processor: Validating block with slot: 4388 +2024-09-22T00:44:41.051513Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x10342ffd3e4e350017eca7f3fb3097ba6faf4b5c12f67522674a851dd9c56e40, slot: 4388 +2024-09-22T00:44:41.052519Z INFO fork_choice_control::block_processor: Validating block with slot: 5668 +2024-09-22T00:44:41.058962Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4388 +2024-09-22T00:44:41.058979Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4388 +2024-09-22T00:44:41.070655Z INFO fork_choice_control::block_processor: Validating block with slot: 4389 +2024-09-22T00:44:41.072349Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x00b7f5c32f06af5ef75ab0b33c5f6007df52864250be2328fa10c75325c20851, slot: 4389 +2024-09-22T00:44:41.076081Z INFO fork_choice_control::block_processor: Validating block with slot: 5540 +2024-09-22T00:44:41.081240Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4389 +2024-09-22T00:44:41.081257Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4389 +2024-09-22T00:44:41.085724Z INFO fork_choice_control::block_processor: Validating block with slot: 5412 +2024-09-22T00:44:41.093303Z INFO fork_choice_control::block_processor: Validating block with slot: 4390 +2024-09-22T00:44:41.094419Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0c1c33bf5914f1d87c0b0fb08ad808a79e3a67fd574d287aac47d8d28e0a2c9e, slot: 4390 +2024-09-22T00:44:41.100617Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4390 +2024-09-22T00:44:41.100633Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4390 +2024-09-22T00:44:41.102706Z INFO fork_choice_control::block_processor: Validating block with slot: 5477 +2024-09-22T00:44:41.112490Z INFO fork_choice_control::block_processor: Validating block with slot: 5621 +2024-09-22T00:44:41.112756Z INFO fork_choice_control::block_processor: Validating block with slot: 4391 +2024-09-22T00:44:41.113978Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe3d97b91b6a92c33ee52c36c7632435f8d9fde045ca397a9ad11162a26fc0c9e, slot: 4391 +2024-09-22T00:44:41.120119Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4391 +2024-09-22T00:44:41.120131Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4391 +2024-09-22T00:44:41.121334Z INFO fork_choice_control::block_processor: Validating block with slot: 5790 +2024-09-22T00:44:41.132405Z INFO fork_choice_control::block_processor: Validating block with slot: 4392 +2024-09-22T00:44:41.133494Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2893c79276769440520ac3353c56a2b0db203710f57b4bb92d75969d68e8c311, slot: 4392 +2024-09-22T00:44:41.140672Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4392 +2024-09-22T00:44:41.140697Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4392 +2024-09-22T00:44:41.145672Z INFO fork_choice_control::block_processor: Validating block with slot: 5669 +2024-09-22T00:44:41.152709Z INFO fork_choice_control::block_processor: Validating block with slot: 4393 +2024-09-22T00:44:41.153915Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe21e31953d3fbf950c3a04cf1b976156e0d06fcb94f57abc6b24a5ea443363c3, slot: 4393 +2024-09-22T00:44:41.160675Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4393 +2024-09-22T00:44:41.160696Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4393 +2024-09-22T00:44:41.162583Z INFO fork_choice_control::block_processor: Validating block with slot: 5542 +2024-09-22T00:44:41.173093Z INFO fork_choice_control::block_processor: Validating block with slot: 4394 +2024-09-22T00:44:41.177255Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3143966c05faa986930d562a0ef9954697d99d81e231985db1110a6b87ca5a62, slot: 4394 +2024-09-22T00:44:41.177690Z INFO fork_choice_control::block_processor: Validating block with slot: 5413 +2024-09-22T00:44:41.192335Z INFO fork_choice_control::block_processor: Validating block with slot: 5478 +2024-09-22T00:44:41.193298Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4394 +2024-09-22T00:44:41.193309Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4394 +2024-09-22T00:44:41.206348Z INFO fork_choice_control::block_processor: Validating block with slot: 4395 +2024-09-22T00:44:41.208070Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf00380ba765c0de106e3604475161a0ac6e34c4a12187a89b1a59455cfd187d7, slot: 4395 +2024-09-22T00:44:41.215953Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4395 +2024-09-22T00:44:41.215969Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4395 +2024-09-22T00:44:41.226953Z INFO fork_choice_control::block_processor: Validating block with slot: 5622 +2024-09-22T00:44:41.229552Z INFO fork_choice_control::block_processor: Validating block with slot: 4396 +2024-09-22T00:44:41.230661Z INFO fork_choice_control::block_processor: Validating block with slot: 5791 +2024-09-22T00:44:41.231074Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x01c0d50578d089f577cad447827133500a55b3452116e1d332e13fab28276c3f, slot: 4396 +2024-09-22T00:44:41.238301Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4396 +2024-09-22T00:44:41.238316Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4396 +2024-09-22T00:44:41.240170Z INFO fork_choice_control::block_processor: Validating block with slot: 5670 +2024-09-22T00:44:41.251841Z INFO fork_choice_control::block_processor: Validating block with slot: 4397 +2024-09-22T00:44:41.253231Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9bc9fe5519bea05ae34968b3a0a6ad28e16646ac4b1b3e8ce1c822c2c6baf2a8, slot: 4397 +2024-09-22T00:44:41.254872Z INFO fork_choice_control::block_processor: Validating block with slot: 5543 +2024-09-22T00:44:41.262154Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4397 +2024-09-22T00:44:41.262179Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4397 +2024-09-22T00:44:41.278638Z INFO fork_choice_control::block_processor: Validating block with slot: 4398 +2024-09-22T00:44:41.279960Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5a98dc82e737db1385a6955e0d98e6ccde0f8270e94ea2a559bef3ba6ddf74d4, slot: 4398 +2024-09-22T00:44:41.288092Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4398 +2024-09-22T00:44:41.288144Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4398 +2024-09-22T00:44:41.297882Z INFO fork_choice_control::block_processor: Validating block with slot: 5479 +2024-09-22T00:44:41.297926Z INFO fork_choice_control::block_processor: Validating block with slot: 5414 +2024-09-22T00:44:41.299942Z INFO fork_choice_control::block_processor: Validating block with slot: 5623 +2024-09-22T00:44:41.305582Z INFO fork_choice_control::block_processor: Validating block with slot: 4399 +2024-09-22T00:44:41.306629Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa75f13c2a5a362620217af5bc7f7d5b5f231c2f9f562366af783607011f83db9, slot: 4399 +2024-09-22T00:44:41.312246Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4399 +2024-09-22T00:44:41.312263Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4399 +2024-09-22T00:44:41.326586Z INFO fork_choice_control::block_processor: Validating block with slot: 4400 +2024-09-22T00:44:41.327636Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x653c0c297349ed50ea702db2ee8804300711ddfef1f3f87b314ff01b432c5e31, slot: 4400 +2024-09-22T00:44:41.329256Z INFO fork_choice_control::block_processor: Validating block with slot: 5671 +2024-09-22T00:44:41.331521Z INFO fork_choice_control::block_processor: Validating block with slot: 5544 +2024-09-22T00:44:41.335244Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4400 +2024-09-22T00:44:41.335255Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4400 +2024-09-22T00:44:41.349691Z INFO fork_choice_control::block_processor: Validating block with slot: 4401 +2024-09-22T00:44:41.353288Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x83a270aad9192cd396e690e7874e6c60ccbe5e1b5650bc5c61fb59889b8172b3, slot: 4401 +2024-09-22T00:44:41.353876Z INFO fork_choice_control::block_processor: Validating block with slot: 5480 +2024-09-22T00:44:41.353929Z INFO fork_choice_control::block_processor: Validating block with slot: 5415 +2024-09-22T00:44:41.365979Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4401 +2024-09-22T00:44:41.366002Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4401 +2024-09-22T00:44:41.381120Z INFO fork_choice_control::block_processor: Validating block with slot: 4402 +2024-09-22T00:44:41.382243Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9d5d27e23ab423dd8f0554d9860182584e0f03c0d3988034da4b98b195df15ca, slot: 4402 +2024-09-22T00:44:41.385908Z INFO fork_choice_control::block_processor: Validating block with slot: 5624 +2024-09-22T00:44:41.389256Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4402 +2024-09-22T00:44:41.389271Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4402 +2024-09-22T00:44:41.404322Z INFO fork_choice_control::block_processor: Validating block with slot: 4403 +2024-09-22T00:44:41.405323Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x56c16cddec860c468aa8f6fbd58f9975db9d1ec4a0a47f8821a64924382e7506, slot: 4403 +2024-09-22T00:44:41.414514Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4403 +2024-09-22T00:44:41.414535Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4403 +2024-09-22T00:44:41.430588Z INFO fork_choice_control::block_processor: Validating block with slot: 5672 +2024-09-22T00:44:41.430615Z INFO fork_choice_control::block_processor: Validating block with slot: 5416 +2024-09-22T00:44:41.430789Z INFO fork_choice_control::block_processor: Validating block with slot: 5545 +2024-09-22T00:44:41.430978Z INFO fork_choice_control::block_processor: Validating block with slot: 4404 +2024-09-22T00:44:41.432698Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x59f3bd99c4bafd793b85c6d78ecaf52d0ffde9a5fe7afc59acc2655950e2d347, slot: 4404 +2024-09-22T00:44:41.439092Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4404 +2024-09-22T00:44:41.439112Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4404 +2024-09-22T00:44:41.443937Z INFO fork_choice_control::block_processor: Validating block with slot: 5481 +2024-09-22T00:44:41.454365Z INFO fork_choice_control::block_processor: Validating block with slot: 4405 +2024-09-22T00:44:41.455445Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8c9b530cd64e89903b2ca5c2eac0b5afd337190f11a5830d474705d8bb195895, slot: 4405 +2024-09-22T00:44:41.457141Z INFO fork_choice_control::block_processor: Validating block with slot: 5625 +2024-09-22T00:44:41.461708Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4405 +2024-09-22T00:44:41.461720Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4405 +2024-09-22T00:44:41.477433Z INFO fork_choice_control::block_processor: Validating block with slot: 4406 +2024-09-22T00:44:41.478794Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xee8cceec51026b25a3976cbde7cc4b55277704606d0f38a1b7ae7079dfb1335e, slot: 4406 +2024-09-22T00:44:41.481171Z INFO fork_choice_control::block_processor: Validating block with slot: 5673 +2024-09-22T00:44:41.485466Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4406 +2024-09-22T00:44:41.485477Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4406 +2024-09-22T00:44:41.487180Z INFO fork_choice_control::block_processor: Validating block with slot: 5546 +2024-09-22T00:44:41.501487Z INFO fork_choice_control::block_processor: Validating block with slot: 4407 +2024-09-22T00:44:41.502471Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc65fa63cdded1c1ff49bd5255a5fa8e8fcb2168d3a52f42826c69c09ce93ed4b, slot: 4407 +2024-09-22T00:44:41.504015Z INFO fork_choice_control::block_processor: Validating block with slot: 5417 +2024-09-22T00:44:41.510631Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4407 +2024-09-22T00:44:41.510650Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4407 +2024-09-22T00:44:41.518709Z INFO fork_choice_control::block_processor: Validating block with slot: 5482 +2024-09-22T00:44:41.532137Z INFO fork_choice_control::block_processor: Validating block with slot: 4408 +2024-09-22T00:44:41.532141Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 136, root: 0xd17e8a2e0c9257d8b848ded58c5be9c7f9ffad9e1bfec30571ca44c332e4e7e7, head slot: 4407, head root: 0xc65fa63cdded1c1ff49bd5255a5fa8e8fcb2168d3a52f42826c69c09ce93ed4b) +2024-09-22T00:44:41.533264Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1607f08d17eb5c1fe3b6f46d299eb39f300e5ddf845ac28da8a5495f4118d563, slot: 4408 +2024-09-22T00:44:41.534229Z INFO fork_choice_control::block_processor: Validating block with slot: 5626 +2024-09-22T00:44:41.539905Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4408 +2024-09-22T00:44:41.539924Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4408 +2024-09-22T00:44:41.550554Z INFO fork_choice_control::block_processor: Validating block with slot: 5674 +2024-09-22T00:44:41.556764Z INFO fork_choice_control::block_processor: Validating block with slot: 4409 +2024-09-22T00:44:41.558168Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2614fc52b0e1e0dbdff56e3cbd44812177a6e58099dc8fb806d3c30519e4ff7d, slot: 4409 +2024-09-22T00:44:41.566656Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4409 +2024-09-22T00:44:41.566677Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4409 +2024-09-22T00:44:41.575190Z INFO fork_choice_control::block_processor: Validating block with slot: 5547 +2024-09-22T00:44:41.581931Z INFO fork_choice_control::block_processor: Validating block with slot: 5418 +2024-09-22T00:44:41.583696Z INFO fork_choice_control::block_processor: Validating block with slot: 4410 +2024-09-22T00:44:41.586083Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7383b72ecab15898cad2f824481f373a20a2b20d697a103ed50089ea2f56fbdb, slot: 4410 +2024-09-22T00:44:41.596184Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4410 +2024-09-22T00:44:41.596212Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4410 +2024-09-22T00:44:41.600395Z INFO fork_choice_control::block_processor: Validating block with slot: 5483 +2024-09-22T00:44:41.613584Z INFO fork_choice_control::block_processor: Validating block with slot: 4411 +2024-09-22T00:44:41.614699Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xca8329e1fac089cac9dd9b34619abca4189e862f7bf3566fb238205fe88d71aa, slot: 4411 +2024-09-22T00:44:41.620813Z INFO fork_choice_control::block_processor: Validating block with slot: 5627 +2024-09-22T00:44:41.621971Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4411 +2024-09-22T00:44:41.621985Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4411 +2024-09-22T00:44:41.629539Z INFO fork_choice_control::block_processor: Validating block with slot: 5675 +2024-09-22T00:44:41.639135Z INFO fork_choice_control::block_processor: Validating block with slot: 4412 +2024-09-22T00:44:41.640486Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x02b4b31e3f604d2828001023de0a7c9036e7b78d3d6bf3092d760eacb4d506e9, slot: 4412 +2024-09-22T00:44:41.644110Z INFO fork_choice_control::block_processor: Validating block with slot: 5548 +2024-09-22T00:44:41.648090Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4412 +2024-09-22T00:44:41.648105Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4412 +2024-09-22T00:44:41.658971Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 4352 +2024-09-22T00:44:41.660118Z INFO fork_choice_control::block_processor: Validating block with slot: 5419 +2024-09-22T00:44:41.665769Z INFO fork_choice_control::block_processor: Validating block with slot: 4413 +2024-09-22T00:44:41.666732Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x89a21e129239f2236aedd369411a2354103c6beec4f2aba9657b433378aa34d3, slot: 4413 +2024-09-22T00:44:41.672914Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4413 +2024-09-22T00:44:41.672933Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4413 +2024-09-22T00:44:41.683816Z INFO fork_choice_control::block_processor: Validating block with slot: 5484 +2024-09-22T00:44:41.690606Z INFO fork_choice_control::block_processor: Validating block with slot: 4414 +2024-09-22T00:44:41.691935Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd31b898164ce07548a313e289160ca02a4131a39789480b8584a5582a0362007, slot: 4414 +2024-09-22T00:44:41.693535Z INFO fork_choice_control::block_processor: Validating block with slot: 5628 +2024-09-22T00:44:41.698597Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4414 +2024-09-22T00:44:41.698611Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4414 +2024-09-22T00:44:41.707154Z INFO fork_choice_control::block_processor: Validating block with slot: 5676 +2024-09-22T00:44:41.716818Z INFO fork_choice_control::block_processor: Validating block with slot: 4416 +2024-09-22T00:44:41.718517Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa30f7f9f712c4856d8ed24f1cb1924accc0237bcb74bac25acbc7baa276dc0d0, slot: 4416 +2024-09-22T00:44:41.721359Z INFO fork_choice_control::block_processor: Validating block with slot: 5549 +2024-09-22T00:44:41.738554Z INFO fork_choice_control::block_processor: Validating block with slot: 5420 +2024-09-22T00:44:41.754004Z INFO fork_choice_control::block_processor: Validating block with slot: 5485 +2024-09-22T00:44:41.770211Z INFO fork_choice_control::block_processor: Validating block with slot: 5629 +2024-09-22T00:44:41.787203Z INFO fork_choice_control::block_processor: Validating block with slot: 5677 +2024-09-22T00:44:41.799192Z INFO fork_choice_control::block_processor: Validating block with slot: 5550 +2024-09-22T00:44:41.816527Z INFO fork_choice_control::block_processor: Validating block with slot: 5421 +2024-09-22T00:44:41.825250Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4416 +2024-09-22T00:44:41.825274Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4416 +2024-09-22T00:44:41.836317Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 4416) +2024-09-22T00:44:41.836420Z INFO fork_choice_control::block_processor: Validating block with slot: 4417 +2024-09-22T00:44:41.838650Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa483c4a6716874c180b02928da2ad90000d9abb1f63b2e4837721865a37bf178, slot: 4417 +2024-09-22T00:44:41.842770Z INFO fork_choice_control::block_processor: Validating block with slot: 5486 +2024-09-22T00:44:41.849777Z INFO fork_choice_control::block_processor: Validating block with slot: 5631 +2024-09-22T00:44:41.866598Z INFO fork_choice_control::block_processor: Validating block with slot: 5678 +2024-09-22T00:44:41.900986Z INFO fork_choice_control::block_processor: Validating block with slot: 5551 +2024-09-22T00:44:41.901005Z INFO fork_choice_control::block_processor: Validating block with slot: 5422 +2024-09-22T00:44:41.912238Z INFO fork_choice_control::block_processor: Validating block with slot: 5487 +2024-09-22T00:44:41.930764Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4417 +2024-09-22T00:44:41.930785Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4417 +2024-09-22T00:44:41.936376Z INFO fork_choice_control::block_processor: Validating block with slot: 5632 +2024-09-22T00:44:41.943125Z INFO fork_choice_control::block_processor: Validating block with slot: 4418 +2024-09-22T00:44:41.944897Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x061178960c0bf43fa50f083fd366e82897e3147c59f1aca4c2c9541ff4cc767b, slot: 4418 +2024-09-22T00:44:41.954370Z INFO fork_choice_control::block_processor: Validating block with slot: 5679 +2024-09-22T00:44:41.957794Z INFO fork_choice_control::block_processor: Validating block with slot: 5552 +2024-09-22T00:44:41.958076Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4418 +2024-09-22T00:44:41.958090Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4418 +2024-09-22T00:44:41.970132Z INFO fork_choice_control::block_processor: Validating block with slot: 4419 +2024-09-22T00:44:41.971102Z INFO fork_choice_control::block_processor: Validating block with slot: 5423 +2024-09-22T00:44:41.972794Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd8f93c197fd822b4f930a53b0860b95a45c4d5e0f22d57f53d22b51cc497a1f0, slot: 4419 +2024-09-22T00:44:41.985529Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4419 +2024-09-22T00:44:41.985555Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4419 +2024-09-22T00:44:41.987886Z INFO fork_choice_control::block_processor: Validating block with slot: 5488 +2024-09-22T00:44:42.000450Z INFO fork_choice_control::block_processor: Validating block with slot: 4420 +2024-09-22T00:44:42.001596Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf7a0b5ce9703707ce829559e92b957378ed8f1bdec6c2875096753834aa506af, slot: 4420 +2024-09-22T00:44:42.013237Z INFO fork_choice_control::block_processor: Validating block with slot: 5633 +2024-09-22T00:44:42.031460Z INFO fork_choice_control::block_processor: Validating block with slot: 5680 +2024-09-22T00:44:42.031553Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4420 +2024-09-22T00:44:42.031580Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4420 +2024-09-22T00:44:42.041902Z INFO fork_choice_control::block_processor: Validating block with slot: 5553 +2024-09-22T00:44:42.048236Z INFO fork_choice_control::block_processor: Validating block with slot: 4421 +2024-09-22T00:44:42.053921Z INFO fork_choice_control::block_processor: Validating block with slot: 5424 +2024-09-22T00:44:42.053952Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbc7bc7fda75842c1c74b083876f0a425dfd03c56d03343288cc168301b69eab5, slot: 4421 +2024-09-22T00:44:42.065496Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4421 +2024-09-22T00:44:42.065520Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4421 +2024-09-22T00:44:42.075577Z INFO fork_choice_control::block_processor: Validating block with slot: 5489 +2024-09-22T00:44:42.078549Z INFO fork_choice_control::block_processor: Validating block with slot: 4422 +2024-09-22T00:44:42.079507Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7ff210931631812f05569c4a5caedd501a3b24d33c39a0e53083a6befd24a7d5, slot: 4422 +2024-09-22T00:44:42.084670Z INFO fork_choice_control::block_processor: Validating block with slot: 5634 +2024-09-22T00:44:42.086177Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4422 +2024-09-22T00:44:42.086192Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4422 +2024-09-22T00:44:42.099181Z INFO fork_choice_control::block_processor: Validating block with slot: 4423 +2024-09-22T00:44:42.100174Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa7946f3f9b53d88af166f2e07cf52e4a0e749ac9035e60ad81c49c0a6974eb67, slot: 4423 +2024-09-22T00:44:42.106393Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4423 +2024-09-22T00:44:42.106416Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4423 +2024-09-22T00:44:42.107924Z INFO fork_choice_control::block_processor: Validating block with slot: 5681 +2024-09-22T00:44:42.114360Z INFO fork_choice_control::block_processor: Validating block with slot: 5554 +2024-09-22T00:44:42.119070Z INFO fork_choice_control::block_processor: Validating block with slot: 4424 +2024-09-22T00:44:42.120415Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6b750d1b21ee826657ebf8b4003d94daefe7a3f7f9c78fcb6ff45a63d4bd810c, slot: 4424 +2024-09-22T00:44:42.127538Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4424 +2024-09-22T00:44:42.127559Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4424 +2024-09-22T00:44:42.132660Z INFO fork_choice_control::block_processor: Validating block with slot: 5425 +2024-09-22T00:44:42.140998Z INFO fork_choice_control::block_processor: Validating block with slot: 4425 +2024-09-22T00:44:42.142233Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb8c657973e0a43a0ad847451306966e32113b8b9b565b6d46c34918e04f5d1ae, slot: 4425 +2024-09-22T00:44:42.145384Z INFO fork_choice_control::block_processor: Validating block with slot: 5490 +2024-09-22T00:44:42.149549Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4425 +2024-09-22T00:44:42.149567Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4425 +2024-09-22T00:44:42.163603Z INFO fork_choice_control::block_processor: Validating block with slot: 4426 +2024-09-22T00:44:42.164594Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6e964aa17c63f0f6d249c667dc0f179abd7dd4c33459352e4c11ddb5fe5987f8, slot: 4426 +2024-09-22T00:44:42.168386Z INFO fork_choice_control::block_processor: Validating block with slot: 5635 +2024-09-22T00:44:42.171483Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4426 +2024-09-22T00:44:42.171496Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4426 +2024-09-22T00:44:42.177857Z INFO fork_choice_control::block_processor: Validating block with slot: 5682 +2024-09-22T00:44:42.185292Z INFO fork_choice_control::block_processor: Validating block with slot: 4427 +2024-09-22T00:44:42.186377Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x704eb444f9e5258cd9ba8d77b3d64c55ea60212ef97a0dd0ccbf9e79c38b6671, slot: 4427 +2024-09-22T00:44:42.193414Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4427 +2024-09-22T00:44:42.193420Z INFO fork_choice_control::block_processor: Validating block with slot: 5555 +2024-09-22T00:44:42.193437Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4427 +2024-09-22T00:44:42.206883Z INFO fork_choice_control::block_processor: Validating block with slot: 4428 +2024-09-22T00:44:42.207895Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb6796b21a8fbf206b3e251fc5c6c8d88906332155259a767bbd91849bf0effac, slot: 4428 +2024-09-22T00:44:42.208183Z INFO fork_choice_control::block_processor: Validating block with slot: 5426 +2024-09-22T00:44:42.213402Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4428 +2024-09-22T00:44:42.213414Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4428 +2024-09-22T00:44:42.221627Z INFO fork_choice_control::block_processor: Validating block with slot: 5491 +2024-09-22T00:44:42.227171Z INFO fork_choice_control::block_processor: Validating block with slot: 4429 +2024-09-22T00:44:42.228549Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x35891016e091da04c666c81c9240414d27d5761fa0f0e08742997324dc68c353, slot: 4429 +2024-09-22T00:44:42.234897Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4429 +2024-09-22T00:44:42.234909Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4429 +2024-09-22T00:44:42.240177Z INFO fork_choice_control::block_processor: Validating block with slot: 5636 +2024-09-22T00:44:42.249093Z INFO fork_choice_control::block_processor: Validating block with slot: 4430 +2024-09-22T00:44:42.250170Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb43ad51175050cf88ea6dcdab9339934cedcf533c035c8b8aaa83a5f7a49c850, slot: 4430 +2024-09-22T00:44:42.253537Z INFO fork_choice_control::block_processor: Validating block with slot: 5683 +2024-09-22T00:44:42.256897Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4430 +2024-09-22T00:44:42.256925Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4430 +2024-09-22T00:44:42.257680Z INFO fork_choice_control::block_processor: Validating block with slot: 5556 +2024-09-22T00:44:42.270658Z INFO fork_choice_control::block_processor: Validating block with slot: 4431 +2024-09-22T00:44:42.272878Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x328965def3627420c30442b627fce5f0ab9618b544e33561c1b205a003bc2918, slot: 4431 +2024-09-22T00:44:42.281628Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4431 +2024-09-22T00:44:42.281648Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4431 +2024-09-22T00:44:42.285102Z INFO fork_choice_control::block_processor: Validating block with slot: 5427 +2024-09-22T00:44:42.296153Z INFO fork_choice_control::block_processor: Validating block with slot: 4432 +2024-09-22T00:44:42.297116Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6393b14a5913462902adbfe21a8b43e9fb94d6047eb7daf3c686ad542d7ad5f5, slot: 4432 +2024-09-22T00:44:42.301493Z INFO fork_choice_control::block_processor: Validating block with slot: 5492 +2024-09-22T00:44:42.303320Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4432 +2024-09-22T00:44:42.303334Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4432 +2024-09-22T00:44:42.314912Z INFO fork_choice_control::block_processor: Validating block with slot: 5637 +2024-09-22T00:44:42.317874Z INFO fork_choice_control::block_processor: Validating block with slot: 4433 +2024-09-22T00:44:42.318814Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4ec2e33632fc81f40688c3f330400e94d60e6b4e4a5775af90c73fa17c38400d, slot: 4433 +2024-09-22T00:44:42.324806Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4433 +2024-09-22T00:44:42.324827Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4433 +2024-09-22T00:44:42.331508Z INFO fork_choice_control::block_processor: Validating block with slot: 5684 +2024-09-22T00:44:42.339494Z INFO fork_choice_control::block_processor: Validating block with slot: 4436 +2024-09-22T00:44:42.341946Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8ef1dd692f6ac8a468a61297daeb279c8047aed80bcaf3084e5e1275f2e97f58, slot: 4436 +2024-09-22T00:44:42.355218Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4436 +2024-09-22T00:44:42.355238Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4436 +2024-09-22T00:44:42.357364Z INFO fork_choice_control::block_processor: Validating block with slot: 5557 +2024-09-22T00:44:42.370166Z INFO fork_choice_control::block_processor: Validating block with slot: 4437 +2024-09-22T00:44:42.370987Z INFO fork_choice_control::block_processor: Validating block with slot: 5428 +2024-09-22T00:44:42.372528Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6dedc6e7c5e7ac3c919cfa04b55180e7a449af7c78e5b49c70716b115db2c4fa, slot: 4437 +2024-09-22T00:44:42.379243Z INFO fork_choice_control::block_processor: Validating block with slot: 5493 +2024-09-22T00:44:42.383566Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4437 +2024-09-22T00:44:42.383580Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4437 +2024-09-22T00:44:42.394664Z INFO fork_choice_control::block_processor: Validating block with slot: 5638 +2024-09-22T00:44:42.399256Z INFO fork_choice_control::block_processor: Validating block with slot: 4438 +2024-09-22T00:44:42.400349Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2ecfd6dbe215428ad659574d1b285e44338e5fdfcd16ef02de3500f1d9537f5b, slot: 4438 +2024-09-22T00:44:42.406309Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4438 +2024-09-22T00:44:42.406330Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4438 +2024-09-22T00:44:42.410084Z INFO fork_choice_control::block_processor: Validating block with slot: 5685 +2024-09-22T00:44:42.422051Z INFO fork_choice_control::block_processor: Validating block with slot: 4439 +2024-09-22T00:44:42.423389Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeada669e8826c7fc391c1f6549f785f4d596644ad23c5819963f40f29870ae73, slot: 4439 +2024-09-22T00:44:42.427527Z INFO fork_choice_control::block_processor: Validating block with slot: 5558 +2024-09-22T00:44:42.432348Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4439 +2024-09-22T00:44:42.432365Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4439 +2024-09-22T00:44:42.444679Z INFO fork_choice_control::block_processor: Validating block with slot: 5429 +2024-09-22T00:44:42.458333Z INFO fork_choice_control::block_processor: Validating block with slot: 5494 +2024-09-22T00:44:42.458761Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 137, root: 0x76a15cb0711c44ab9c6fe384d568f8b73221f2763248384eda52d458f79228b0, head slot: 4439, head root: 0xeada669e8826c7fc391c1f6549f785f4d596644ad23c5819963f40f29870ae73) +2024-09-22T00:44:42.458790Z INFO fork_choice_control::block_processor: Validating block with slot: 4440 +2024-09-22T00:44:42.461986Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xba52385e26b264997f4a7c20dffbbdff97a5b4c87c4d07d8b84a7a103f14b678, slot: 4440 +2024-09-22T00:44:42.476829Z INFO fork_choice_control::block_processor: Validating block with slot: 5639 +2024-09-22T00:44:42.478698Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4440 +2024-09-22T00:44:42.478745Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4440 +2024-09-22T00:44:42.482227Z INFO fork_choice_control::block_processor: Validating block with slot: 5686 +2024-09-22T00:44:42.500393Z INFO fork_choice_control::block_processor: Validating block with slot: 4441 +2024-09-22T00:44:42.501392Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x05942a3094d6ea73489824443a2ebb427faa6b4d2d6e49b375cfe15078ec52a2, slot: 4441 +2024-09-22T00:44:42.504009Z INFO fork_choice_control::block_processor: Validating block with slot: 5559 +2024-09-22T00:44:42.508752Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4441 +2024-09-22T00:44:42.508774Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4441 +2024-09-22T00:44:42.525332Z INFO fork_choice_control::block_processor: Validating block with slot: 4442 +2024-09-22T00:44:42.526338Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcc5bd68d1a34796175e69066d7b6b7ebdfe4a6ff8d63193e866715587a32a2a4, slot: 4442 +2024-09-22T00:44:42.527760Z INFO fork_choice_control::block_processor: Validating block with slot: 5430 +2024-09-22T00:44:42.532869Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4442 +2024-09-22T00:44:42.532881Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4442 +2024-09-22T00:44:42.549542Z INFO fork_choice_control::block_processor: Validating block with slot: 4443 +2024-09-22T00:44:42.551424Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8038df07bd9d26a7b0e66037537f8ba6c71cdbb5dc70be4b1a2b9f528b17ae9a, slot: 4443 +2024-09-22T00:44:42.552425Z INFO fork_choice_control::block_processor: Validating block with slot: 5640 +2024-09-22T00:44:42.552457Z INFO fork_choice_control::block_processor: Validating block with slot: 5495 +2024-09-22T00:44:42.560961Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4443 +2024-09-22T00:44:42.560979Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4443 +2024-09-22T00:44:42.566351Z INFO fork_choice_control::block_processor: Validating block with slot: 5687 +2024-09-22T00:44:42.578116Z INFO fork_choice_control::block_processor: Validating block with slot: 4444 +2024-09-22T00:44:42.579097Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x724d7beba0df855bc8833caae9da180d0cb8c92acd6c0e3a2230af43287f888b, slot: 4444 +2024-09-22T00:44:42.582602Z INFO fork_choice_control::block_processor: Validating block with slot: 5560 +2024-09-22T00:44:42.586413Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4444 +2024-09-22T00:44:42.586427Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4444 +2024-09-22T00:44:42.597285Z INFO fork_choice_control::block_processor: Validating block with slot: 5431 +2024-09-22T00:44:42.600788Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 4384 +2024-09-22T00:44:42.603680Z INFO fork_choice_control::block_processor: Validating block with slot: 4445 +2024-09-22T00:44:42.606072Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x091e42a752a5ee00b628291d236ea4bb8bf5ed4cde1705d5518be6b063ed7d18, slot: 4445 +2024-09-22T00:44:42.615786Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4445 +2024-09-22T00:44:42.615803Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4445 +2024-09-22T00:44:42.616922Z INFO fork_choice_control::block_processor: Validating block with slot: 5496 +2024-09-22T00:44:42.630140Z INFO fork_choice_control::block_processor: Validating block with slot: 5642 +2024-09-22T00:44:42.633453Z INFO fork_choice_control::block_processor: Validating block with slot: 4446 +2024-09-22T00:44:42.634567Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa9de9333fe6558fc2b5d28c291e019949845add8f33f3306babb15dd5a7438fc, slot: 4446 +2024-09-22T00:44:42.641799Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4446 +2024-09-22T00:44:42.641819Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4446 +2024-09-22T00:44:42.644308Z INFO fork_choice_control::block_processor: Validating block with slot: 5688 +2024-09-22T00:44:42.659944Z INFO fork_choice_control::block_processor: Validating block with slot: 4447 +2024-09-22T00:44:42.660655Z INFO fork_choice_control::block_processor: Validating block with slot: 5561 +2024-09-22T00:44:42.661060Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8522d37e86dda9d4eefdc6abdd1f1cff38666415d8f9abe33a04815940545389, slot: 4447 +2024-09-22T00:44:42.667950Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4447 +2024-09-22T00:44:42.667966Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4447 +2024-09-22T00:44:42.675990Z INFO fork_choice_control::block_processor: Validating block with slot: 5432 +2024-09-22T00:44:42.686058Z INFO fork_choice_control::block_processor: Validating block with slot: 4448 +2024-09-22T00:44:42.688289Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x78757c18ffcef3eeebf3703a7e50bdc83632317884c41d3b9974125175212726, slot: 4448 +2024-09-22T00:44:42.723481Z INFO fork_choice_control::block_processor: Validating block with slot: 5497 +2024-09-22T00:44:42.723503Z INFO fork_choice_control::block_processor: Validating block with slot: 5643 +2024-09-22T00:44:42.723517Z INFO fork_choice_control::block_processor: Validating block with slot: 5689 +2024-09-22T00:44:42.740767Z INFO fork_choice_control::block_processor: Validating block with slot: 5562 +2024-09-22T00:44:42.760433Z INFO fork_choice_control::block_processor: Validating block with slot: 5433 +2024-09-22T00:44:42.769427Z INFO fork_choice_control::block_processor: Validating block with slot: 5498 +2024-09-22T00:44:42.786572Z INFO fork_choice_control::block_processor: Validating block with slot: 5644 +2024-09-22T00:44:42.798121Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4448 +2024-09-22T00:44:42.798141Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4448 +2024-09-22T00:44:42.808447Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 4448) +2024-09-22T00:44:42.808579Z INFO fork_choice_control::block_processor: Validating block with slot: 4449 +2024-09-22T00:44:42.809661Z INFO fork_choice_control::block_processor: Validating block with slot: 5690 +2024-09-22T00:44:42.810234Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5069d8d2630a17ab5eb3f1ea6514dde44e8711bc5a26197e9ce67343a99b55d5, slot: 4449 +2024-09-22T00:44:42.818845Z INFO fork_choice_control::block_processor: Validating block with slot: 5563 +2024-09-22T00:44:42.836367Z INFO fork_choice_control::block_processor: Validating block with slot: 5434 +2024-09-22T00:44:42.850067Z INFO fork_choice_control::block_processor: Validating block with slot: 5499 +2024-09-22T00:44:42.867832Z INFO fork_choice_control::block_processor: Validating block with slot: 5645 +2024-09-22T00:44:42.884744Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4449 +2024-09-22T00:44:42.884765Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4449 +2024-09-22T00:44:42.885763Z INFO fork_choice_control::block_processor: Validating block with slot: 5691 +2024-09-22T00:44:42.895458Z INFO fork_choice_control::block_processor: Validating block with slot: 4450 +2024-09-22T00:44:42.896478Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x39dcd37cfdf36e2a2ac37fecfceafd9ea83eb8d20d1990ec8d37718c700aa7ac, slot: 4450 +2024-09-22T00:44:42.897911Z INFO fork_choice_control::block_processor: Validating block with slot: 5564 +2024-09-22T00:44:42.910696Z INFO fork_choice_control::block_processor: Validating block with slot: 5435 +2024-09-22T00:44:42.911422Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4450 +2024-09-22T00:44:42.911435Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4450 +2024-09-22T00:44:42.922802Z INFO fork_choice_control::block_processor: Validating block with slot: 4451 +2024-09-22T00:44:42.924662Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb0d12e4a9fbb63db276a8fc2480fd969e5777424d74c62f2dfadbad392e56c2d, slot: 4451 +2024-09-22T00:44:42.927326Z INFO fork_choice_control::block_processor: Validating block with slot: 5500 +2024-09-22T00:44:42.935478Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4451 +2024-09-22T00:44:42.935490Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4451 +2024-09-22T00:44:42.939611Z INFO fork_choice_control::block_processor: Validating block with slot: 5646 +2024-09-22T00:44:42.946777Z INFO fork_choice_control::block_processor: Validating block with slot: 4452 +2024-09-22T00:44:42.947883Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x39df98608d09ec8e3365385260a07de5b87ea78b95f0eeac9efedc3fd9dd0561, slot: 4452 +2024-09-22T00:44:42.955285Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4452 +2024-09-22T00:44:42.955297Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4452 +2024-09-22T00:44:42.960329Z INFO fork_choice_control::block_processor: Validating block with slot: 5692 +2024-09-22T00:44:42.966618Z INFO fork_choice_control::block_processor: Validating block with slot: 4453 +2024-09-22T00:44:42.967585Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7cc5fa6c567bef445f8ce813025f51f66899b7e4070f6b0936ecffc093480256, slot: 4453 +2024-09-22T00:44:42.975086Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4453 +2024-09-22T00:44:42.975100Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4453 +2024-09-22T00:44:42.977176Z INFO fork_choice_control::block_processor: Validating block with slot: 5565 +2024-09-22T00:44:42.986351Z INFO fork_choice_control::block_processor: Validating block with slot: 4454 +2024-09-22T00:44:42.987290Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x88942a82e6799d6327b5dc1eece8fef082eed923c0b0d640495ec40a8e60bae6, slot: 4454 +2024-09-22T00:44:42.991778Z INFO fork_choice_control::block_processor: Validating block with slot: 5436 +2024-09-22T00:44:42.994953Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4454 +2024-09-22T00:44:42.994970Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4454 +2024-09-22T00:44:43.005119Z INFO fork_choice_control::block_processor: Validating block with slot: 5501 +2024-09-22T00:44:43.006709Z INFO fork_choice_control::block_processor: Validating block with slot: 4455 +2024-09-22T00:44:43.009138Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x86f398af06d17562ad33a876d55f0bfbaf16252f283d4f67f4ad691f4350884d, slot: 4455 +2024-09-22T00:44:43.017712Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4455 +2024-09-22T00:44:43.017724Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4455 +2024-09-22T00:44:43.021452Z INFO fork_choice_control::block_processor: Validating block with slot: 5647 +2024-09-22T00:44:43.029622Z INFO fork_choice_control::block_processor: Validating block with slot: 4456 +2024-09-22T00:44:43.031868Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6ee109ecb75a8c943d7d7f07c637312ab21ea8d1ac01ae8dea25f2534c83c60f, slot: 4456 +2024-09-22T00:44:43.042120Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4456 +2024-09-22T00:44:43.042145Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4456 +2024-09-22T00:44:43.043831Z INFO fork_choice_control::block_processor: Validating block with slot: 5693 +2024-09-22T00:44:43.054004Z INFO fork_choice_control::block_processor: Validating block with slot: 5566 +2024-09-22T00:44:43.054174Z INFO fork_choice_control::block_processor: Validating block with slot: 4457 +2024-09-22T00:44:43.055129Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5ec0f4c4836dc3e5ddd7e65c5706d1c5e23c1cc6215efbec5e8b846c62468019, slot: 4457 +2024-09-22T00:44:43.061162Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4457 +2024-09-22T00:44:43.061184Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4457 +2024-09-22T00:44:43.069002Z INFO fork_choice_control::block_processor: Validating block with slot: 5437 +2024-09-22T00:44:43.073620Z INFO fork_choice_control::block_processor: Validating block with slot: 4458 +2024-09-22T00:44:43.075172Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfa8648e9f8c9009d83a6283db00f5c0dd3427de1bed1c19ef605c7084f10b834, slot: 4458 +2024-09-22T00:44:43.082185Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4458 +2024-09-22T00:44:43.082198Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4458 +2024-09-22T00:44:43.083008Z INFO fork_choice_control::block_processor: Validating block with slot: 5502 +2024-09-22T00:44:43.094712Z INFO fork_choice_control::block_processor: Validating block with slot: 4459 +2024-09-22T00:44:43.095953Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xff9f183c814f9bf8564d49cdf6f78b79828a5be51e092c55e488b4faa48395f4, slot: 4459 +2024-09-22T00:44:43.102428Z INFO fork_choice_control::block_processor: Validating block with slot: 5649 +2024-09-22T00:44:43.103030Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4459 +2024-09-22T00:44:43.103041Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4459 +2024-09-22T00:44:43.115713Z INFO fork_choice_control::block_processor: Validating block with slot: 4460 +2024-09-22T00:44:43.116707Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3ead8d629506d90d2661d6600886ce6983cb583ffef774598b23aa2378d9979a, slot: 4460 +2024-09-22T00:44:43.117628Z INFO fork_choice_control::block_processor: Validating block with slot: 5694 +2024-09-22T00:44:43.122689Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4460 +2024-09-22T00:44:43.122707Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4460 +2024-09-22T00:44:43.135299Z INFO fork_choice_control::block_processor: Validating block with slot: 4461 +2024-09-22T00:44:43.137112Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf3c2e2e710794fdeb7aaf8aec19935ce8eeedce9a4a27ec384336c38fe309a98, slot: 4461 +2024-09-22T00:44:43.141375Z INFO fork_choice_control::block_processor: Validating block with slot: 5567 +2024-09-22T00:44:43.145916Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4461 +2024-09-22T00:44:43.145935Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4461 +2024-09-22T00:44:43.150862Z INFO fork_choice_control::block_processor: Validating block with slot: 5438 +2024-09-22T00:44:43.159252Z INFO fork_choice_control::block_processor: Validating block with slot: 4462 +2024-09-22T00:44:43.160394Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3ff88cb5217f8c6ab7a94138c41891f7d4b10f224e2e685cc917cca4cd3104c0, slot: 4462 +2024-09-22T00:44:43.161111Z INFO fork_choice_control::block_processor: Validating block with slot: 5503 +2024-09-22T00:44:43.166265Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4462 +2024-09-22T00:44:43.166280Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4462 +2024-09-22T00:44:43.179594Z INFO fork_choice_control::block_processor: Validating block with slot: 5650 +2024-09-22T00:44:43.179711Z INFO fork_choice_control::block_processor: Validating block with slot: 4463 +2024-09-22T00:44:43.180877Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x02cc7bcbb703eb072f58a3a2fefd20cad460f4e635174d87f9b61f322bd6fe2b, slot: 4463 +2024-09-22T00:44:43.186780Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4463 +2024-09-22T00:44:43.186793Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4463 +2024-09-22T00:44:43.194133Z INFO fork_choice_control::block_processor: Validating block with slot: 5695 +2024-09-22T00:44:43.200544Z INFO fork_choice_control::block_processor: Validating block with slot: 4465 +2024-09-22T00:44:43.203452Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcf7d963fc4aa9a4d39cbee20e6a4d51277a424fb0aacc4e53bc09c34a79c979f, slot: 4465 +2024-09-22T00:44:43.211101Z INFO fork_choice_control::block_processor: Validating block with slot: 5568 +2024-09-22T00:44:43.217427Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4465 +2024-09-22T00:44:43.217443Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4465 +2024-09-22T00:44:43.236535Z INFO fork_choice_control::block_processor: Validating block with slot: 5439 +2024-09-22T00:44:43.237927Z INFO fork_choice_control::block_processor: Validating block with slot: 4466 +2024-09-22T00:44:43.239820Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x57c71c5b78afe589cd8f50bd256e8cf8a7e97e21bb30271b425655ce7ab136f7, slot: 4466 +2024-09-22T00:44:43.248748Z INFO fork_choice_control::block_processor: Validating block with slot: 5504 +2024-09-22T00:44:43.253795Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4466 +2024-09-22T00:44:43.253820Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4466 +2024-09-22T00:44:43.266000Z INFO fork_choice_control::block_processor: Validating block with slot: 5651 +2024-09-22T00:44:43.273345Z INFO fork_choice_control::block_processor: Validating block with slot: 4467 +2024-09-22T00:44:43.274633Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x50c4cce008e3e3e4a6d4c6f4960d7d4cfceef275a497d059f44354dceb6d3060, slot: 4467 +2024-09-22T00:44:43.276205Z INFO fork_choice_control::block_processor: Validating block with slot: 5696 +2024-09-22T00:44:43.281384Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4467 +2024-09-22T00:44:43.281401Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4467 +2024-09-22T00:44:43.296569Z INFO fork_choice_control::block_processor: Validating block with slot: 4468 +2024-09-22T00:44:43.297566Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x46fd208273ff7344e38ea40fd797111bd4e529fdc993b311d444635a6768e3e5, slot: 4468 +2024-09-22T00:44:43.303831Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4468 +2024-09-22T00:44:43.303856Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4468 +2024-09-22T00:44:43.305962Z INFO fork_choice_control::block_processor: Validating block with slot: 5570 +2024-09-22T00:44:43.312398Z INFO fork_choice_control::block_processor: Validating block with slot: 5440 +2024-09-22T00:44:43.319831Z INFO fork_choice_control::block_processor: Validating block with slot: 4469 +2024-09-22T00:44:43.321196Z INFO fork_choice_control::block_processor: Validating block with slot: 5505 +2024-09-22T00:44:43.321243Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9ba8ad3df46354e5d5aa6843a842837a61918dcf351aed89fd67d0012e5e7429, slot: 4469 +2024-09-22T00:44:43.330566Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4469 +2024-09-22T00:44:43.330593Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4469 +2024-09-22T00:44:43.337618Z INFO fork_choice_control::block_processor: Validating block with slot: 5652 +2024-09-22T00:44:43.347027Z INFO fork_choice_control::block_processor: Validating block with slot: 4470 +2024-09-22T00:44:43.350017Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3b277b6f88a4f28df30047980210f6874aef9833a9cb1f5ed975b64dd8dac668, slot: 4470 +2024-09-22T00:44:43.361190Z INFO fork_choice_control::block_processor: Validating block with slot: 5697 +2024-09-22T00:44:43.361351Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4470 +2024-09-22T00:44:43.361366Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4470 +2024-09-22T00:44:43.366918Z INFO fork_choice_control::block_processor: Validating block with slot: 5571 +2024-09-22T00:44:43.377165Z INFO fork_choice_control::block_processor: Validating block with slot: 4471 +2024-09-22T00:44:43.378637Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x38359718b97f7e77349a14f1f41811eb48f47a2973366bfc6e52638a9e5e6c1b, slot: 4471 +2024-09-22T00:44:43.382809Z INFO fork_choice_control::block_processor: Validating block with slot: 5442 +2024-09-22T00:44:43.386779Z INFO fork_choice_control::block_processor: Validating block with slot: 5506 +2024-09-22T00:44:43.387150Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4471 +2024-09-22T00:44:43.387167Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4471 +2024-09-22T00:44:43.402753Z INFO fork_choice_control::block_processor: Validating block with slot: 4472 +2024-09-22T00:44:43.404019Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3b21871c69c4e5965ebb8e51305fb96b97fbb21b95bf2315ea42e608dd4a4920, slot: 4472 +2024-09-22T00:44:43.412015Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4472 +2024-09-22T00:44:43.412038Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4472 +2024-09-22T00:44:43.413763Z INFO fork_choice_control::block_processor: Validating block with slot: 5653 +2024-09-22T00:44:43.434023Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 138, root: 0xa30f7f9f712c4856d8ed24f1cb1924accc0237bcb74bac25acbc7baa276dc0d0, head slot: 4472, head root: 0x3b21871c69c4e5965ebb8e51305fb96b97fbb21b95bf2315ea42e608dd4a4920) +2024-09-22T00:44:43.434034Z INFO fork_choice_control::block_processor: Validating block with slot: 4473 +2024-09-22T00:44:43.435798Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5b8679b9b3995c3f52af56377140c6d56598b93d14474f143063fbbfa7f93f03, slot: 4473 +2024-09-22T00:44:43.436022Z INFO fork_choice_control::block_processor: Validating block with slot: 5698 +2024-09-22T00:44:43.443692Z INFO fork_choice_control::block_processor: Validating block with slot: 5572 +2024-09-22T00:44:43.446810Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4473 +2024-09-22T00:44:43.446822Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4473 +2024-09-22T00:44:43.463589Z INFO fork_choice_control::block_processor: Validating block with slot: 4474 +2024-09-22T00:44:43.464750Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe931477c69b5c7d8d0883ebad911464c9457399b81e9ea60cea3ed5ed6b1f5cf, slot: 4474 +2024-09-22T00:44:43.471135Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4474 +2024-09-22T00:44:43.471148Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4474 +2024-09-22T00:44:43.479762Z INFO fork_choice_control::block_processor: Validating block with slot: 5443 +2024-09-22T00:44:43.479774Z INFO fork_choice_control::block_processor: Validating block with slot: 5507 +2024-09-22T00:44:43.487850Z INFO fork_choice_control::block_processor: Validating block with slot: 4475 +2024-09-22T00:44:43.488348Z INFO fork_choice_control::block_processor: Validating block with slot: 5654 +2024-09-22T00:44:43.488830Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x03d16b7634351f2157d89205d6eab194fc933302d3d8041eecfaa48f7c715223, slot: 4475 +2024-09-22T00:44:43.495084Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4475 +2024-09-22T00:44:43.495106Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4475 +2024-09-22T00:44:43.504780Z INFO fork_choice_control::block_processor: Validating block with slot: 5699 +2024-09-22T00:44:43.511743Z INFO fork_choice_control::block_processor: Validating block with slot: 4476 +2024-09-22T00:44:43.512731Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x93797a40b247eb5312be2d988d23d05ea9130f47e9170e61f04bf54cacf33cb1, slot: 4476 +2024-09-22T00:44:43.518459Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4476 +2024-09-22T00:44:43.518470Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4476 +2024-09-22T00:44:43.522465Z INFO fork_choice_control::block_processor: Validating block with slot: 5573 +2024-09-22T00:44:43.535705Z INFO fork_choice_control::block_processor: Validating block with slot: 4477 +2024-09-22T00:44:43.536695Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf3939c4619507e66d5f8a72c57a523b78bed07ac55b35d2da82a14e36b36f7be, slot: 4477 +2024-09-22T00:44:43.543802Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4477 +2024-09-22T00:44:43.543823Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4477 +2024-09-22T00:44:43.553643Z INFO fork_choice_control::block_processor: Validating block with slot: 5508 +2024-09-22T00:44:43.553696Z INFO fork_choice_control::block_processor: Validating block with slot: 5444 +2024-09-22T00:44:43.561707Z INFO fork_choice_control::block_processor: Validating block with slot: 4478 +2024-09-22T00:44:43.562913Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb2f0995a0f9946639a56620c9c5e52a5a3ac397eebb56cb47f2fbc737d81a697, slot: 4478 +2024-09-22T00:44:43.564266Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 4416 +2024-09-22T00:44:43.569460Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4478 +2024-09-22T00:44:43.569471Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4478 +2024-09-22T00:44:43.586503Z INFO fork_choice_control::block_processor: Validating block with slot: 4479 +2024-09-22T00:44:43.590054Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xac6de5c78fdea15053d5eb801260f25369d67d9ba67482d7d4f37517636d74a6, slot: 4479 +2024-09-22T00:44:43.604419Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4479 +2024-09-22T00:44:43.604437Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4479 +2024-09-22T00:44:43.615190Z INFO fork_choice_control::block_processor: Validating block with slot: 5655 +2024-09-22T00:44:43.621960Z INFO fork_choice_control::block_processor: Validating block with slot: 4480 +2024-09-22T00:44:43.624816Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcc2a4e8d09992a7c3263ee4c42b4180971cf5aec0854bb0ff88e744e6a5440b9, slot: 4480 +2024-09-22T00:44:43.722883Z INFO fork_choice_control::block_processor: Validating block with slot: 5700 +2024-09-22T00:44:43.732166Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4480 +2024-09-22T00:44:43.732185Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4480 +2024-09-22T00:44:43.743911Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 4480) +2024-09-22T00:44:43.744079Z INFO fork_choice_control::block_processor: Validating block with slot: 4481 +2024-09-22T00:44:43.745174Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x05538a0ec6e5d8bae4156637a88fd428e40aeb372e50a346f202fa17982fa96c, slot: 4481 +2024-09-22T00:44:43.757207Z INFO fork_choice_control::block_processor: Validating block with slot: 5509 +2024-09-22T00:44:43.757263Z INFO fork_choice_control::block_processor: Validating block with slot: 5574 +2024-09-22T00:44:43.757258Z INFO fork_choice_control::block_processor: Validating block with slot: 5445 +2024-09-22T00:44:43.785113Z INFO fork_choice_control::block_processor: Validating block with slot: 5656 +2024-09-22T00:44:43.793165Z INFO fork_choice_control::block_processor: Validating block with slot: 5701 +2024-09-22T00:44:43.802168Z INFO fork_choice_control::block_processor: Validating block with slot: 5575 +2024-09-22T00:44:43.818001Z INFO fork_choice_control::block_processor: Validating block with slot: 5446 +2024-09-22T00:44:43.820299Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4481 +2024-09-22T00:44:43.820314Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4481 +2024-09-22T00:44:43.831675Z INFO fork_choice_control::block_processor: Validating block with slot: 4482 +2024-09-22T00:44:43.833316Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd9425f9581b3e608baa751fb83f1a424b8b6cefae20ac4500f725e6d266e62b9, slot: 4482 +2024-09-22T00:44:43.840295Z INFO fork_choice_control::block_processor: Validating block with slot: 5510 +2024-09-22T00:44:43.843835Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4482 +2024-09-22T00:44:43.843848Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4482 +2024-09-22T00:44:43.848569Z INFO fork_choice_control::block_processor: Validating block with slot: 5657 +2024-09-22T00:44:43.855392Z INFO fork_choice_control::block_processor: Validating block with slot: 4483 +2024-09-22T00:44:43.856365Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc761efbe21cd6b7a305e37e71bff36bdbea2023ac98e89bd45f8d0a26b2275a7, slot: 4483 +2024-09-22T00:44:43.862553Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4483 +2024-09-22T00:44:43.862575Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4483 +2024-09-22T00:44:43.865453Z INFO fork_choice_control::block_processor: Validating block with slot: 5702 +2024-09-22T00:44:43.874512Z INFO fork_choice_control::block_processor: Validating block with slot: 4484 +2024-09-22T00:44:43.875741Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x562629c666267962ec727243661d738ae11f56eea777a0b1ee2df30a48b66f84, slot: 4484 +2024-09-22T00:44:43.882553Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4484 +2024-09-22T00:44:43.882565Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4484 +2024-09-22T00:44:43.883361Z INFO fork_choice_control::block_processor: Validating block with slot: 5576 +2024-09-22T00:44:43.894585Z INFO fork_choice_control::block_processor: Validating block with slot: 4485 +2024-09-22T00:44:43.897133Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x31707f2a97891e45aef61326a5bc8514fbe4e067d83d05dbdfeeed465158e4d2, slot: 4485 +2024-09-22T00:44:43.908487Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4485 +2024-09-22T00:44:43.908510Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4485 +2024-09-22T00:44:43.910164Z INFO fork_choice_control::block_processor: Validating block with slot: 5447 +2024-09-22T00:44:43.918570Z INFO fork_choice_control::block_processor: Validating block with slot: 5511 +2024-09-22T00:44:43.920739Z INFO fork_choice_control::block_processor: Validating block with slot: 4486 +2024-09-22T00:44:43.922493Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x897cc7cb0961a51347656b59474a4c4e1f111bfdeaeda12e4f706f28a9e33818, slot: 4486 +2024-09-22T00:44:43.925314Z INFO fork_choice_control::block_processor: Validating block with slot: 5658 +2024-09-22T00:44:43.930907Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4486 +2024-09-22T00:44:43.930923Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4486 +2024-09-22T00:44:43.942772Z INFO fork_choice_control::block_processor: Validating block with slot: 5703 +2024-09-22T00:44:43.944315Z INFO fork_choice_control::block_processor: Validating block with slot: 4487 +2024-09-22T00:44:43.945660Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeae63740d67d1add3dcaf4a8bbd369c62c173b803cfedc121c8be4d3374bc3c3, slot: 4487 +2024-09-22T00:44:43.952484Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4487 +2024-09-22T00:44:43.952506Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4487 +2024-09-22T00:44:43.956311Z INFO fork_choice_control::block_processor: Validating block with slot: 5577 +2024-09-22T00:44:43.966165Z INFO fork_choice_control::block_processor: Validating block with slot: 4488 +2024-09-22T00:44:43.967154Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x191e7da59755e0979953b02071be99342f128dd7d8880f4b3a85d1cccfed6e9a, slot: 4488 +2024-09-22T00:44:43.972714Z INFO fork_choice_control::block_processor: Validating block with slot: 5449 +2024-09-22T00:44:43.974035Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4488 +2024-09-22T00:44:43.974051Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4488 +2024-09-22T00:44:43.987109Z INFO fork_choice_control::block_processor: Validating block with slot: 4489 +2024-09-22T00:44:43.988668Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x04b56df19a5075638241c5f7f4eba19fe4c5d882073619ebaa3742403a301cd3, slot: 4489 +2024-09-22T00:44:43.996040Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4489 +2024-09-22T00:44:43.996062Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4489 +2024-09-22T00:44:44.003815Z INFO fork_choice_control::block_processor: Validating block with slot: 5512 +2024-09-22T00:44:44.009997Z INFO fork_choice_control::block_processor: Validating block with slot: 4490 +2024-09-22T00:44:44.011901Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x91d1dddc816b1ad2a32479bfcee419da9abf4242799cb0fc0ee0910bd6c6cd57, slot: 4490 +2024-09-22T00:44:44.014732Z INFO fork_choice_control::block_processor: Validating block with slot: 5659 +2024-09-22T00:44:44.020775Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4490 +2024-09-22T00:44:44.020786Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4490 +2024-09-22T00:44:44.034263Z INFO fork_choice_control::block_processor: Validating block with slot: 4491 +2024-09-22T00:44:44.035377Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf1b4d7a9b6c74f79b73dcd1b68a28c296681f0a5bed4f1d8088f6e5284dcd8c9, slot: 4491 +2024-09-22T00:44:44.045342Z INFO fork_choice_control::block_processor: Validating block with slot: 5704 +2024-09-22T00:44:44.045356Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4491 +2024-09-22T00:44:44.045368Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4491 +2024-09-22T00:44:44.045332Z INFO fork_choice_control::block_processor: Validating block with slot: 5578 +2024-09-22T00:44:44.049640Z INFO fork_choice_control::block_processor: Validating block with slot: 5450 +2024-09-22T00:44:44.060224Z INFO fork_choice_control::block_processor: Validating block with slot: 4492 +2024-09-22T00:44:44.061587Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x708e5314c02db89ec53abf53717b6251858ae40d79046898b905125609f83236, slot: 4492 +2024-09-22T00:44:44.068104Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4492 +2024-09-22T00:44:44.068120Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4492 +2024-09-22T00:44:44.073331Z INFO fork_choice_control::block_processor: Validating block with slot: 5513 +2024-09-22T00:44:44.082652Z INFO fork_choice_control::block_processor: Validating block with slot: 4493 +2024-09-22T00:44:44.082698Z INFO fork_choice_control::block_processor: Validating block with slot: 5660 +2024-09-22T00:44:44.084020Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x90c0c74334431514c7712737e877eee4665e2158dbe9cadd06882e9966d3dc53, slot: 4493 +2024-09-22T00:44:44.091172Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4493 +2024-09-22T00:44:44.091200Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4493 +2024-09-22T00:44:44.105254Z INFO fork_choice_control::block_processor: Validating block with slot: 4494 +2024-09-22T00:44:44.106432Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x31f5cebebbe752905b1ba62a97517d545c365e3477b999706d5e30ba6751a504, slot: 4494 +2024-09-22T00:44:44.113789Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4494 +2024-09-22T00:44:44.113810Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4494 +2024-09-22T00:44:44.119078Z INFO fork_choice_control::block_processor: Validating block with slot: 5705 +2024-09-22T00:44:44.119080Z INFO fork_choice_control::block_processor: Validating block with slot: 5579 +2024-09-22T00:44:44.128307Z INFO fork_choice_control::block_processor: Validating block with slot: 4495 +2024-09-22T00:44:44.129281Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd0fae899e393e0bb7172b7683c990dc8abf5cbdd277679c2d27a27f541e8ada8, slot: 4495 +2024-09-22T00:44:44.134948Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4495 +2024-09-22T00:44:44.134963Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4495 +2024-09-22T00:44:44.149523Z INFO fork_choice_control::block_processor: Validating block with slot: 5451 +2024-09-22T00:44:44.149529Z INFO fork_choice_control::block_processor: Validating block with slot: 4496 +2024-09-22T00:44:44.150774Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x146db867ccc3b0fba479d03ee937a905dd00d1d09239ab3974d6ae2e5573ee46, slot: 4496 +2024-09-22T00:44:44.154949Z INFO fork_choice_control::block_processor: Validating block with slot: 5514 +2024-09-22T00:44:44.158654Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4496 +2024-09-22T00:44:44.158673Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4496 +2024-09-22T00:44:44.173257Z INFO fork_choice_control::block_processor: Validating block with slot: 4497 +2024-09-22T00:44:44.174528Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa2e3ae28fbcf865e9439d928145c07286ea254175cbca60b40d7b429bb98d21b, slot: 4497 +2024-09-22T00:44:44.180305Z INFO fork_choice_control::block_processor: Validating block with slot: 5661 +2024-09-22T00:44:44.180363Z INFO fork_choice_control::block_processor: Validating block with slot: 5706 +2024-09-22T00:44:44.181691Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4497 +2024-09-22T00:44:44.181704Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4497 +2024-09-22T00:44:44.196557Z INFO fork_choice_control::block_processor: Validating block with slot: 4498 +2024-09-22T00:44:44.198112Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x760c3937db9bee940da4230d1a8cec2c1b3f5870c752459add509edb8205a26e, slot: 4498 +2024-09-22T00:44:44.201377Z INFO fork_choice_control::block_processor: Validating block with slot: 5580 +2024-09-22T00:44:44.205804Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4498 +2024-09-22T00:44:44.205820Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4498 +2024-09-22T00:44:44.207571Z INFO fork_choice_control::block_processor: Validating block with slot: 5452 +2024-09-22T00:44:44.221073Z INFO fork_choice_control::block_processor: Validating block with slot: 4499 +2024-09-22T00:44:44.222057Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfcb5aa53084b9bec46483ff5b7122c36b73fca33a8f8b2d2dcc0cf2b47e7606a, slot: 4499 +2024-09-22T00:44:44.227748Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4499 +2024-09-22T00:44:44.227770Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4499 +2024-09-22T00:44:44.239840Z INFO fork_choice_control::block_processor: Validating block with slot: 5515 +2024-09-22T00:44:44.243095Z INFO fork_choice_control::block_processor: Validating block with slot: 4500 +2024-09-22T00:44:44.244061Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x64ad41504551c4c5192a77920e738c26724675597d4374c0effdc95e0960eba2, slot: 4500 +2024-09-22T00:44:44.245886Z INFO fork_choice_control::block_processor: Validating block with slot: 5662 +2024-09-22T00:44:44.249801Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4500 +2024-09-22T00:44:44.249813Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4500 +2024-09-22T00:44:44.265323Z INFO fork_choice_control::block_processor: Validating block with slot: 4501 +2024-09-22T00:44:44.267273Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8549887f72ac42281aa10cfc458e010e17b7a2cd846994ef8ff4bc80d3008cd5, slot: 4501 +2024-09-22T00:44:44.270124Z INFO fork_choice_control::block_processor: Validating block with slot: 5581 +2024-09-22T00:44:44.270186Z INFO fork_choice_control::block_processor: Validating block with slot: 5707 +2024-09-22T00:44:44.277232Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4501 +2024-09-22T00:44:44.277251Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4501 +2024-09-22T00:44:44.284304Z INFO fork_choice_control::block_processor: Validating block with slot: 5453 +2024-09-22T00:44:44.293579Z INFO fork_choice_control::block_processor: Validating block with slot: 4502 +2024-09-22T00:44:44.294699Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2de96dac89281e340dc91d58a7d4af8928d6ee6abec01982435bbb5feb154923, slot: 4502 +2024-09-22T00:44:44.301151Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4502 +2024-09-22T00:44:44.301165Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4502 +2024-09-22T00:44:44.309326Z INFO fork_choice_control::block_processor: Validating block with slot: 5516 +2024-09-22T00:44:44.318080Z INFO fork_choice_control::block_processor: Validating block with slot: 4503 +2024-09-22T00:44:44.319190Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x999cda4538511dd129d21789da946baf29ea6f9bc426aa3230c8c0a0b9288302, slot: 4503 +2024-09-22T00:44:44.326079Z INFO fork_choice_control::block_processor: Validating block with slot: 5663 +2024-09-22T00:44:44.326745Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4503 +2024-09-22T00:44:44.326759Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4503 +2024-09-22T00:44:44.332048Z INFO fork_choice_control::block_processor: Validating block with slot: 5708 +2024-09-22T00:44:44.348262Z INFO fork_choice_control::block_processor: Validating block with slot: 4504 +2024-09-22T00:44:44.348307Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 139, root: 0x78757c18ffcef3eeebf3703a7e50bdc83632317884c41d3b9974125175212726, head slot: 4503, head root: 0x999cda4538511dd129d21789da946baf29ea6f9bc426aa3230c8c0a0b9288302) +2024-09-22T00:44:44.349534Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6dce0a3094d47503fd4a50a903c594749bb5785fc3dfe2a6782a257d4d18b5b3, slot: 4504 +2024-09-22T00:44:44.357922Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4504 +2024-09-22T00:44:44.357943Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4504 +2024-09-22T00:44:44.375201Z INFO fork_choice_control::block_processor: Validating block with slot: 4505 +2024-09-22T00:44:44.376465Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x88ad56cb9465cabf20d716ea3e0fcd55769027dbbd8b8837b3556b2e1f1cca9e, slot: 4505 +2024-09-22T00:44:44.377896Z INFO fork_choice_control::block_processor: Validating block with slot: 5454 +2024-09-22T00:44:44.379257Z INFO fork_choice_control::block_processor: Validating block with slot: 5582 +2024-09-22T00:44:44.388853Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4505 +2024-09-22T00:44:44.388874Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4505 +2024-09-22T00:44:44.399404Z INFO fork_choice_control::block_processor: Validating block with slot: 5709 +2024-09-22T00:44:44.399421Z INFO fork_choice_control::block_processor: Validating block with slot: 5517 +2024-09-22T00:44:44.407333Z INFO fork_choice_control::block_processor: Validating block with slot: 4506 +2024-09-22T00:44:44.410054Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x23d48224d3b3bee3a3e202c960b2da8e6d12fdfb88f08c095489a82be7a772e9, slot: 4506 +2024-09-22T00:44:44.412362Z INFO fork_choice_control::block_processor: Validating block with slot: 5583 +2024-09-22T00:44:44.423946Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4506 +2024-09-22T00:44:44.423993Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4506 +2024-09-22T00:44:44.426219Z INFO fork_choice_control::block_processor: Validating block with slot: 5455 +2024-09-22T00:44:44.442671Z INFO fork_choice_control::block_processor: Validating block with slot: 4507 +2024-09-22T00:44:44.443660Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x30ccc962d8ed33df34c748e552615e245ba378b3fe5eacf676204340d34b39bb, slot: 4507 +2024-09-22T00:44:44.450314Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4507 +2024-09-22T00:44:44.450327Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4507 +2024-09-22T00:44:44.457793Z INFO fork_choice_control::block_processor: Validating block with slot: 5518 +2024-09-22T00:44:44.464904Z INFO fork_choice_control::block_processor: Validating block with slot: 5710 +2024-09-22T00:44:44.468317Z INFO fork_choice_control::block_processor: Validating block with slot: 4508 +2024-09-22T00:44:44.469585Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4f82fd7cdf560c569ecd5e36ba1538b5e3885b47a048d818f01b7d2793b3a830, slot: 4508 +2024-09-22T00:44:44.473078Z INFO fork_choice_control::block_processor: Validating block with slot: 5584 +2024-09-22T00:44:44.480061Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4508 +2024-09-22T00:44:44.480080Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4508 +2024-09-22T00:44:44.483489Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 4448 +2024-09-22T00:44:44.498356Z INFO fork_choice_control::block_processor: Validating block with slot: 4509 +2024-09-22T00:44:44.500726Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8c4bef65f75d1f6d1bb3efaf35c3833a4cfe78b2518c4ed535e50665ddf67444, slot: 4509 +2024-09-22T00:44:44.510730Z INFO fork_choice_control::block_processor: Validating block with slot: 5456 +2024-09-22T00:44:44.511983Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4509 +2024-09-22T00:44:44.511995Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4509 +2024-09-22T00:44:44.513005Z INFO fork_choice_control::block_processor: Validating block with slot: 5519 +2024-09-22T00:44:44.534959Z INFO fork_choice_control::block_processor: Validating block with slot: 4510 +2024-09-22T00:44:44.536635Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2b4cd727c59a660f93d18daf235cf860d68d4a2eef33a19035fa583efe007482, slot: 4510 +2024-09-22T00:44:44.546405Z INFO fork_choice_control::block_processor: Validating block with slot: 5585 +2024-09-22T00:44:44.546545Z INFO fork_choice_control::block_processor: Validating block with slot: 5711 +2024-09-22T00:44:44.558299Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4510 +2024-09-22T00:44:44.558390Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4510 +2024-09-22T00:44:44.561296Z INFO fork_choice_control::block_processor: Validating block with slot: 5457 +2024-09-22T00:44:44.578611Z INFO fork_choice_control::block_processor: Validating block with slot: 5520 +2024-09-22T00:44:44.587946Z INFO fork_choice_control::block_processor: Validating block with slot: 5712 +2024-09-22T00:44:44.592923Z INFO fork_choice_control::block_processor: Validating block with slot: 4511 +2024-09-22T00:44:44.594718Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd6b16ebf19b70fdb1ff0a618e73591d71c6eeba1159f48590f1cba6e24ebc27a, slot: 4511 +2024-09-22T00:44:44.605573Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4511 +2024-09-22T00:44:44.605608Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4511 +2024-09-22T00:44:44.606638Z INFO fork_choice_control::block_processor: Validating block with slot: 5586 +2024-09-22T00:44:44.613331Z INFO fork_choice_control::block_processor: Validating block with slot: 5458 +2024-09-22T00:44:44.627339Z INFO fork_choice_control::block_processor: Validating block with slot: 4512 +2024-09-22T00:44:44.628690Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x337f0d88882cfc3691b838c89156226679c713d6ac1e0d925f83ac66ed65c04e, slot: 4512 +2024-09-22T00:44:44.630762Z INFO fork_choice_control::block_processor: Validating block with slot: 5521 +2024-09-22T00:44:44.648307Z INFO fork_choice_control::block_processor: Validating block with slot: 5714 +2024-09-22T00:44:44.660196Z INFO fork_choice_control::block_processor: Validating block with slot: 5587 +2024-09-22T00:44:44.732292Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4512 +2024-09-22T00:44:44.732316Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4512 +2024-09-22T00:44:44.737146Z INFO fork_choice_control::block_processor: Validating block with slot: 5459 +2024-09-22T00:44:44.743615Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 4512) +2024-09-22T00:44:44.743827Z INFO fork_choice_control::block_processor: Validating block with slot: 4513 +2024-09-22T00:44:44.744934Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x64dd24ccb3d39935184112d5138ed2319cd467215c45c7f5c309771e4a0a81b3, slot: 4513 +2024-09-22T00:44:44.822551Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4513 +2024-09-22T00:44:44.822579Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4513 +2024-09-22T00:44:44.835898Z INFO fork_choice_control::block_processor: Validating block with slot: 4514 +2024-09-22T00:44:44.837202Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6208c37b30fe00834eeab7107e68a3d8968ffce24c103ff09f50042687197a5e, slot: 4514 +2024-09-22T00:44:44.845509Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4514 +2024-09-22T00:44:44.845529Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4514 +2024-09-22T00:44:44.857235Z INFO fork_choice_control::block_processor: Validating block with slot: 4515 +2024-09-22T00:44:44.858498Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaa1a158945e5b4ec12cab618fdf04596e67487ee3d248191c61b4995b3306cad, slot: 4515 +2024-09-22T00:44:44.865370Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4515 +2024-09-22T00:44:44.865384Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4515 +2024-09-22T00:44:44.876918Z INFO fork_choice_control::block_processor: Validating block with slot: 4516 +2024-09-22T00:44:44.878623Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x85b6ffb9ce3cc1f0a4a34217d570e7253e4464e3dc8fbf71e0470620a17b345f, slot: 4516 +2024-09-22T00:44:44.887189Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4516 +2024-09-22T00:44:44.887204Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4516 +2024-09-22T00:44:44.898810Z INFO fork_choice_control::block_processor: Validating block with slot: 4517 +2024-09-22T00:44:44.900726Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x989ac39411d5e8ddc7715e64786564c0833b9328459414469b1193b78a16ee5c, slot: 4517 +2024-09-22T00:44:44.910353Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4517 +2024-09-22T00:44:44.910373Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4517 +2024-09-22T00:44:44.922271Z INFO fork_choice_control::block_processor: Validating block with slot: 4518 +2024-09-22T00:44:44.923266Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8155011fd3076c881242c83f5b3ddffd9625e4c274db32b9134b9dc340e34638, slot: 4518 +2024-09-22T00:44:44.929253Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4518 +2024-09-22T00:44:44.929276Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4518 +2024-09-22T00:44:44.941987Z INFO fork_choice_control::block_processor: Validating block with slot: 4519 +2024-09-22T00:44:44.943123Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9dff0cc6f861cbe17679c00df3f0372d9c229c7d3d35c8bf8e1b0ffcd185e826, slot: 4519 +2024-09-22T00:44:44.951202Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4519 +2024-09-22T00:44:44.951223Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4519 +2024-09-22T00:44:44.963844Z INFO fork_choice_control::block_processor: Validating block with slot: 4520 +2024-09-22T00:44:44.966086Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9bccf324aed6d56e45e8e87438330454b0160a35362c2d64b8c09c93028626b7, slot: 4520 +2024-09-22T00:44:44.975646Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4520 +2024-09-22T00:44:44.975673Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4520 +2024-09-22T00:44:44.988493Z INFO fork_choice_control::block_processor: Validating block with slot: 4521 +2024-09-22T00:44:44.989642Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc1738b0907e9b614736e69a69813906589996b23703a0de4329e923913fbbd76, slot: 4521 +2024-09-22T00:44:44.996888Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4521 +2024-09-22T00:44:44.996909Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4521 +2024-09-22T00:44:45.010008Z INFO fork_choice_control::block_processor: Validating block with slot: 4522 +2024-09-22T00:44:45.011135Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3bcdcbf93a478c01022e792cc2a9df33a1f4f77af45c261ecd65e5ca3a98342e, slot: 4522 +2024-09-22T00:44:45.017766Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4522 +2024-09-22T00:44:45.017785Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4522 +2024-09-22T00:44:45.018260Z INFO fork_choice_control::block_processor: Validating block with slot: 5522 +2024-09-22T00:44:45.027262Z INFO fork_choice_control::block_processor: Validating block with slot: 5525 +2024-09-22T00:44:45.027256Z INFO fork_choice_control::block_processor: Validating block with slot: 5524 +2024-09-22T00:44:45.027269Z INFO fork_choice_control::block_processor: Validating block with slot: 5523 +2024-09-22T00:44:45.032324Z INFO fork_choice_control::block_processor: Validating block with slot: 4523 +2024-09-22T00:44:45.034755Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb83a67d7a46ca43e9d96bdd7d9a4e3a82abc67767b90fab713455bc08e8acd84, slot: 4523 +2024-09-22T00:44:45.045083Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4523 +2024-09-22T00:44:45.045106Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4523 +2024-09-22T00:44:45.059626Z INFO fork_choice_control::block_processor: Validating block with slot: 4524 +2024-09-22T00:44:45.059716Z INFO fork_choice_control::block_processor: Validating block with slot: 5527 +2024-09-22T00:44:45.059839Z INFO fork_choice_control::block_processor: Validating block with slot: 5526 +2024-09-22T00:44:45.059930Z INFO fork_choice_control::block_processor: Validating block with slot: 5528 +2024-09-22T00:44:45.059957Z INFO fork_choice_control::block_processor: Validating block with slot: 5531 +2024-09-22T00:44:45.060069Z INFO fork_choice_control::block_processor: Validating block with slot: 5532 +2024-09-22T00:44:45.060191Z INFO fork_choice_control::block_processor: Validating block with slot: 5530 +2024-09-22T00:44:45.060812Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0bd8b5d119b6d0b452e4219fae6707d3c89acc542ef10c565494296fcdf8f9b8, slot: 4524 +2024-09-22T00:44:45.061488Z INFO fork_choice_control::block_processor: Validating block with slot: 5533 +2024-09-22T00:44:45.063018Z INFO fork_choice_control::block_processor: Validating block with slot: 5534 +2024-09-22T00:44:45.063353Z INFO fork_choice_control::block_processor: Validating block with slot: 5717 +2024-09-22T00:44:45.063349Z INFO fork_choice_control::block_processor: Validating block with slot: 5535 +2024-09-22T00:44:45.064294Z INFO fork_choice_control::block_processor: Validating block with slot: 5718 +2024-09-22T00:44:45.064299Z INFO fork_choice_control::block_processor: Validating block with slot: 5719 +2024-09-22T00:44:45.064570Z INFO fork_choice_control::block_processor: Validating block with slot: 5720 +2024-09-22T00:44:45.065231Z INFO fork_choice_control::block_processor: Validating block with slot: 5721 +2024-09-22T00:44:45.065373Z INFO fork_choice_control::block_processor: Validating block with slot: 5722 +2024-09-22T00:44:45.065918Z INFO fork_choice_control::block_processor: Validating block with slot: 5723 +2024-09-22T00:44:45.066510Z INFO fork_choice_control::block_processor: Validating block with slot: 5715 +2024-09-22T00:44:45.068047Z INFO fork_choice_control::block_processor: Validating block with slot: 5716 +2024-09-22T00:44:45.068645Z INFO fork_choice_control::block_processor: Validating block with slot: 5588 +2024-09-22T00:44:45.068819Z INFO fork_choice_control::block_processor: Validating block with slot: 5460 +2024-09-22T00:44:45.072790Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4524 +2024-09-22T00:44:45.072813Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4524 +2024-09-22T00:44:45.077032Z INFO fork_choice_control::block_processor: Validating block with slot: 5724 +2024-09-22T00:44:45.084105Z INFO fork_choice_control::block_processor: Validating block with slot: 5589 +2024-09-22T00:44:45.086630Z INFO fork_choice_control::block_processor: Validating block with slot: 4525 +2024-09-22T00:44:45.088110Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3440b05b42ca6c347b3941b51b209edc53f918b92139cbb8f7978f35755103c6, slot: 4525 +2024-09-22T00:44:45.095185Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4525 +2024-09-22T00:44:45.095211Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4525 +2024-09-22T00:44:45.097521Z INFO fork_choice_control::block_processor: Validating block with slot: 5461 +2024-09-22T00:44:45.109146Z INFO fork_choice_control::block_processor: Validating block with slot: 4526 +2024-09-22T00:44:45.111096Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x25087f3cc8fe430706347755b8ac9d5d079ac457a6fc19458d796da1b2749f1e, slot: 4526 +2024-09-22T00:44:45.119212Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4526 +2024-09-22T00:44:45.119227Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4526 +2024-09-22T00:44:45.121678Z INFO fork_choice_control::block_processor: Validating block with slot: 5725 +2024-09-22T00:44:45.128975Z INFO fork_choice_control::block_processor: Validating block with slot: 5590 +2024-09-22T00:44:45.133636Z INFO fork_choice_control::block_processor: Validating block with slot: 4527 +2024-09-22T00:44:45.134594Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaf4421db8f9ec94c430bfe8a675aaf3c9405c39b79afca923012e0d492f2b759, slot: 4527 +2024-09-22T00:44:45.141706Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4527 +2024-09-22T00:44:45.141729Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4527 +2024-09-22T00:44:45.144772Z INFO fork_choice_control::block_processor: Validating block with slot: 5462 +2024-09-22T00:44:45.155722Z INFO fork_choice_control::block_processor: Validating block with slot: 4528 +2024-09-22T00:44:45.156714Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x22f16d868e8f71e9c7c733168aa1365b28e81320f6cf63b4776ecd363d1fabf2, slot: 4528 +2024-09-22T00:44:45.163940Z INFO fork_choice_control::block_processor: Validating block with slot: 5726 +2024-09-22T00:44:45.164604Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4528 +2024-09-22T00:44:45.164681Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4528 +2024-09-22T00:44:45.174668Z INFO fork_choice_control::block_processor: Validating block with slot: 5591 +2024-09-22T00:44:45.181092Z INFO fork_choice_control::block_processor: Validating block with slot: 4529 +2024-09-22T00:44:45.184036Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc5a7470a8e348675135979def19759d72ede13a7b15a65544ae145e2843e5dc3, slot: 4529 +2024-09-22T00:44:45.193357Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4529 +2024-09-22T00:44:45.193380Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4529 +2024-09-22T00:44:45.193927Z INFO fork_choice_control::block_processor: Validating block with slot: 5463 +2024-09-22T00:44:45.206182Z INFO fork_choice_control::block_processor: Validating block with slot: 5727 +2024-09-22T00:44:45.207971Z INFO fork_choice_control::block_processor: Validating block with slot: 4530 +2024-09-22T00:44:45.209190Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x314ba59c57d5f6d61696490016df8f8f139a1e11003ef2b49200c7ed9239e0a5, slot: 4530 +2024-09-22T00:44:45.216234Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4530 +2024-09-22T00:44:45.216251Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4530 +2024-09-22T00:44:45.223148Z INFO fork_choice_control::block_processor: Validating block with slot: 5592 +2024-09-22T00:44:45.231265Z INFO fork_choice_control::block_processor: Validating block with slot: 4531 +2024-09-22T00:44:45.232621Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7a1029b98452a3a2da3da303dbb150a2357044db5a6342113d42c99454cb18b7, slot: 4531 +2024-09-22T00:44:45.236733Z INFO fork_choice_control::block_processor: Validating block with slot: 5464 +2024-09-22T00:44:45.241327Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4531 +2024-09-22T00:44:45.241347Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4531 +2024-09-22T00:44:45.255226Z INFO fork_choice_control::block_processor: Validating block with slot: 5593 +2024-09-22T00:44:45.256087Z INFO fork_choice_control::block_processor: Validating block with slot: 4532 +2024-09-22T00:44:45.257549Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x119e4b5772fe61a6649ed9665caa52f659b1119c2d01fa01f515c1f285728123, slot: 4532 +2024-09-22T00:44:45.264220Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4532 +2024-09-22T00:44:45.264238Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4532 +2024-09-22T00:44:45.269763Z INFO fork_choice_control::block_processor: Validating block with slot: 5466 +2024-09-22T00:44:45.279643Z INFO fork_choice_control::block_processor: Validating block with slot: 4533 +2024-09-22T00:44:45.280886Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8249c9cf8126ecb50357c13a7bb5a17c4eeb423c8727513e5a1647aaa0075283, slot: 4533 +2024-09-22T00:44:45.288048Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4533 +2024-09-22T00:44:45.288064Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4533 +2024-09-22T00:44:45.303466Z INFO fork_choice_control::block_processor: Validating block with slot: 4534 +2024-09-22T00:44:45.305917Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xea79019fd0529c6e8aec4d8db5306bc84d31b537244ef0950084ed060b510c9a, slot: 4534 +2024-09-22T00:44:45.306627Z INFO fork_choice_control::block_processor: Validating block with slot: 5467 +2024-09-22T00:44:45.307198Z INFO fork_choice_control::block_processor: Validating block with slot: 5594 +2024-09-22T00:44:45.314750Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4534 +2024-09-22T00:44:45.314765Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4534 +2024-09-22T00:44:45.316306Z INFO fork_choice_control::block_processor: Validating block with slot: 5595 +2024-09-22T00:44:45.330569Z INFO fork_choice_control::block_processor: Validating block with slot: 4535 +2024-09-22T00:44:45.331671Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x104f55cc4fe3c0ec2f30bab77453bde069910eb95dfd80cc65f1e098ffda52bc, slot: 4535 +2024-09-22T00:44:45.337722Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4535 +2024-09-22T00:44:45.337737Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4535 +2024-09-22T00:44:45.359120Z INFO fork_choice_control::block_processor: Validating block with slot: 4536 +2024-09-22T00:44:45.359122Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 140, root: 0xcc2a4e8d09992a7c3263ee4c42b4180971cf5aec0854bb0ff88e744e6a5440b9, head slot: 4535, head root: 0x104f55cc4fe3c0ec2f30bab77453bde069910eb95dfd80cc65f1e098ffda52bc) +2024-09-22T00:44:45.360110Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf020d67ec855274fc20e0145a21bdc9574a151157df6837e50616a24fde04426, slot: 4536 +2024-09-22T00:44:45.366608Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4536 +2024-09-22T00:44:45.366626Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4536 +2024-09-22T00:44:45.382844Z INFO fork_choice_control::block_processor: Validating block with slot: 4537 +2024-09-22T00:44:45.383965Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xda3d548490d1a6c8cad2abb86bdffc1f95dc257484fcf06b02aa968199ae9b9c, slot: 4537 +2024-09-22T00:44:45.390768Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4537 +2024-09-22T00:44:45.390788Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4537 +2024-09-22T00:44:45.407430Z INFO fork_choice_control::block_processor: Validating block with slot: 4538 +2024-09-22T00:44:45.408559Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4abc27ee0f70e3c82727f26363321f641cdc5670ae3d10fcbee13eae6cc74e5b, slot: 4538 +2024-09-22T00:44:45.416286Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4538 +2024-09-22T00:44:45.416302Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4538 +2024-09-22T00:44:45.433808Z INFO fork_choice_control::block_processor: Validating block with slot: 4539 +2024-09-22T00:44:45.434810Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6397d6642414da172731cb24b17e5a3da75c25addc976c3ef96a8129c5717d21, slot: 4539 +2024-09-22T00:44:45.442251Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4539 +2024-09-22T00:44:45.442274Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4539 +2024-09-22T00:44:45.454772Z INFO fork_choice_control::block_processor: Validating block with slot: 5468 +2024-09-22T00:44:45.459233Z INFO fork_choice_control::block_processor: Validating block with slot: 4540 +2024-09-22T00:44:45.460209Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2851c8492ef9784aaade461f11122c797135fd38194f1f5e64ce6b038de5d161, slot: 4540 +2024-09-22T00:44:45.466529Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4540 +2024-09-22T00:44:45.466548Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4540 +2024-09-22T00:44:45.483707Z INFO fork_choice_control::block_processor: Validating block with slot: 4541 +2024-09-22T00:44:45.484908Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9ad0940d66ebb60667a5aae6414f3fd0875bfd10330a2bead12f8b062d3e7975, slot: 4541 +2024-09-22T00:44:45.488037Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 4480 +2024-09-22T00:44:45.494008Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4541 +2024-09-22T00:44:45.494031Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4541 +2024-09-22T00:44:45.511899Z INFO fork_choice_control::block_processor: Validating block with slot: 4542 +2024-09-22T00:44:45.513319Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6a2dd670c70f9dd033dc1ddd9b44e801ee5e1848e5dd23ca6b4651edd19e1f21, slot: 4542 +2024-09-22T00:44:45.520862Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4542 +2024-09-22T00:44:45.520884Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4542 +2024-09-22T00:44:45.541822Z INFO fork_choice_control::block_processor: Validating block with slot: 4543 +2024-09-22T00:44:45.543918Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x55cfe854acc2e662ae38886db70aff392c816dd2016f693b838081ddca7610f6, slot: 4543 +2024-09-22T00:44:45.554199Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4543 +2024-09-22T00:44:45.554218Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4543 +2024-09-22T00:44:45.572199Z INFO fork_choice_control::block_processor: Validating block with slot: 4544 +2024-09-22T00:44:45.573967Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdc2bf054d867e12a3025357c0a9fadb21546f2fa9e5f50a356efba8cdc8e3985, slot: 4544 +2024-09-22T00:44:45.680190Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4544 +2024-09-22T00:44:45.680212Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4544 +2024-09-22T00:44:45.690387Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 4544) +2024-09-22T00:44:45.690594Z INFO fork_choice_control::block_processor: Validating block with slot: 4545 +2024-09-22T00:44:45.691578Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe2606aef08fabcdf94d76f3f87ab1023e61e7462c46a29e1a7340ae53a6f094c, slot: 4545 +2024-09-22T00:44:45.716549Z INFO fork_choice_control::block_processor: Validating block with slot: 5596 +2024-09-22T00:44:45.732466Z INFO fork_choice_control::block_processor: Validating block with slot: 5597 +2024-09-22T00:44:45.732507Z INFO fork_choice_control::block_processor: Validating block with slot: 5599 +2024-09-22T00:44:45.732600Z INFO fork_choice_control::block_processor: Validating block with slot: 5598 +2024-09-22T00:44:45.736353Z INFO fork_choice_control::block_processor: Validating block with slot: 5469 +2024-09-22T00:44:45.737788Z INFO fork_choice_control::block_processor: Validating block with slot: 5470 +2024-09-22T00:44:45.766888Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4545 +2024-09-22T00:44:45.766910Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4545 +2024-09-22T00:44:45.778205Z INFO fork_choice_control::block_processor: Validating block with slot: 4546 +2024-09-22T00:44:45.779634Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6a791cb0582438244bc5a6933b505ee70e2a84e354bb66db8cbdf7c0e83b59fe, slot: 4546 +2024-09-22T00:44:45.790123Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4546 +2024-09-22T00:44:45.790150Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4546 +2024-09-22T00:44:45.805026Z INFO fork_choice_control::block_processor: Validating block with slot: 4547 +2024-09-22T00:44:45.809057Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x93ecbda0d09f01be89275b31b69d5c2a8ff9c47d6d3f0e05ac3e4f601b4554ec, slot: 4547 +2024-09-22T00:44:45.819697Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4547 +2024-09-22T00:44:45.819720Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4547 +2024-09-22T00:44:45.831169Z INFO fork_choice_control::block_processor: Validating block with slot: 4548 +2024-09-22T00:44:45.832150Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x99f9d680360e630cfb0c8eed34f8f67e245f6baaed979a60dc4f9f916c499e9e, slot: 4548 +2024-09-22T00:44:45.838608Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4548 +2024-09-22T00:44:45.838623Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4548 +2024-09-22T00:44:45.849797Z INFO fork_choice_control::block_processor: Validating block with slot: 4549 +2024-09-22T00:44:45.850791Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1c6b0ffc54f6a0e840e1ad45a6c1a96a6acb9b32a05a6dbcc9674473f9116d23, slot: 4549 +2024-09-22T00:44:45.857430Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4549 +2024-09-22T00:44:45.857497Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4549 +2024-09-22T00:44:45.869097Z INFO fork_choice_control::block_processor: Validating block with slot: 4551 +2024-09-22T00:44:45.870879Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xecd22d2c9e861ae8e44069e568d887ee50d30aee258aaea16f7cf13b35787e5e, slot: 4551 +2024-09-22T00:44:45.880120Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4551 +2024-09-22T00:44:45.880143Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4551 +2024-09-22T00:44:45.891991Z INFO fork_choice_control::block_processor: Validating block with slot: 4552 +2024-09-22T00:44:45.893513Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc82ebceeeefc2d98229eeb6ba798050b7b45e83ba2a35c7b5e1c40d86ca638d0, slot: 4552 +2024-09-22T00:44:45.900764Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4552 +2024-09-22T00:44:45.900783Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4552 +2024-09-22T00:44:45.912793Z INFO fork_choice_control::block_processor: Validating block with slot: 4553 +2024-09-22T00:44:45.914037Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa4ff7a9038303e654dac828b3691691d8da3b2e68e9c635027dd8ebe52f4711f, slot: 4553 +2024-09-22T00:44:45.920595Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4553 +2024-09-22T00:44:45.920614Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4553 +2024-09-22T00:44:45.932781Z INFO fork_choice_control::block_processor: Validating block with slot: 4554 +2024-09-22T00:44:45.934302Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x17fd8a5cbba3c48274adeabee63b6f572f0b3ea0782f421000220e0a208254e7, slot: 4554 +2024-09-22T00:44:45.941620Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4554 +2024-09-22T00:44:45.941643Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4554 +2024-09-22T00:44:45.944284Z INFO fork_choice_control::block_processor: Validating block with slot: 5471 +2024-09-22T00:44:45.953713Z INFO fork_choice_control::block_processor: Validating block with slot: 4555 +2024-09-22T00:44:45.954663Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xabd50175baeb3b22e7c780bed56c3b43a000447d3356de5d24341275235b391f, slot: 4555 +2024-09-22T00:44:45.960800Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4555 +2024-09-22T00:44:45.960821Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4555 +2024-09-22T00:44:45.973483Z INFO fork_choice_control::block_processor: Validating block with slot: 4556 +2024-09-22T00:44:45.975898Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa4b61667d545d1fdeaaf93a51b9de73b4b306eabcc3f38f6900eaf868f8911c4, slot: 4556 +2024-09-22T00:44:45.984847Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4556 +2024-09-22T00:44:45.984867Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4556 +2024-09-22T00:44:45.998611Z INFO fork_choice_control::block_processor: Validating block with slot: 4557 +2024-09-22T00:44:46.000588Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4a72cbabbe4f5fdf67772968325d6a39dc0ad5e585c67d8aebd6d640c2cc1982, slot: 4557 +2024-09-22T00:44:46.008813Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4557 +2024-09-22T00:44:46.008839Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4557 +2024-09-22T00:44:46.021975Z INFO fork_choice_control::block_processor: Validating block with slot: 4558 +2024-09-22T00:44:46.023113Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x39b956fdb750c3067b7ef0ee1492acf47ab9c44284dfe441c506ccd03ee6cd4d, slot: 4558 +2024-09-22T00:44:46.029913Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4558 +2024-09-22T00:44:46.029935Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4558 +2024-09-22T00:44:46.043550Z INFO fork_choice_control::block_processor: Validating block with slot: 4559 +2024-09-22T00:44:46.044557Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc27a798d6441953a20d123c2020fc3708d38a003872f04884487c1db1e099327, slot: 4559 +2024-09-22T00:44:46.050193Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4559 +2024-09-22T00:44:46.050211Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4559 +2024-09-22T00:44:46.063972Z INFO fork_choice_control::block_processor: Validating block with slot: 4560 +2024-09-22T00:44:46.065664Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb83dd088d4de313e763945bd531a1cb817c59523ec58a9384b0010f62e880967, slot: 4560 +2024-09-22T00:44:46.073166Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4560 +2024-09-22T00:44:46.073205Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4560 +2024-09-22T00:44:46.091274Z INFO fork_choice_control::block_processor: Validating block with slot: 4561 +2024-09-22T00:44:46.092475Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5a980f51e8fe56f80b2b541d0577cf5db244647a111b5bb5547f1d2b61b367bd, slot: 4561 +2024-09-22T00:44:46.108416Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4561 +2024-09-22T00:44:46.108439Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4561 +2024-09-22T00:44:46.128009Z INFO fork_choice_control::block_processor: Validating block with slot: 4562 +2024-09-22T00:44:46.128982Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6027f712a47c2aa6729c65f8efba2d1583c8848f2bb4fa79aa29eacdd668fae8, slot: 4562 +2024-09-22T00:44:46.136032Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4562 +2024-09-22T00:44:46.136054Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4562 +2024-09-22T00:44:46.151706Z INFO fork_choice_control::block_processor: Validating block with slot: 4563 +2024-09-22T00:44:46.153000Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6eac1a514b4dd1c54462c5e5ce32025a193e4419c935eb767d3258fd05768710, slot: 4563 +2024-09-22T00:44:46.160583Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4563 +2024-09-22T00:44:46.160608Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4563 +2024-09-22T00:44:46.175600Z INFO fork_choice_control::block_processor: Validating block with slot: 4564 +2024-09-22T00:44:46.176681Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x82f4f1303fa7b7378eea080cfc8510ad6123b8ec7dc4a9b0fb2be1da035e0a30, slot: 4564 +2024-09-22T00:44:46.183130Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4564 +2024-09-22T00:44:46.183150Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4564 +2024-09-22T00:44:46.198514Z INFO fork_choice_control::block_processor: Validating block with slot: 4565 +2024-09-22T00:44:46.200366Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd629763d1a9b0643181deaa848787f7c1d9bd6e91de67e374d7c72118cda3318, slot: 4565 +2024-09-22T00:44:46.213448Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4565 +2024-09-22T00:44:46.213474Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4565 +2024-09-22T00:44:46.229115Z INFO fork_choice_control::block_processor: Validating block with slot: 4566 +2024-09-22T00:44:46.230794Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbb103a73095a373a0796cac4b1fbf36f97600224d596b0a8f6a50bde8ae9983f, slot: 4566 +2024-09-22T00:44:46.238806Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4566 +2024-09-22T00:44:46.238828Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4566 +2024-09-22T00:44:46.253884Z INFO fork_choice_control::block_processor: Validating block with slot: 4567 +2024-09-22T00:44:46.254870Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0c9f3ed05622afdd28c9e2d3b1c86cf32f32abb59b0b6160867856449d7c4dde, slot: 4567 +2024-09-22T00:44:46.261933Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4567 +2024-09-22T00:44:46.261953Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4567 +2024-09-22T00:44:46.283740Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 141, root: 0x337f0d88882cfc3691b838c89156226679c713d6ac1e0d925f83ac66ed65c04e, head slot: 4567, head root: 0x0c9f3ed05622afdd28c9e2d3b1c86cf32f32abb59b0b6160867856449d7c4dde) +2024-09-22T00:44:46.283757Z INFO fork_choice_control::block_processor: Validating block with slot: 4568 +2024-09-22T00:44:46.285053Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbf0a116a0dbf6e3a98154ed6ee891de09e982746d4f07c3ed9bc9afe0f077506, slot: 4568 +2024-09-22T00:44:46.293293Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4568 +2024-09-22T00:44:46.293315Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4568 +2024-09-22T00:44:46.309447Z INFO fork_choice_control::block_processor: Validating block with slot: 4569 +2024-09-22T00:44:46.311689Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc132dff3dcee7712d90471c3495758a3d7623e4cef99b11e38c954fee6ad2c56, slot: 4569 +2024-09-22T00:44:46.320892Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4569 +2024-09-22T00:44:46.320909Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4569 +2024-09-22T00:44:46.336884Z INFO fork_choice_control::block_processor: Validating block with slot: 4570 +2024-09-22T00:44:46.338006Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xecedd403ba0c72d0db830a8dcc544021c5f019c350e62b1413de769ad951612a, slot: 4570 +2024-09-22T00:44:46.346757Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4570 +2024-09-22T00:44:46.346775Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4570 +2024-09-22T00:44:46.363409Z INFO fork_choice_control::block_processor: Validating block with slot: 4571 +2024-09-22T00:44:46.364808Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf72833ee02d3bad05d66c70659922d0c2ed0b92b2a6e50fec13e23e70b6b3777, slot: 4571 +2024-09-22T00:44:46.373954Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4571 +2024-09-22T00:44:46.373986Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4571 +2024-09-22T00:44:46.391202Z INFO fork_choice_control::block_processor: Validating block with slot: 4572 +2024-09-22T00:44:46.392416Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x385ed63b935bf10d52fd1364bea677bfc68978e604bf82210bcd837d801a3760, slot: 4572 +2024-09-22T00:44:46.401362Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4572 +2024-09-22T00:44:46.401378Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4572 +2024-09-22T00:44:46.419204Z INFO fork_choice_control::block_processor: Validating block with slot: 4574 +2024-09-22T00:44:46.421187Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xacd5993715f2b7a4b3a3ec81751794d46a64c771bb8acb2476ebe11d807e1391, slot: 4574 +2024-09-22T00:44:46.431860Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4574 +2024-09-22T00:44:46.431880Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4574 +2024-09-22T00:44:46.433234Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 4512 +2024-09-22T00:44:46.449980Z INFO fork_choice_control::block_processor: Validating block with slot: 4575 +2024-09-22T00:44:46.451200Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0ad242551bba673bc60310bc22c1229be25cd7f54bdbf61b3b5565e21e96acca, slot: 4575 +2024-09-22T00:44:46.458821Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4575 +2024-09-22T00:44:46.458845Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4575 +2024-09-22T00:44:46.476182Z INFO fork_choice_control::block_processor: Validating block with slot: 4576 +2024-09-22T00:44:46.478853Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x80ef2dae2956a6f3af5b23d905e51d99fd43660ad3f4b03a48c24ec452755f7b, slot: 4576 +2024-09-22T00:44:46.587436Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4576 +2024-09-22T00:44:46.587464Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4576 +2024-09-22T00:44:46.602861Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 4576) +2024-09-22T00:44:46.603114Z INFO fork_choice_control::block_processor: Validating block with slot: 4577 +2024-09-22T00:44:46.605619Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc25f3d8e3ec469f4e69add5ff6377797316d0e8781f9d166dbded17a0b38c51f, slot: 4577 +2024-09-22T00:44:46.670869Z INFO fork_choice_control::block_processor: Validating block with slot: 5793 +2024-09-22T00:44:46.682507Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4577 +2024-09-22T00:44:46.682528Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4577 +2024-09-22T00:44:46.693969Z INFO fork_choice_control::block_processor: Validating block with slot: 4578 +2024-09-22T00:44:46.695246Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb86a35c92cfbcf64321071524ef5c20e9d6142851a41fe595be0ad8bcea43bfe, slot: 4578 +2024-09-22T00:44:46.702769Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4578 +2024-09-22T00:44:46.702789Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4578 +2024-09-22T00:44:46.714633Z INFO fork_choice_control::block_processor: Validating block with slot: 4580 +2024-09-22T00:44:46.716725Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xed12adf8b79e73de87d02b34ad77237b643a2ffec9c9fc82bcaba0f69853bf2e, slot: 4580 +2024-09-22T00:44:46.738122Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4580 +2024-09-22T00:44:46.738169Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4580 +2024-09-22T00:44:46.749968Z INFO fork_choice_control::block_processor: Validating block with slot: 4581 +2024-09-22T00:44:46.751008Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5c736f77652831d8d3b9d8133437304dfe9d8a59817b8cd44858b409eefb5e87, slot: 4581 +2024-09-22T00:44:46.760828Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4581 +2024-09-22T00:44:46.760850Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4581 +2024-09-22T00:44:46.773714Z INFO fork_choice_control::block_processor: Validating block with slot: 4582 +2024-09-22T00:44:46.776154Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb33a03d48b525b767aa3adc08a6b8ca5d9df983b8081924bbd099c8d18d55452, slot: 4582 +2024-09-22T00:44:46.787774Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4582 +2024-09-22T00:44:46.787793Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4582 +2024-09-22T00:44:46.802068Z INFO fork_choice_control::block_processor: Validating block with slot: 4583 +2024-09-22T00:44:46.803471Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xae10059f414078d3e2536ab11d7e7c76f040d3754ef022a02a062464b242260e, slot: 4583 +2024-09-22T00:44:46.806054Z INFO fork_choice_control::block_processor: Validating block with slot: 5794 +2024-09-22T00:44:46.807450Z INFO fork_choice_control::block_processor: Validating block with slot: 5796 +2024-09-22T00:44:46.807462Z INFO fork_choice_control::block_processor: Validating block with slot: 5795 +2024-09-22T00:44:46.807473Z INFO fork_choice_control::block_processor: Validating block with slot: 5798 +2024-09-22T00:44:46.807709Z INFO fork_choice_control::block_processor: Validating block with slot: 5799 +2024-09-22T00:44:46.807730Z INFO fork_choice_control::block_processor: Validating block with slot: 5800 +2024-09-22T00:44:46.807908Z INFO fork_choice_control::block_processor: Validating block with slot: 5801 +2024-09-22T00:44:46.810114Z INFO fork_choice_control::block_processor: Validating block with slot: 5802 +2024-09-22T00:44:46.810580Z INFO fork_choice_control::block_processor: Validating block with slot: 5803 +2024-09-22T00:44:46.810849Z INFO fork_choice_control::block_processor: Validating block with slot: 5804 +2024-09-22T00:44:46.811319Z INFO fork_choice_control::block_processor: Validating block with slot: 5806 +2024-09-22T00:44:46.811505Z INFO fork_choice_control::block_processor: Validating block with slot: 5807 +2024-09-22T00:44:46.813145Z INFO fork_choice_control::block_processor: Validating block with slot: 5808 +2024-09-22T00:44:46.813391Z INFO fork_choice_control::block_processor: Validating block with slot: 5809 +2024-09-22T00:44:46.814656Z INFO fork_choice_control::block_processor: Validating block with slot: 5810 +2024-09-22T00:44:46.814792Z INFO fork_choice_control::block_processor: Validating block with slot: 5811 +2024-09-22T00:44:46.816463Z INFO fork_choice_control::block_processor: Validating block with slot: 5812 +2024-09-22T00:44:46.816549Z INFO fork_choice_control::block_processor: Validating block with slot: 5813 +2024-09-22T00:44:46.816846Z INFO fork_choice_control::block_processor: Validating block with slot: 5814 +2024-09-22T00:44:46.817583Z INFO fork_choice_control::block_processor: Validating block with slot: 5816 +2024-09-22T00:44:46.817666Z INFO fork_choice_control::block_processor: Validating block with slot: 5805 +2024-09-22T00:44:46.817955Z INFO fork_choice_control::block_processor: Validating block with slot: 5817 +2024-09-22T00:44:46.818146Z INFO fork_choice_control::block_processor: Validating block with slot: 5818 +2024-09-22T00:44:46.819142Z INFO fork_choice_control::block_processor: Validating block with slot: 5819 +2024-09-22T00:44:46.819304Z INFO fork_choice_control::block_processor: Validating block with slot: 5820 +2024-09-22T00:44:46.819355Z INFO fork_choice_control::block_processor: Validating block with slot: 5821 +2024-09-22T00:44:46.819927Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4583 +2024-09-22T00:44:46.819962Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4583 +2024-09-22T00:44:46.820091Z INFO fork_choice_control::block_processor: Validating block with slot: 5822 +2024-09-22T00:44:46.820656Z INFO fork_choice_control::block_processor: Validating block with slot: 5823 +2024-09-22T00:44:46.820778Z INFO fork_choice_control::block_processor: Validating block with slot: 5824 +2024-09-22T00:44:46.820835Z INFO fork_choice_control::block_processor: Validating block with slot: 5825 +2024-09-22T00:44:46.821689Z INFO fork_choice_control::block_processor: Validating block with slot: 5826 +2024-09-22T00:44:46.822184Z INFO fork_choice_control::block_processor: Validating block with slot: 5827 +2024-09-22T00:44:46.822372Z INFO fork_choice_control::block_processor: Validating block with slot: 5828 +2024-09-22T00:44:46.822452Z INFO fork_choice_control::block_processor: Validating block with slot: 5831 +2024-09-22T00:44:46.822774Z INFO fork_choice_control::block_processor: Validating block with slot: 5829 +2024-09-22T00:44:46.822799Z INFO fork_choice_control::block_processor: Validating block with slot: 5830 +2024-09-22T00:44:46.822964Z INFO fork_choice_control::block_processor: Validating block with slot: 5832 +2024-09-22T00:44:46.823346Z INFO fork_choice_control::block_processor: Validating block with slot: 5833 +2024-09-22T00:44:46.824119Z INFO fork_choice_control::block_processor: Validating block with slot: 5834 +2024-09-22T00:44:46.825010Z INFO fork_choice_control::block_processor: Validating block with slot: 5835 +2024-09-22T00:44:46.825619Z INFO fork_choice_control::block_processor: Validating block with slot: 5836 +2024-09-22T00:44:46.826659Z INFO fork_choice_control::block_processor: Validating block with slot: 5837 +2024-09-22T00:44:46.826937Z INFO fork_choice_control::block_processor: Validating block with slot: 5841 +2024-09-22T00:44:46.826931Z INFO fork_choice_control::block_processor: Validating block with slot: 5838 +2024-09-22T00:44:46.827130Z INFO fork_choice_control::block_processor: Validating block with slot: 5839 +2024-09-22T00:44:46.827155Z INFO fork_choice_control::block_processor: Validating block with slot: 5842 +2024-09-22T00:44:46.827327Z INFO fork_choice_control::block_processor: Validating block with slot: 5840 +2024-09-22T00:44:46.827879Z INFO fork_choice_control::block_processor: Validating block with slot: 5843 +2024-09-22T00:44:46.828116Z INFO fork_choice_control::block_processor: Validating block with slot: 5844 +2024-09-22T00:44:46.828308Z INFO fork_choice_control::block_processor: Validating block with slot: 5845 +2024-09-22T00:44:46.828825Z INFO fork_choice_control::block_processor: Validating block with slot: 5846 +2024-09-22T00:44:46.829276Z INFO fork_choice_control::block_processor: Validating block with slot: 5847 +2024-09-22T00:44:46.829485Z INFO fork_choice_control::block_processor: Validating block with slot: 5848 +2024-09-22T00:44:46.830475Z INFO fork_choice_control::block_processor: Validating block with slot: 5849 +2024-09-22T00:44:46.830519Z INFO fork_choice_control::block_processor: Validating block with slot: 5852 +2024-09-22T00:44:46.830568Z INFO fork_choice_control::block_processor: Validating block with slot: 5853 +2024-09-22T00:44:46.830668Z INFO fork_choice_control::block_processor: Validating block with slot: 5850 +2024-09-22T00:44:46.830767Z INFO fork_choice_control::block_processor: Validating block with slot: 5854 +2024-09-22T00:44:46.831186Z INFO fork_choice_control::block_processor: Validating block with slot: 5851 +2024-09-22T00:44:46.831676Z INFO fork_choice_control::block_processor: Validating block with slot: 5920 +2024-09-22T00:44:46.831680Z INFO fork_choice_control::block_processor: Validating block with slot: 5855 +2024-09-22T00:44:46.832023Z INFO fork_choice_control::block_processor: Validating block with slot: 5921 +2024-09-22T00:44:46.832837Z INFO fork_choice_control::block_processor: Validating block with slot: 5923 +2024-09-22T00:44:46.832849Z INFO fork_choice_control::block_processor: Validating block with slot: 5924 +2024-09-22T00:44:46.833207Z INFO fork_choice_control::block_processor: Validating block with slot: 5925 +2024-09-22T00:44:46.833775Z INFO fork_choice_control::block_processor: Validating block with slot: 5927 +2024-09-22T00:44:46.834050Z INFO fork_choice_control::block_processor: Validating block with slot: 5928 +2024-09-22T00:44:46.834317Z INFO fork_choice_control::block_processor: Validating block with slot: 5929 +2024-09-22T00:44:46.834974Z INFO fork_choice_control::block_processor: Validating block with slot: 5930 +2024-09-22T00:44:46.835782Z INFO fork_choice_control::block_processor: Validating block with slot: 5931 +2024-09-22T00:44:46.842779Z INFO fork_choice_control::block_processor: Validating block with slot: 4584 +2024-09-22T00:44:46.843898Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1398fa49f992aeb924d047c31d0b35b90b1e6c2e8d4350a375be91e2bcbea167, slot: 4584 +2024-09-22T00:44:46.849991Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4584 +2024-09-22T00:44:46.850005Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4584 +2024-09-22T00:44:46.862609Z INFO fork_choice_control::block_processor: Validating block with slot: 4585 +2024-09-22T00:44:46.864129Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2c894f9b8838d92d51ec522bd7204a88cb0a0175442b570e7470fa6e8e3c1a0e, slot: 4585 +2024-09-22T00:44:46.871944Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4585 +2024-09-22T00:44:46.871967Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4585 +2024-09-22T00:44:46.877827Z INFO fork_choice_control::block_processor: Validating block with slot: 5932 +2024-09-22T00:44:46.884575Z INFO fork_choice_control::block_processor: Validating block with slot: 4586 +2024-09-22T00:44:46.885680Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7c89d7b12f2f7f12854ec2e1894144443ef8658bed52d3d8037022fa42c76d81, slot: 4586 +2024-09-22T00:44:46.891813Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4586 +2024-09-22T00:44:46.891835Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4586 +2024-09-22T00:44:46.904158Z INFO fork_choice_control::block_processor: Validating block with slot: 4587 +2024-09-22T00:44:46.905140Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3efeb34bdf37f5b3f511900ff9ebc4acaccd3a5e739182419fbe169b753c5c97, slot: 4587 +2024-09-22T00:44:46.910698Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4587 +2024-09-22T00:44:46.910713Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4587 +2024-09-22T00:44:46.924106Z INFO fork_choice_control::block_processor: Validating block with slot: 4588 +2024-09-22T00:44:46.926127Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x78d47b94bfe8676363312df24f4f545ce14350045ecf8987f8e5d47e5dfb2f10, slot: 4588 +2024-09-22T00:44:46.936929Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4588 +2024-09-22T00:44:46.936950Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4588 +2024-09-22T00:44:46.950750Z INFO fork_choice_control::block_processor: Validating block with slot: 4589 +2024-09-22T00:44:46.951758Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xafc6acfe90fc67f39cbb3e41791f698d0b910e02438393b5b33a8d0ec92fb64b, slot: 4589 +2024-09-22T00:44:46.958505Z INFO fork_choice_control::block_processor: Validating block with slot: 5933 +2024-09-22T00:44:46.959717Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4589 +2024-09-22T00:44:46.959731Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4589 +2024-09-22T00:44:46.973787Z INFO fork_choice_control::block_processor: Validating block with slot: 4590 +2024-09-22T00:44:46.974908Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6403c06f14ebc9d04d99bcb30621f197bb14ef61f079adf16c65b3dd237423cc, slot: 4590 +2024-09-22T00:44:46.975157Z INFO fork_choice_control::block_processor: Validating block with slot: 5857 +2024-09-22T00:44:46.981099Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4590 +2024-09-22T00:44:46.981113Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4590 +2024-09-22T00:44:46.994428Z INFO fork_choice_control::block_processor: Validating block with slot: 4591 +2024-09-22T00:44:46.996255Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x80850916a99c2a9d18f3a3994b33354ac6a1a8be68f75d1556edf1e8446d9240, slot: 4591 +2024-09-22T00:44:46.996754Z INFO fork_choice_control::block_processor: Validating block with slot: 5934 +2024-09-22T00:44:47.002848Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4591 +2024-09-22T00:44:47.002872Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4591 +2024-09-22T00:44:47.010259Z INFO fork_choice_control::block_processor: Validating block with slot: 5858 +2024-09-22T00:44:47.016649Z INFO fork_choice_control::block_processor: Validating block with slot: 4593 +2024-09-22T00:44:47.018335Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa8b324c9e48edd4da849f429dda9eaf441e45ecbf0b9fae692817a65367053a7, slot: 4593 +2024-09-22T00:44:47.020186Z INFO fork_choice_control::block_processor: Validating block with slot: 5935 +2024-09-22T00:44:47.028984Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4593 +2024-09-22T00:44:47.029003Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4593 +2024-09-22T00:44:47.038061Z INFO fork_choice_control::block_processor: Validating block with slot: 5859 +2024-09-22T00:44:47.042758Z INFO fork_choice_control::block_processor: Validating block with slot: 4594 +2024-09-22T00:44:47.043842Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0a67b256a2877b26420ee8bd300516102e10e1f5972146507ff76a1c847ecfdb, slot: 4594 +2024-09-22T00:44:47.051765Z INFO fork_choice_control::block_processor: Validating block with slot: 5936 +2024-09-22T00:44:47.051857Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4594 +2024-09-22T00:44:47.051868Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4594 +2024-09-22T00:44:47.066961Z INFO fork_choice_control::block_processor: Validating block with slot: 5860 +2024-09-22T00:44:47.067876Z INFO fork_choice_control::block_processor: Validating block with slot: 4595 +2024-09-22T00:44:47.068979Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x967649934f2e3592c10f10326394915128491580191c8962a6c430fcb9e14d7e, slot: 4595 +2024-09-22T00:44:47.076682Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4595 +2024-09-22T00:44:47.076703Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4595 +2024-09-22T00:44:47.081226Z INFO fork_choice_control::block_processor: Validating block with slot: 5937 +2024-09-22T00:44:47.091711Z INFO fork_choice_control::block_processor: Validating block with slot: 4596 +2024-09-22T00:44:47.092840Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x33ab11c2e0c55f810e84d2407431d033de7c90256ea78581e71b42ce0714a2fb, slot: 4596 +2024-09-22T00:44:47.097825Z INFO fork_choice_control::block_processor: Validating block with slot: 5861 +2024-09-22T00:44:47.101791Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4596 +2024-09-22T00:44:47.101811Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4596 +2024-09-22T00:44:47.113153Z INFO fork_choice_control::block_processor: Validating block with slot: 5938 +2024-09-22T00:44:47.117249Z INFO fork_choice_control::block_processor: Validating block with slot: 4597 +2024-09-22T00:44:47.120429Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4a4ed230c42aa74b5324e743c5fb8a4acd0647401b98804485ea6507c743c4b0, slot: 4597 +2024-09-22T00:44:47.134955Z INFO fork_choice_control::block_processor: Validating block with slot: 5862 +2024-09-22T00:44:47.143046Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4597 +2024-09-22T00:44:47.143077Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4597 +2024-09-22T00:44:47.155163Z INFO fork_choice_control::block_processor: Validating block with slot: 5939 +2024-09-22T00:44:47.158376Z INFO fork_choice_control::block_processor: Validating block with slot: 5863 +2024-09-22T00:44:47.165330Z INFO fork_choice_control::block_processor: Validating block with slot: 4598 +2024-09-22T00:44:47.166806Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xea5916508b06877058c5888d434fa3ec5204b6351a5cbf90f18822a1a70eb261, slot: 4598 +2024-09-22T00:44:47.177327Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4598 +2024-09-22T00:44:47.177352Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4598 +2024-09-22T00:44:47.184439Z INFO fork_choice_control::block_processor: Validating block with slot: 5940 +2024-09-22T00:44:47.190913Z INFO fork_choice_control::block_processor: Validating block with slot: 5864 +2024-09-22T00:44:47.193374Z INFO fork_choice_control::block_processor: Validating block with slot: 4599 +2024-09-22T00:44:47.195169Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x73f9ca3f556a6b69e854c1f3e659691c18f854197fbbecaf0c6cb05b9a124938, slot: 4599 +2024-09-22T00:44:47.204048Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4599 +2024-09-22T00:44:47.204067Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4599 +2024-09-22T00:44:47.207629Z INFO fork_choice_control::block_processor: Validating block with slot: 5941 +2024-09-22T00:44:47.220324Z INFO fork_choice_control::block_processor: Validating block with slot: 4600 +2024-09-22T00:44:47.221309Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x21ed09a0b06622cda89f752ac071b349e3be757cd813fc7c5bad4b4101d450a4, slot: 4600 +2024-09-22T00:44:47.223092Z INFO fork_choice_control::block_processor: Validating block with slot: 5865 +2024-09-22T00:44:47.228142Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4600 +2024-09-22T00:44:47.228162Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4600 +2024-09-22T00:44:47.248821Z INFO fork_choice_control::block_processor: Validating block with slot: 4601 +2024-09-22T00:44:47.248825Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 142, root: 0xdc2bf054d867e12a3025357c0a9fadb21546f2fa9e5f50a356efba8cdc8e3985, head slot: 4600, head root: 0x21ed09a0b06622cda89f752ac071b349e3be757cd813fc7c5bad4b4101d450a4) +2024-09-22T00:44:47.250085Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf9cbb9ac592da8a12bfa86a59791df564883b1a077093a72522e5d454b715e94, slot: 4601 +2024-09-22T00:44:47.257280Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4601 +2024-09-22T00:44:47.257301Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4601 +2024-09-22T00:44:47.272953Z INFO fork_choice_control::block_processor: Validating block with slot: 4602 +2024-09-22T00:44:47.273920Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc616bc003a5155bc72ce773995b23f7f62b4649e639e26ddeff5ea402fd933a3, slot: 4602 +2024-09-22T00:44:47.277207Z INFO fork_choice_control::block_processor: Validating block with slot: 5942 +2024-09-22T00:44:47.277224Z INFO fork_choice_control::block_processor: Validating block with slot: 5943 +2024-09-22T00:44:47.277363Z INFO fork_choice_control::block_processor: Validating block with slot: 5866 +2024-09-22T00:44:47.282083Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4602 +2024-09-22T00:44:47.282102Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4602 +2024-09-22T00:44:47.285679Z INFO fork_choice_control::block_processor: Validating block with slot: 5867 +2024-09-22T00:44:47.298543Z INFO fork_choice_control::block_processor: Validating block with slot: 4603 +2024-09-22T00:44:47.299677Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xae62c62ff0e8d8159fe801fe5e357b0224d464dba3904ae245937c903d0fd386, slot: 4603 +2024-09-22T00:44:47.302968Z INFO fork_choice_control::block_processor: Validating block with slot: 5944 +2024-09-22T00:44:47.314723Z INFO fork_choice_control::block_processor: Validating block with slot: 5868 +2024-09-22T00:44:47.316210Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4603 +2024-09-22T00:44:47.316243Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4603 +2024-09-22T00:44:47.332822Z INFO fork_choice_control::block_processor: Validating block with slot: 5945 +2024-09-22T00:44:47.336022Z INFO fork_choice_control::block_processor: Validating block with slot: 4604 +2024-09-22T00:44:47.337684Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcafd36eeffdad7ebe0c4c6c5f45bf02bb2633d11c3e0f68e96f42d49b4ab345b, slot: 4604 +2024-09-22T00:44:47.349920Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4604 +2024-09-22T00:44:47.349946Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4604 +2024-09-22T00:44:47.351692Z INFO fork_choice_control::block_processor: Validating block with slot: 5869 +2024-09-22T00:44:47.367325Z INFO fork_choice_control::block_processor: Validating block with slot: 4605 +2024-09-22T00:44:47.369640Z INFO fork_choice_control::block_processor: Validating block with slot: 5946 +2024-09-22T00:44:47.369971Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0c9395a159b0ecd8c987cc1d3727cf4e1abc56ececf3ec31bc30b6749e80255e, slot: 4605 +2024-09-22T00:44:47.379555Z INFO fork_choice_control::block_processor: Validating block with slot: 5870 +2024-09-22T00:44:47.381315Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4605 +2024-09-22T00:44:47.381330Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4605 +2024-09-22T00:44:47.389079Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 4544 +2024-09-22T00:44:47.398675Z INFO fork_choice_control::block_processor: Validating block with slot: 4606 +2024-09-22T00:44:47.400276Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa18d1f9c9fd76ce885554aaf6a2a68e0a100dfc6966a85ce9c64eac6cc483e21, slot: 4606 +2024-09-22T00:44:47.402967Z INFO fork_choice_control::block_processor: Validating block with slot: 5947 +2024-09-22T00:44:47.410166Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4606 +2024-09-22T00:44:47.410185Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4606 +2024-09-22T00:44:47.410472Z INFO fork_choice_control::block_processor: Validating block with slot: 5871 +2024-09-22T00:44:47.427251Z INFO fork_choice_control::block_processor: Validating block with slot: 5949 +2024-09-22T00:44:47.428659Z INFO fork_choice_control::block_processor: Validating block with slot: 4607 +2024-09-22T00:44:47.430034Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7ef05fd6684565c20d11b9e174823031fb6380133e4c87022489a0989a32af54, slot: 4607 +2024-09-22T00:44:47.436690Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4607 +2024-09-22T00:44:47.436712Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4607 +2024-09-22T00:44:47.441359Z INFO fork_choice_control::block_processor: Validating block with slot: 5872 +2024-09-22T00:44:47.454230Z INFO fork_choice_control::block_processor: Validating block with slot: 4608 +2024-09-22T00:44:47.455960Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6dc936e5bcd7e9e1c9683654bb6231639799403c0df8ad88f71edc098e5952f1, slot: 4608 +2024-09-22T00:44:47.468386Z INFO fork_choice_control::block_processor: Validating block with slot: 5950 +2024-09-22T00:44:47.474758Z INFO fork_choice_control::block_processor: Validating block with slot: 5873 +2024-09-22T00:44:47.488026Z INFO fork_choice_control::block_processor: Validating block with slot: 5951 +2024-09-22T00:44:47.512654Z INFO fork_choice_control::block_processor: Validating block with slot: 5874 +2024-09-22T00:44:47.524517Z INFO fork_choice_control::block_processor: Validating block with slot: 5952 +2024-09-22T00:44:47.542167Z INFO fork_choice_control::block_processor: Validating block with slot: 5875 +2024-09-22T00:44:47.546695Z INFO fork_choice_control::block_processor: Validating block with slot: 5953 +2024-09-22T00:44:47.573857Z INFO fork_choice_control::block_processor: Validating block with slot: 5877 +2024-09-22T00:44:47.582040Z INFO fork_choice_control::block_processor: Validating block with slot: 5954 +2024-09-22T00:44:47.589670Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4608 +2024-09-22T00:44:47.589702Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4608 +2024-09-22T00:44:47.603131Z INFO fork_choice_control::block_processor: Validating block with slot: 5880 +2024-09-22T00:44:47.604996Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 4608) +2024-09-22T00:44:47.605157Z INFO fork_choice_control::block_processor: Validating block with slot: 4609 +2024-09-22T00:44:47.606255Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb6b31a6633ddb9d234bef5383c2818d106b9742b3f33d9f043b5fdf13d087882, slot: 4609 +2024-09-22T00:44:47.617468Z INFO fork_choice_control::block_processor: Validating block with slot: 5955 +2024-09-22T00:44:47.648361Z INFO fork_choice_control::block_processor: Validating block with slot: 5881 +2024-09-22T00:44:47.652524Z INFO fork_choice_control::block_processor: Validating block with slot: 5956 +2024-09-22T00:44:47.664642Z INFO fork_choice_control::block_processor: Validating block with slot: 5882 +2024-09-22T00:44:47.676994Z INFO fork_choice_control::block_processor: Validating block with slot: 5957 +2024-09-22T00:44:47.684097Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4609 +2024-09-22T00:44:47.684113Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4609 +2024-09-22T00:44:47.690195Z INFO fork_choice_control::block_processor: Validating block with slot: 5883 +2024-09-22T00:44:47.694685Z INFO fork_choice_control::block_processor: Validating block with slot: 4610 +2024-09-22T00:44:47.696592Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5aeb3b5d341b69fd698f30bc1f000884c58be05ff1b825d85984f2085aeb6384, slot: 4610 +2024-09-22T00:44:47.705994Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4610 +2024-09-22T00:44:47.706024Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4610 +2024-09-22T00:44:47.707720Z INFO fork_choice_control::block_processor: Validating block with slot: 5958 +2024-09-22T00:44:47.718064Z INFO fork_choice_control::block_processor: Validating block with slot: 4611 +2024-09-22T00:44:47.719943Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe107b7cd3e22f44bff48bb3da87d6caa29eb1bcada19b1d5adc282557cf8b166, slot: 4611 +2024-09-22T00:44:47.730142Z INFO fork_choice_control::block_processor: Validating block with slot: 5884 +2024-09-22T00:44:47.739780Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4611 +2024-09-22T00:44:47.739884Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4611 +2024-09-22T00:44:47.750822Z INFO fork_choice_control::block_processor: Validating block with slot: 5959 +2024-09-22T00:44:47.758038Z INFO fork_choice_control::block_processor: Validating block with slot: 5885 +2024-09-22T00:44:47.760975Z INFO fork_choice_control::block_processor: Validating block with slot: 4612 +2024-09-22T00:44:47.764407Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x43a966f1777e79f93aacd01718d004a457ca493071666f75e4a5b8a817eebd69, slot: 4612 +2024-09-22T00:44:47.770186Z INFO fork_choice_control::block_processor: Validating block with slot: 5960 +2024-09-22T00:44:47.775311Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4612 +2024-09-22T00:44:47.775361Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4612 +2024-09-22T00:44:47.784493Z INFO fork_choice_control::block_processor: Validating block with slot: 5886 +2024-09-22T00:44:47.786964Z INFO fork_choice_control::block_processor: Validating block with slot: 4613 +2024-09-22T00:44:47.787991Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8387b19ba5417ba9ffa35ff6baa8594f1207ffdbaea1572f6b0cbed01ce4e89e, slot: 4613 +2024-09-22T00:44:47.795015Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4613 +2024-09-22T00:44:47.795039Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4613 +2024-09-22T00:44:47.799613Z INFO fork_choice_control::block_processor: Validating block with slot: 5961 +2024-09-22T00:44:47.806924Z INFO fork_choice_control::block_processor: Validating block with slot: 4615 +2024-09-22T00:44:47.809101Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbca2d04b1e16d44195bc7a8311c7c5caff843fc87768ba3994051b07354bf96d, slot: 4615 +2024-09-22T00:44:47.817324Z INFO fork_choice_control::block_processor: Validating block with slot: 5887 +2024-09-22T00:44:47.820062Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4615 +2024-09-22T00:44:47.820078Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4615 +2024-09-22T00:44:47.832204Z INFO fork_choice_control::block_processor: Validating block with slot: 4616 +2024-09-22T00:44:47.832961Z INFO fork_choice_control::block_processor: Validating block with slot: 5962 +2024-09-22T00:44:47.833302Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa4563f46bf569aebdf9b6924fade0581d0b6dad43e1a7711851e5c8afb3259b9, slot: 4616 +2024-09-22T00:44:47.842142Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4616 +2024-09-22T00:44:47.842167Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4616 +2024-09-22T00:44:47.847499Z INFO fork_choice_control::block_processor: Validating block with slot: 5888 +2024-09-22T00:44:47.854666Z INFO fork_choice_control::block_processor: Validating block with slot: 4617 +2024-09-22T00:44:47.855918Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xad8d76e596ccd6c29becc1ff741bce00fbc27dc915ba82ef72ed16e3c54cd1cb, slot: 4617 +2024-09-22T00:44:47.862211Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4617 +2024-09-22T00:44:47.862232Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4617 +2024-09-22T00:44:47.863985Z INFO fork_choice_control::block_processor: Validating block with slot: 5963 +2024-09-22T00:44:47.874358Z INFO fork_choice_control::block_processor: Validating block with slot: 4618 +2024-09-22T00:44:47.877875Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x05ca51ac0d353844bfff52df91b2ef533da70a7527d796bb3a8c8ed1b8802b50, slot: 4618 +2024-09-22T00:44:47.885452Z INFO fork_choice_control::block_processor: Validating block with slot: 5889 +2024-09-22T00:44:47.892586Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4618 +2024-09-22T00:44:47.892613Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4618 +2024-09-22T00:44:47.894643Z INFO fork_choice_control::block_processor: Validating block with slot: 5964 +2024-09-22T00:44:47.907899Z INFO fork_choice_control::block_processor: Validating block with slot: 4619 +2024-09-22T00:44:47.909358Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbcd037ee6e3d644f6b387b69e2e5e85296b416452f1d12259c9b6f9dece2a1de, slot: 4619 +2024-09-22T00:44:47.915429Z INFO fork_choice_control::block_processor: Validating block with slot: 5890 +2024-09-22T00:44:47.916789Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4619 +2024-09-22T00:44:47.916814Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4619 +2024-09-22T00:44:47.928792Z INFO fork_choice_control::block_processor: Validating block with slot: 5965 +2024-09-22T00:44:47.930213Z INFO fork_choice_control::block_processor: Validating block with slot: 4620 +2024-09-22T00:44:47.931334Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7b1c27d697ec8aca88e3d12e14a0352d6fa6b045a6eeeb45117ead63bbf882e9, slot: 4620 +2024-09-22T00:44:47.937252Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4620 +2024-09-22T00:44:47.937267Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4620 +2024-09-22T00:44:47.942356Z INFO fork_choice_control::block_processor: Validating block with slot: 5891 +2024-09-22T00:44:47.950661Z INFO fork_choice_control::block_processor: Validating block with slot: 4621 +2024-09-22T00:44:47.951735Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb5d9da0fa942739fae89843edf4f4e3d0d0bfdd222690528ed90fd2c18481319, slot: 4621 +2024-09-22T00:44:47.958608Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4621 +2024-09-22T00:44:47.958634Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4621 +2024-09-22T00:44:47.963434Z INFO fork_choice_control::block_processor: Validating block with slot: 5966 +2024-09-22T00:44:47.973571Z INFO fork_choice_control::block_processor: Validating block with slot: 4622 +2024-09-22T00:44:47.973706Z INFO fork_choice_control::block_processor: Validating block with slot: 5892 +2024-09-22T00:44:47.975104Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa40650e271228a21f2206db1e4c56c1d66a433f6d30b5fd0438e5069a32cf0f1, slot: 4622 +2024-09-22T00:44:47.982614Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4622 +2024-09-22T00:44:47.982635Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4622 +2024-09-22T00:44:47.991198Z INFO fork_choice_control::block_processor: Validating block with slot: 5967 +2024-09-22T00:44:47.994897Z INFO fork_choice_control::block_processor: Validating block with slot: 5893 +2024-09-22T00:44:47.997412Z INFO fork_choice_control::block_processor: Validating block with slot: 4623 +2024-09-22T00:44:47.998914Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x81df0d033f8d40d92ff2fc3612e21207ee372bc15b510e37d4ee1a8f56825290, slot: 4623 +2024-09-22T00:44:48.006534Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4623 +2024-09-22T00:44:48.006555Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4623 +2024-09-22T00:44:48.019705Z INFO fork_choice_control::block_processor: Validating block with slot: 4624 +2024-09-22T00:44:48.020679Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x030037648f889eddea61d9935e449286d84f6725d0da0ed5ab3ac1f3607ce89f, slot: 4624 +2024-09-22T00:44:48.020989Z INFO fork_choice_control::block_processor: Validating block with slot: 5969 +2024-09-22T00:44:48.027812Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4624 +2024-09-22T00:44:48.027831Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4624 +2024-09-22T00:44:48.034825Z INFO fork_choice_control::block_processor: Validating block with slot: 5894 +2024-09-22T00:44:48.041726Z INFO fork_choice_control::block_processor: Validating block with slot: 4627 +2024-09-22T00:44:48.044449Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf54f9371cedf1e6d8a36766c34dca2973a10bbbb7a5953a35cddd7b906e95d10, slot: 4627 +2024-09-22T00:44:48.055056Z INFO fork_choice_control::block_processor: Validating block with slot: 5970 +2024-09-22T00:44:48.061085Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4627 +2024-09-22T00:44:48.061106Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4627 +2024-09-22T00:44:48.065845Z INFO fork_choice_control::block_processor: Validating block with slot: 5895 +2024-09-22T00:44:48.075871Z INFO fork_choice_control::block_processor: Validating block with slot: 4628 +2024-09-22T00:44:48.077176Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7d218e4f2cd324c572bfcf7fa29b9d2b64c5e81e014d2bfa5d5025b60ccdf71e, slot: 4628 +2024-09-22T00:44:48.083825Z INFO fork_choice_control::block_processor: Validating block with slot: 5971 +2024-09-22T00:44:48.085498Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4628 +2024-09-22T00:44:48.085516Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4628 +2024-09-22T00:44:48.097047Z INFO fork_choice_control::block_processor: Validating block with slot: 5896 +2024-09-22T00:44:48.100107Z INFO fork_choice_control::block_processor: Validating block with slot: 4629 +2024-09-22T00:44:48.101209Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc98a465ae7db910e5cf1a7864529e322322524e45f8bfed195a89de468b69ee0, slot: 4629 +2024-09-22T00:44:48.107185Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4629 +2024-09-22T00:44:48.107206Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4629 +2024-09-22T00:44:48.121055Z INFO fork_choice_control::block_processor: Validating block with slot: 4630 +2024-09-22T00:44:48.122374Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa8ac4b417ba6b32cd8e025aad6a95c3c67c9f16152f64c9873345c7fa86ef4ee, slot: 4630 +2024-09-22T00:44:48.124496Z INFO fork_choice_control::block_processor: Validating block with slot: 5972 +2024-09-22T00:44:48.129053Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4630 +2024-09-22T00:44:48.129065Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4630 +2024-09-22T00:44:48.131195Z INFO fork_choice_control::block_processor: Validating block with slot: 5897 +2024-09-22T00:44:48.143522Z INFO fork_choice_control::block_processor: Validating block with slot: 4631 +2024-09-22T00:44:48.144494Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9e03491194fb5b17300c09442720ab8815ddbb93a50b2013d806cf299ef16dbe, slot: 4631 +2024-09-22T00:44:48.150351Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4631 +2024-09-22T00:44:48.150373Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4631 +2024-09-22T00:44:48.154677Z INFO fork_choice_control::block_processor: Validating block with slot: 5973 +2024-09-22T00:44:48.160492Z INFO fork_choice_control::block_processor: Validating block with slot: 5899 +2024-09-22T00:44:48.166352Z INFO fork_choice_control::block_processor: Validating block with slot: 4632 +2024-09-22T00:44:48.169121Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf04d193748d2772899ea4de5ec03de88448e6343c047c0916dad5d4bf3041eed, slot: 4632 +2024-09-22T00:44:48.178048Z INFO fork_choice_control::block_processor: Validating block with slot: 5975 +2024-09-22T00:44:48.183386Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4632 +2024-09-22T00:44:48.183402Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4632 +2024-09-22T00:44:48.192942Z INFO fork_choice_control::block_processor: Validating block with slot: 5900 +2024-09-22T00:44:48.205798Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 143, root: 0x80ef2dae2956a6f3af5b23d905e51d99fd43660ad3f4b03a48c24ec452755f7b, head slot: 4632, head root: 0xf04d193748d2772899ea4de5ec03de88448e6343c047c0916dad5d4bf3041eed) +2024-09-22T00:44:48.205823Z INFO fork_choice_control::block_processor: Validating block with slot: 4633 +2024-09-22T00:44:48.207988Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf1346f93be3fc0e2a9754b34f4db98b39f4b51596f1ebb6cbcf4bcd20936f316, slot: 4633 +2024-09-22T00:44:48.208547Z INFO fork_choice_control::block_processor: Validating block with slot: 5976 +2024-09-22T00:44:48.215664Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4633 +2024-09-22T00:44:48.215685Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4633 +2024-09-22T00:44:48.216221Z INFO fork_choice_control::block_processor: Validating block with slot: 5901 +2024-09-22T00:44:48.231618Z INFO fork_choice_control::block_processor: Validating block with slot: 4634 +2024-09-22T00:44:48.234436Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc9917674d2fb1fc607241945f33abef5bdb4d8e6d9b7e64556cf9f61d7717f4f, slot: 4634 +2024-09-22T00:44:48.237740Z INFO fork_choice_control::block_processor: Validating block with slot: 5977 +2024-09-22T00:44:48.247164Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4634 +2024-09-22T00:44:48.247185Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4634 +2024-09-22T00:44:48.262420Z INFO fork_choice_control::block_processor: Validating block with slot: 5902 +2024-09-22T00:44:48.264383Z INFO fork_choice_control::block_processor: Validating block with slot: 4635 +2024-09-22T00:44:48.265666Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x192587c3d48b4503c0349b7e1badb0c615f27fb5b3ca08e507aecd2699fe4bd0, slot: 4635 +2024-09-22T00:44:48.272597Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4635 +2024-09-22T00:44:48.272623Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4635 +2024-09-22T00:44:48.274156Z INFO fork_choice_control::block_processor: Validating block with slot: 5978 +2024-09-22T00:44:48.288533Z INFO fork_choice_control::block_processor: Validating block with slot: 4636 +2024-09-22T00:44:48.289558Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdfdf8d9ca7d6df3076b477c1aa24cc5122bfd4bee967d74777a6d2e1344d2e1b, slot: 4636 +2024-09-22T00:44:48.293532Z INFO fork_choice_control::block_processor: Validating block with slot: 5903 +2024-09-22T00:44:48.296806Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4636 +2024-09-22T00:44:48.296832Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4636 +2024-09-22T00:44:48.314960Z INFO fork_choice_control::block_processor: Validating block with slot: 4637 +2024-09-22T00:44:48.316511Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x424140c81fd8b150b060305e375810463181d8cffac9c39ef9101812ed540ff0, slot: 4637 +2024-09-22T00:44:48.326363Z INFO fork_choice_control::block_processor: Validating block with slot: 5979 +2024-09-22T00:44:48.326397Z INFO fork_choice_control::block_processor: Validating block with slot: 5904 +2024-09-22T00:44:48.328230Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4637 +2024-09-22T00:44:48.328245Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4637 +2024-09-22T00:44:48.331179Z INFO fork_choice_control::block_processor: Validating block with slot: 5980 +2024-09-22T00:44:48.342369Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 4576 +2024-09-22T00:44:48.345640Z INFO fork_choice_control::block_processor: Validating block with slot: 4638 +2024-09-22T00:44:48.346958Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x76ed97e22d8fce9db7fba12f77e7dcdbc37f9d65fd24fa04fde46683b63d2cef, slot: 4638 +2024-09-22T00:44:48.347254Z INFO fork_choice_control::block_processor: Validating block with slot: 5905 +2024-09-22T00:44:48.352936Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4638 +2024-09-22T00:44:48.352953Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4638 +2024-09-22T00:44:48.363860Z INFO fork_choice_control::block_processor: Validating block with slot: 5981 +2024-09-22T00:44:48.370787Z INFO fork_choice_control::block_processor: Validating block with slot: 4639 +2024-09-22T00:44:48.371807Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd99ac13e09149cf59ae2d417df8eca5bf4166f2b86d56bfcd6fdd122b885e3a3, slot: 4639 +2024-09-22T00:44:48.381614Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4639 +2024-09-22T00:44:48.381634Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4639 +2024-09-22T00:44:48.391535Z INFO fork_choice_control::block_processor: Validating block with slot: 5906 +2024-09-22T00:44:48.399155Z INFO fork_choice_control::block_processor: Validating block with slot: 5982 +2024-09-22T00:44:48.399810Z INFO fork_choice_control::block_processor: Validating block with slot: 4640 +2024-09-22T00:44:48.401049Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2dbe34605cdeee2be6c08d9c47efd770e097c7d5ee3361ed93962a0187ce6573, slot: 4640 +2024-09-22T00:44:48.412211Z INFO fork_choice_control::block_processor: Validating block with slot: 5907 +2024-09-22T00:44:48.434926Z INFO fork_choice_control::block_processor: Validating block with slot: 5983 +2024-09-22T00:44:48.450391Z INFO fork_choice_control::block_processor: Validating block with slot: 5908 +2024-09-22T00:44:48.458123Z INFO fork_choice_control::block_processor: Validating block with slot: 5909 +2024-09-22T00:44:48.476457Z INFO fork_choice_control::block_processor: Validating block with slot: 5910 +2024-09-22T00:44:48.490031Z INFO fork_choice_control::block_processor: Validating block with slot: 5911 +2024-09-22T00:44:48.505578Z INFO fork_choice_control::block_processor: Validating block with slot: 5912 +2024-09-22T00:44:48.506627Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4640 +2024-09-22T00:44:48.506642Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4640 +2024-09-22T00:44:48.517753Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 4640) +2024-09-22T00:44:48.517938Z INFO fork_choice_control::block_processor: Validating block with slot: 4641 +2024-09-22T00:44:48.519041Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x87c0ca86098bf944cc3488c6d7832e1d73587e28b0515eb5789e919561d7d450, slot: 4641 +2024-09-22T00:44:48.522537Z INFO fork_choice_control::block_processor: Validating block with slot: 5913 +2024-09-22T00:44:48.535187Z INFO fork_choice_control::block_processor: Validating block with slot: 5914 +2024-09-22T00:44:48.550483Z INFO fork_choice_control::block_processor: Validating block with slot: 5915 +2024-09-22T00:44:48.569643Z INFO fork_choice_control::block_processor: Validating block with slot: 5917 +2024-09-22T00:44:48.583335Z INFO fork_choice_control::block_processor: Validating block with slot: 5918 +2024-09-22T00:44:48.606328Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4641 +2024-09-22T00:44:48.606373Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4641 +2024-09-22T00:44:48.618177Z INFO fork_choice_control::block_processor: Validating block with slot: 4642 +2024-09-22T00:44:48.619977Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1eaf00822644686e14054a981af697d6c44da1e79ece8bd134a4d1269e4fdc55, slot: 4642 +2024-09-22T00:44:48.628503Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4642 +2024-09-22T00:44:48.628524Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4642 +2024-09-22T00:44:48.640006Z INFO fork_choice_control::block_processor: Validating block with slot: 4643 +2024-09-22T00:44:48.641416Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbe134c16f21b0f255e53234ac39e8664d1b25a732dda8373a004047122d71371, slot: 4643 +2024-09-22T00:44:48.648475Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4643 +2024-09-22T00:44:48.648493Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4643 +2024-09-22T00:44:48.660238Z INFO fork_choice_control::block_processor: Validating block with slot: 4644 +2024-09-22T00:44:48.661214Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeb1cfe7451bb5016b87ca4d9e44047ea696faa4d452b78348618f7ccfdbea4be, slot: 4644 +2024-09-22T00:44:48.668018Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4644 +2024-09-22T00:44:48.668040Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4644 +2024-09-22T00:44:48.681073Z INFO fork_choice_control::block_processor: Validating block with slot: 5919 +2024-09-22T00:44:48.682223Z INFO fork_choice_control::block_processor: Validating block with slot: 4645 +2024-09-22T00:44:48.683550Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc333cab337eda9760d1093bec62d68b6370046bd09da2b6673e8414ff554ac78, slot: 4645 +2024-09-22T00:44:48.694304Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4645 +2024-09-22T00:44:48.694337Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4645 +2024-09-22T00:44:48.713658Z INFO fork_choice_control::block_processor: Validating block with slot: 4646 +2024-09-22T00:44:48.714825Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbc06b6a3ee9407f7c075ef8044775feaec5535c5d42e055d9a466de61f92075b, slot: 4646 +2024-09-22T00:44:48.722578Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4646 +2024-09-22T00:44:48.722600Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4646 +2024-09-22T00:44:48.735199Z INFO fork_choice_control::block_processor: Validating block with slot: 4647 +2024-09-22T00:44:48.736498Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd7aebc375d4e48f98f5ff3b3c92a1d77d846464604239e55804f372cd9b446af, slot: 4647 +2024-09-22T00:44:48.745194Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4647 +2024-09-22T00:44:48.745221Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4647 +2024-09-22T00:44:48.758518Z INFO fork_choice_control::block_processor: Validating block with slot: 4648 +2024-09-22T00:44:48.759741Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1994d67b9036c6703f1aa22355a3532c2d3405589f480f695a5a97808eea9bfe, slot: 4648 +2024-09-22T00:44:48.767423Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4648 +2024-09-22T00:44:48.767445Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4648 +2024-09-22T00:44:48.780583Z INFO fork_choice_control::block_processor: Validating block with slot: 4649 +2024-09-22T00:44:48.781557Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x64cdf9a4fba3929068cb733dda857628a2edb5124298c5968121666e987726ae, slot: 4649 +2024-09-22T00:44:48.787206Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4649 +2024-09-22T00:44:48.787223Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4649 +2024-09-22T00:44:48.800171Z INFO fork_choice_control::block_processor: Validating block with slot: 4650 +2024-09-22T00:44:48.801275Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x403e09ddcc29e47c0c1b7bb0db24a5f1a882dc96ac452f52e860c54cc460dcb2, slot: 4650 +2024-09-22T00:44:48.807720Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4650 +2024-09-22T00:44:48.807742Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4650 +2024-09-22T00:44:48.820427Z INFO fork_choice_control::block_processor: Validating block with slot: 4651 +2024-09-22T00:44:48.821411Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x396c3e6798ebe79b60ea99da69d805bd1b44163209c4b6c09cd78ab6efe33683, slot: 4651 +2024-09-22T00:44:48.827135Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4651 +2024-09-22T00:44:48.827158Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4651 +2024-09-22T00:44:48.839958Z INFO fork_choice_control::block_processor: Validating block with slot: 4652 +2024-09-22T00:44:48.841100Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5e7b0ec3bcdc8e005bd9692b8a78ec9b74830a221134f4bf1aa0fec69cfddc20, slot: 4652 +2024-09-22T00:44:48.847038Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4652 +2024-09-22T00:44:48.847051Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4652 +2024-09-22T00:44:48.860098Z INFO fork_choice_control::block_processor: Validating block with slot: 4653 +2024-09-22T00:44:48.865057Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2d4961a23b9fffdd2f7c2e9299029f65001ad6318f36d66a710a75217bbe0d38, slot: 4653 +2024-09-22T00:44:48.882788Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4653 +2024-09-22T00:44:48.882813Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4653 +2024-09-22T00:44:48.896688Z INFO fork_choice_control::block_processor: Validating block with slot: 4654 +2024-09-22T00:44:48.897697Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9102c168767a4d65152e726744318ceda70af1b4747c7b5b192bf5caa260ef5b, slot: 4654 +2024-09-22T00:44:48.905449Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4654 +2024-09-22T00:44:48.905468Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4654 +2024-09-22T00:44:48.919297Z INFO fork_choice_control::block_processor: Validating block with slot: 4655 +2024-09-22T00:44:48.920707Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb01ec625be88201e6eb34ab6845addbd6865134ae84e76c52b55f1bdf70ab767, slot: 4655 +2024-09-22T00:44:48.931288Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4655 +2024-09-22T00:44:48.931311Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4655 +2024-09-22T00:44:48.946559Z INFO fork_choice_control::block_processor: Validating block with slot: 4656 +2024-09-22T00:44:48.947545Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xecdd9647c3f4af1befd2582225d1ce80e3334b9491436becbaab3c2b40c84187, slot: 4656 +2024-09-22T00:44:48.955659Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4656 +2024-09-22T00:44:48.955682Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4656 +2024-09-22T00:44:48.970546Z INFO fork_choice_control::block_processor: Validating block with slot: 4657 +2024-09-22T00:44:48.972096Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5b440b4c1fdb9fd403c03d0d41a9ea21abd59a9279339b292cc593518ea3a82a, slot: 4657 +2024-09-22T00:44:48.980398Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4657 +2024-09-22T00:44:48.980419Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4657 +2024-09-22T00:44:48.995318Z INFO fork_choice_control::block_processor: Validating block with slot: 4658 +2024-09-22T00:44:48.996793Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xec8066d0954b67a150e95043a8148be4e68b2d10909aec1463e65867be486636, slot: 4658 +2024-09-22T00:44:49.003786Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4658 +2024-09-22T00:44:49.003806Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4658 +2024-09-22T00:44:49.018736Z INFO fork_choice_control::block_processor: Validating block with slot: 4659 +2024-09-22T00:44:49.019793Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3c552e7d3934823ac37e0c32e3c1d129e13e3121c95c06f39e0664c33f42ed71, slot: 4659 +2024-09-22T00:44:49.026497Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4659 +2024-09-22T00:44:49.026547Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4659 +2024-09-22T00:44:49.041480Z INFO fork_choice_control::block_processor: Validating block with slot: 4660 +2024-09-22T00:44:49.043024Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf501375ecd6782ae8c72d677486e4f4dbdde9558db8a58b68d821ef48a4e04b8, slot: 4660 +2024-09-22T00:44:49.050135Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4660 +2024-09-22T00:44:49.050154Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4660 +2024-09-22T00:44:49.065792Z INFO fork_choice_control::block_processor: Validating block with slot: 4661 +2024-09-22T00:44:49.067189Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x57aa0f90199872d8b271324db8b67769cae5fb1be256b0799dd0d0205e42ef2b, slot: 4661 +2024-09-22T00:44:49.076061Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4661 +2024-09-22T00:44:49.076083Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4661 +2024-09-22T00:44:49.095308Z INFO fork_choice_control::block_processor: Validating block with slot: 4662 +2024-09-22T00:44:49.099479Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0d633d4c2504a19765c11277011088c0866ded2f000f76dc3f980c2e10714f74, slot: 4662 +2024-09-22T00:44:49.116539Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4662 +2024-09-22T00:44:49.116595Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4662 +2024-09-22T00:44:49.134002Z INFO fork_choice_control::block_processor: Validating block with slot: 4663 +2024-09-22T00:44:49.135206Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5ca3539d700ff4d3936fece8e211653422c7cd402ab28d47d88e35cc4e7a8d77, slot: 4663 +2024-09-22T00:44:49.141963Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4663 +2024-09-22T00:44:49.141980Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4663 +2024-09-22T00:44:49.165223Z INFO fork_choice_control::block_processor: Validating block with slot: 4664 +2024-09-22T00:44:49.165228Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 144, root: 0x6dc936e5bcd7e9e1c9683654bb6231639799403c0df8ad88f71edc098e5952f1, head slot: 4663, head root: 0x5ca3539d700ff4d3936fece8e211653422c7cd402ab28d47d88e35cc4e7a8d77) +2024-09-22T00:44:49.168170Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9a1b7e1f7ed4d6f9cda86baaf33a4b87e8d8eacd21e9ec962aef08e1845f53b8, slot: 4664 +2024-09-22T00:44:49.182488Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4664 +2024-09-22T00:44:49.182510Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4664 +2024-09-22T00:44:49.200365Z INFO fork_choice_control::block_processor: Validating block with slot: 4665 +2024-09-22T00:44:49.201775Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5c1f357f4cc573b69f9fc26fb6eed497d33af88020cb8a2151827be9e8b6f34a, slot: 4665 +2024-09-22T00:44:49.210079Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4665 +2024-09-22T00:44:49.210101Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4665 +2024-09-22T00:44:49.226831Z INFO fork_choice_control::block_processor: Validating block with slot: 4666 +2024-09-22T00:44:49.227900Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9ccdca396600c8d3d2e131c01f3172f217526d6623664e2c59174e1710f57894, slot: 4666 +2024-09-22T00:44:49.235140Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4666 +2024-09-22T00:44:49.235158Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4666 +2024-09-22T00:44:49.253310Z INFO fork_choice_control::block_processor: Validating block with slot: 4667 +2024-09-22T00:44:49.254940Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb6ea4bce14849600c4314fa3620eb14694b2e374eecd3edafa814c40daa05d7d, slot: 4667 +2024-09-22T00:44:49.264054Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4667 +2024-09-22T00:44:49.264078Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4667 +2024-09-22T00:44:49.281367Z INFO fork_choice_control::block_processor: Validating block with slot: 4668 +2024-09-22T00:44:49.282349Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9a8c5291a62e765ae44e31b4c45eacfc71d103324b3b91e3be913ba78d7812ee, slot: 4668 +2024-09-22T00:44:49.290556Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4668 +2024-09-22T00:44:49.290579Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4668 +2024-09-22T00:44:49.307635Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 4608 +2024-09-22T00:44:49.308380Z INFO fork_choice_control::block_processor: Validating block with slot: 4669 +2024-09-22T00:44:49.309719Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5f00bc58eeac44628e08d66dc157c4f3e1d3a10b282efa2e14e2b112a2da87a1, slot: 4669 +2024-09-22T00:44:49.316913Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4669 +2024-09-22T00:44:49.316931Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4669 +2024-09-22T00:44:49.334460Z INFO fork_choice_control::block_processor: Validating block with slot: 4670 +2024-09-22T00:44:49.335442Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x907f07ef479003a82aca5528766be413b5c550b7a4a75c1bedba16a29b6e6ef2, slot: 4670 +2024-09-22T00:44:49.342626Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4670 +2024-09-22T00:44:49.342647Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4670 +2024-09-22T00:44:49.361028Z INFO fork_choice_control::block_processor: Validating block with slot: 4671 +2024-09-22T00:44:49.362022Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x540158f78621637a0fb98f62f80d8c8302852ccc4aa1924ccd2b2ad0abe3f082, slot: 4671 +2024-09-22T00:44:49.368306Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4671 +2024-09-22T00:44:49.368322Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4671 +2024-09-22T00:44:49.386883Z INFO fork_choice_control::block_processor: Validating block with slot: 4672 +2024-09-22T00:44:49.388064Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3702e5c82ab38cddeed7734a9d118ddee9ef20be0314b0f3e6f44c23d98c0cdc, slot: 4672 +2024-09-22T00:44:49.413867Z INFO fork_choice_control::block_processor: Validating block with slot: 6113 +2024-09-22T00:44:49.413865Z INFO fork_choice_control::block_processor: Validating block with slot: 6112 +2024-09-22T00:44:49.424700Z INFO fork_choice_control::block_processor: Validating block with slot: 6114 +2024-09-22T00:44:49.451983Z INFO fork_choice_control::block_processor: Validating block with slot: 6116 +2024-09-22T00:44:49.451935Z INFO fork_choice_control::block_processor: Validating block with slot: 6115 +2024-09-22T00:44:49.452247Z INFO fork_choice_control::block_processor: Validating block with slot: 6117 +2024-09-22T00:44:49.452472Z INFO fork_choice_control::block_processor: Validating block with slot: 6118 +2024-09-22T00:44:49.452512Z INFO fork_choice_control::block_processor: Validating block with slot: 6119 +2024-09-22T00:44:49.453810Z INFO fork_choice_control::block_processor: Validating block with slot: 6120 +2024-09-22T00:44:49.454822Z INFO fork_choice_control::block_processor: Validating block with slot: 6121 +2024-09-22T00:44:49.456521Z INFO fork_choice_control::block_processor: Validating block with slot: 6122 +2024-09-22T00:44:49.456787Z INFO fork_choice_control::block_processor: Validating block with slot: 6123 +2024-09-22T00:44:49.456812Z INFO fork_choice_control::block_processor: Validating block with slot: 6124 +2024-09-22T00:44:49.457039Z INFO fork_choice_control::block_processor: Validating block with slot: 6126 +2024-09-22T00:44:49.459919Z INFO fork_choice_control::block_processor: Validating block with slot: 6127 +2024-09-22T00:44:49.460644Z INFO fork_choice_control::block_processor: Validating block with slot: 6128 +2024-09-22T00:44:49.460776Z INFO fork_choice_control::block_processor: Validating block with slot: 6129 +2024-09-22T00:44:49.460986Z INFO fork_choice_control::block_processor: Validating block with slot: 6130 +2024-09-22T00:44:49.460998Z INFO fork_choice_control::block_processor: Validating block with slot: 6125 +2024-09-22T00:44:49.501513Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4672 +2024-09-22T00:44:49.501537Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4672 +2024-09-22T00:44:49.504547Z INFO fork_choice_control::block_processor: Validating block with slot: 6135 +2024-09-22T00:44:49.504555Z INFO fork_choice_control::block_processor: Validating block with slot: 6133 +2024-09-22T00:44:49.504542Z INFO fork_choice_control::block_processor: Validating block with slot: 6131 +2024-09-22T00:44:49.504589Z INFO fork_choice_control::block_processor: Validating block with slot: 6134 +2024-09-22T00:44:49.504817Z INFO fork_choice_control::block_processor: Validating block with slot: 6132 +2024-09-22T00:44:49.505733Z INFO fork_choice_control::block_processor: Validating block with slot: 6136 +2024-09-22T00:44:49.506797Z INFO fork_choice_control::block_processor: Validating block with slot: 6137 +2024-09-22T00:44:49.506890Z INFO fork_choice_control::block_processor: Validating block with slot: 6138 +2024-09-22T00:44:49.508110Z INFO fork_choice_control::block_processor: Validating block with slot: 6139 +2024-09-22T00:44:49.508688Z INFO fork_choice_control::block_processor: Validating block with slot: 6140 +2024-09-22T00:44:49.508809Z INFO fork_choice_control::block_processor: Validating block with slot: 6141 +2024-09-22T00:44:49.509260Z INFO fork_choice_control::block_processor: Validating block with slot: 6143 +2024-09-22T00:44:49.509418Z INFO fork_choice_control::block_processor: Validating block with slot: 6144 +2024-09-22T00:44:49.510116Z INFO fork_choice_control::block_processor: Validating block with slot: 6146 +2024-09-22T00:44:49.510134Z INFO fork_choice_control::block_processor: Validating block with slot: 6145 +2024-09-22T00:44:49.511134Z INFO fork_choice_control::block_processor: Validating block with slot: 6176 +2024-09-22T00:44:49.511484Z INFO fork_choice_control::block_processor: Validating block with slot: 6147 +2024-09-22T00:44:49.512153Z INFO fork_choice_control::block_processor: Validating block with slot: 6148 +2024-09-22T00:44:49.512072Z INFO fork_choice_control::block_processor: Validating block with slot: 6177 +2024-09-22T00:44:49.512500Z INFO fork_choice_control::block_processor: Validating block with slot: 6179 +2024-09-22T00:44:49.512522Z INFO fork_choice_control::block_processor: Validating block with slot: 6180 +2024-09-22T00:44:49.513067Z INFO fork_choice_control::block_processor: Validating block with slot: 6150 +2024-09-22T00:44:49.513088Z INFO fork_choice_control::block_processor: Validating block with slot: 6149 +2024-09-22T00:44:49.513679Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 4672) +2024-09-22T00:44:49.513841Z INFO fork_choice_control::block_processor: Validating block with slot: 6151 +2024-09-22T00:44:49.514861Z INFO fork_choice_control::block_processor: Validating block with slot: 6152 +2024-09-22T00:44:49.515129Z INFO fork_choice_control::block_processor: Validating block with slot: 6153 +2024-09-22T00:44:49.515276Z INFO fork_choice_control::block_processor: Validating block with slot: 6154 +2024-09-22T00:44:49.515838Z INFO fork_choice_control::block_processor: Validating block with slot: 6156 +2024-09-22T00:44:49.515872Z INFO fork_choice_control::block_processor: Validating block with slot: 6155 +2024-09-22T00:44:49.516147Z INFO fork_choice_control::block_processor: Validating block with slot: 6157 +2024-09-22T00:44:49.516592Z INFO fork_choice_control::block_processor: Validating block with slot: 6158 +2024-09-22T00:44:49.517027Z INFO fork_choice_control::block_processor: Validating block with slot: 6159 +2024-09-22T00:44:49.517056Z INFO fork_choice_control::block_processor: Validating block with slot: 6160 +2024-09-22T00:44:49.517652Z INFO fork_choice_control::block_processor: Validating block with slot: 6161 +2024-09-22T00:44:49.518216Z INFO fork_choice_control::block_processor: Validating block with slot: 6162 +2024-09-22T00:44:49.518338Z INFO fork_choice_control::block_processor: Validating block with slot: 4673 +2024-09-22T00:44:49.519507Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa61b1cb651fd730bdae0cdbe0c9eef4fc9c1536bc91b93c501000e513cceaadb, slot: 4673 +2024-09-22T00:44:49.522479Z INFO fork_choice_control::block_processor: Validating block with slot: 6163 +2024-09-22T00:44:49.557319Z INFO fork_choice_control::block_processor: Validating block with slot: 6164 +2024-09-22T00:44:49.557764Z INFO fork_choice_control::block_processor: Validating block with slot: 6165 +2024-09-22T00:44:49.567385Z INFO fork_choice_control::block_processor: Validating block with slot: 6167 +2024-09-22T00:44:49.585012Z INFO fork_choice_control::block_processor: Validating block with slot: 5984 +2024-09-22T00:44:49.593053Z INFO fork_choice_control::block_processor: Validating block with slot: 5985 +2024-09-22T00:44:49.593325Z INFO fork_choice_control::block_processor: Validating block with slot: 5986 +2024-09-22T00:44:49.594415Z INFO fork_choice_control::block_processor: Validating block with slot: 6168 +2024-09-22T00:44:49.594478Z INFO fork_choice_control::block_processor: Validating block with slot: 5987 +2024-09-22T00:44:49.594868Z INFO fork_choice_control::block_processor: Validating block with slot: 5988 +2024-09-22T00:44:49.595018Z INFO fork_choice_control::block_processor: Validating block with slot: 5989 +2024-09-22T00:44:49.603531Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4673 +2024-09-22T00:44:49.603552Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4673 +2024-09-22T00:44:49.607587Z INFO fork_choice_control::block_processor: Validating block with slot: 6169 +2024-09-22T00:44:49.617886Z INFO fork_choice_control::block_processor: Validating block with slot: 4674 +2024-09-22T00:44:49.622807Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x789ca49cb5f9f850505bfb05a3398e5de18e22036b7f145fd497876a381a85ab, slot: 4674 +2024-09-22T00:44:49.635750Z INFO fork_choice_control::block_processor: Validating block with slot: 6170 +2024-09-22T00:44:49.643549Z INFO fork_choice_control::block_processor: Validating block with slot: 6171 +2024-09-22T00:44:49.643606Z INFO fork_choice_control::block_processor: Validating block with slot: 6172 +2024-09-22T00:44:49.650326Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4674 +2024-09-22T00:44:49.650350Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4674 +2024-09-22T00:44:49.670198Z INFO fork_choice_control::block_processor: Validating block with slot: 4675 +2024-09-22T00:44:49.671568Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc03d2a978ba00219e0fef208364ba0b523d8594abb4bb6f3d3ee5faf84ae8415, slot: 4675 +2024-09-22T00:44:49.679223Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4675 +2024-09-22T00:44:49.679247Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4675 +2024-09-22T00:44:49.691701Z INFO fork_choice_control::block_processor: Validating block with slot: 4676 +2024-09-22T00:44:49.692690Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8153b3c83aa3c2f9d756d10436d8f18bacd4f4ae76cc3e774741a03112610da5, slot: 4676 +2024-09-22T00:44:49.698937Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4676 +2024-09-22T00:44:49.698955Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4676 +2024-09-22T00:44:49.706985Z INFO fork_choice_control::block_processor: Validating block with slot: 6174 +2024-09-22T00:44:49.714293Z INFO fork_choice_control::block_processor: Validating block with slot: 4677 +2024-09-22T00:44:49.716788Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x662f5488657536fbf50d59e4e6dc4a58250aa8de5b26864ab8def7d0abb20a8b, slot: 4677 +2024-09-22T00:44:49.738154Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4677 +2024-09-22T00:44:49.738179Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4677 +2024-09-22T00:44:49.750891Z INFO fork_choice_control::block_processor: Validating block with slot: 4678 +2024-09-22T00:44:49.752010Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xceb969cf60e7d046c4955fd5abb8fda40ede6701efe3e3cbe15dc1cf67327c74, slot: 4678 +2024-09-22T00:44:49.761705Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4678 +2024-09-22T00:44:49.761729Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4678 +2024-09-22T00:44:49.774328Z INFO fork_choice_control::block_processor: Validating block with slot: 6181 +2024-09-22T00:44:49.774331Z INFO fork_choice_control::block_processor: Validating block with slot: 6182 +2024-09-22T00:44:49.774438Z INFO fork_choice_control::block_processor: Validating block with slot: 6183 +2024-09-22T00:44:49.776349Z INFO fork_choice_control::block_processor: Validating block with slot: 4679 +2024-09-22T00:44:49.777589Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa674a07984efe399ec92d23e3570318c0cbd07a119fb24726a29feee8d836231, slot: 4679 +2024-09-22T00:44:49.790184Z INFO fork_choice_control::block_processor: Validating block with slot: 6184 +2024-09-22T00:44:49.796316Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4679 +2024-09-22T00:44:49.796337Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4679 +2024-09-22T00:44:49.798096Z INFO fork_choice_control::block_processor: Validating block with slot: 6185 +2024-09-22T00:44:49.798179Z INFO fork_choice_control::block_processor: Validating block with slot: 6188 +2024-09-22T00:44:49.798188Z INFO fork_choice_control::block_processor: Validating block with slot: 6186 +2024-09-22T00:44:49.798435Z INFO fork_choice_control::block_processor: Validating block with slot: 6187 +2024-09-22T00:44:49.801782Z INFO fork_choice_control::block_processor: Validating block with slot: 6189 +2024-09-22T00:44:49.801940Z INFO fork_choice_control::block_processor: Validating block with slot: 6190 +2024-09-22T00:44:49.802480Z INFO fork_choice_control::block_processor: Validating block with slot: 6191 +2024-09-22T00:44:49.811533Z INFO fork_choice_control::block_processor: Validating block with slot: 4680 +2024-09-22T00:44:49.812821Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x134da300d8739703da059e28cd8aded24e0d8f18648b76d3ef55924429bd5ec0, slot: 4680 +2024-09-22T00:44:49.819463Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4680 +2024-09-22T00:44:49.819484Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4680 +2024-09-22T00:44:49.833210Z INFO fork_choice_control::block_processor: Validating block with slot: 4681 +2024-09-22T00:44:49.834591Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd54ee8025650950e5757a8c9581e2a313ead8ae16abd5e141588e217f0945381, slot: 4681 +2024-09-22T00:44:49.842524Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4681 +2024-09-22T00:44:49.842545Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4681 +2024-09-22T00:44:49.854966Z INFO fork_choice_control::block_processor: Validating block with slot: 5990 +2024-09-22T00:44:49.855539Z INFO fork_choice_control::block_processor: Validating block with slot: 4683 +2024-09-22T00:44:49.857547Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x91a7ce59cc40269bcc9b4d3f3a5358103eb2f4be3504cb9ac640a82cffd292a0, slot: 4683 +2024-09-22T00:44:49.866716Z INFO fork_choice_control::block_processor: Validating block with slot: 6175 +2024-09-22T00:44:49.867656Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4683 +2024-09-22T00:44:49.867668Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4683 +2024-09-22T00:44:49.881662Z INFO fork_choice_control::block_processor: Validating block with slot: 4684 +2024-09-22T00:44:49.882929Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3755d3e2932b642193ad3d6f545b75a47621cfc812c70803fe3cbb14f0c308dc, slot: 4684 +2024-09-22T00:44:49.890238Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4684 +2024-09-22T00:44:49.890258Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4684 +2024-09-22T00:44:49.896077Z INFO fork_choice_control::block_processor: Validating block with slot: 5991 +2024-09-22T00:44:49.904407Z INFO fork_choice_control::block_processor: Validating block with slot: 4685 +2024-09-22T00:44:49.907091Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x31c2599d93e661e229a94d3e26cdbe433e65df8576c2511071a60e94e5df8543, slot: 4685 +2024-09-22T00:44:49.916377Z INFO fork_choice_control::block_processor: Validating block with slot: 5992 +2024-09-22T00:44:49.916384Z INFO fork_choice_control::block_processor: Validating block with slot: 5993 +2024-09-22T00:44:49.916586Z INFO fork_choice_control::block_processor: Validating block with slot: 5995 +2024-09-22T00:44:49.916600Z INFO fork_choice_control::block_processor: Validating block with slot: 5994 +2024-09-22T00:44:49.916878Z INFO fork_choice_control::block_processor: Validating block with slot: 5996 +2024-09-22T00:44:49.918712Z INFO fork_choice_control::block_processor: Validating block with slot: 5997 +2024-09-22T00:44:49.918738Z INFO fork_choice_control::block_processor: Validating block with slot: 5998 +2024-09-22T00:44:49.919002Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4685 +2024-09-22T00:44:49.919031Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4685 +2024-09-22T00:44:49.922632Z INFO fork_choice_control::block_processor: Validating block with slot: 5999 +2024-09-22T00:44:49.934245Z INFO fork_choice_control::block_processor: Validating block with slot: 4686 +2024-09-22T00:44:49.935501Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4b6f5c476fdfac7f9121c8db886019c5f4bb6bf08ba84e14fff4d2f788de4ae4, slot: 4686 +2024-09-22T00:44:49.943745Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4686 +2024-09-22T00:44:49.943766Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4686 +2024-09-22T00:44:49.959697Z INFO fork_choice_control::block_processor: Validating block with slot: 4687 +2024-09-22T00:44:49.960819Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf63bd16cc76f71307484ae725c1e4b4d0e467dfe20b1846c0aeb7eaa65f22f91, slot: 4687 +2024-09-22T00:44:49.967149Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4687 +2024-09-22T00:44:49.967168Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4687 +2024-09-22T00:44:49.981968Z INFO fork_choice_control::block_processor: Validating block with slot: 4688 +2024-09-22T00:44:49.983100Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1319db43ffdb3ae96940114ce1705f2f5af00f9b9ee9beae74c48f4eccee99c4, slot: 4688 +2024-09-22T00:44:49.995471Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4688 +2024-09-22T00:44:49.995493Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4688 +2024-09-22T00:44:50.011643Z INFO fork_choice_control::block_processor: Validating block with slot: 4689 +2024-09-22T00:44:50.012642Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1e9052b270dc84ccd10106a917dc07f27af0ff5b302ddfbca6292f2dec9266cc, slot: 4689 +2024-09-22T00:44:50.020514Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4689 +2024-09-22T00:44:50.020539Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4689 +2024-09-22T00:44:50.037483Z INFO fork_choice_control::block_processor: Validating block with slot: 4690 +2024-09-22T00:44:50.038850Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x69b04110b4cf56cd21147fccf749f952605ef63b1fa3e9177961123024976161, slot: 4690 +2024-09-22T00:44:50.045957Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4690 +2024-09-22T00:44:50.045978Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4690 +2024-09-22T00:44:50.060915Z INFO fork_choice_control::block_processor: Validating block with slot: 4691 +2024-09-22T00:44:50.061880Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9e587cdaf1e6d43763e559c50915605aec12a9ff12e3669d3483b4f0ba33c02d, slot: 4691 +2024-09-22T00:44:50.067227Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4691 +2024-09-22T00:44:50.067242Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4691 +2024-09-22T00:44:50.078932Z INFO fork_choice_control::block_processor: Validating block with slot: 6192 +2024-09-22T00:44:50.083346Z INFO fork_choice_control::block_processor: Validating block with slot: 4692 +2024-09-22T00:44:50.083613Z INFO fork_choice_control::block_processor: Validating block with slot: 6193 +2024-09-22T00:44:50.083704Z INFO fork_choice_control::block_processor: Validating block with slot: 6001 +2024-09-22T00:44:50.085454Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1e2bbd2893e14beda38175a09c9e229f9cb324310035aa140f304988e7a0b97c, slot: 4692 +2024-09-22T00:44:50.105604Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4692 +2024-09-22T00:44:50.105725Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4692 +2024-09-22T00:44:50.106219Z INFO fork_choice_control::block_processor: Validating block with slot: 6194 +2024-09-22T00:44:50.114203Z INFO fork_choice_control::block_processor: Validating block with slot: 6195 +2024-09-22T00:44:50.114290Z INFO fork_choice_control::block_processor: Validating block with slot: 6196 +2024-09-22T00:44:50.114299Z INFO fork_choice_control::block_processor: Validating block with slot: 6198 +2024-09-22T00:44:50.114445Z INFO fork_choice_control::block_processor: Validating block with slot: 6197 +2024-09-22T00:44:50.118294Z INFO fork_choice_control::block_processor: Validating block with slot: 6199 +2024-09-22T00:44:50.118363Z INFO fork_choice_control::block_processor: Validating block with slot: 6200 +2024-09-22T00:44:50.122706Z INFO fork_choice_control::block_processor: Validating block with slot: 4693 +2024-09-22T00:44:50.123708Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x953810f182bf7a1e774cea4c37777104a6575556d43f104d3dde3d6104eed721, slot: 4693 +2024-09-22T00:44:50.129202Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4693 +2024-09-22T00:44:50.129214Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4693 +2024-09-22T00:44:50.145289Z INFO fork_choice_control::block_processor: Validating block with slot: 4694 +2024-09-22T00:44:50.146544Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1f903299c1176b0e91d2e55bff0468bede7a4d0c7c0b586d00e7f19ec08825ea, slot: 4694 +2024-09-22T00:44:50.152933Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4694 +2024-09-22T00:44:50.152951Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4694 +2024-09-22T00:44:50.168875Z INFO fork_choice_control::block_processor: Validating block with slot: 4695 +2024-09-22T00:44:50.170137Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x901603da5903a4893717ffb6e9d1e4882b28ec01db04a2d762e408a7d5ef64db, slot: 4695 +2024-09-22T00:44:50.177205Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4695 +2024-09-22T00:44:50.177225Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4695 +2024-09-22T00:44:50.191672Z INFO fork_choice_control::block_processor: Validating block with slot: 6002 +2024-09-22T00:44:50.199622Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 145, root: 0x2dbe34605cdeee2be6c08d9c47efd770e097c7d5ee3361ed93962a0187ce6573, head slot: 4695, head root: 0x901603da5903a4893717ffb6e9d1e4882b28ec01db04a2d762e408a7d5ef64db) +2024-09-22T00:44:50.199638Z INFO fork_choice_control::block_processor: Validating block with slot: 4696 +2024-09-22T00:44:50.203117Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb5e85c1d11cb2bb00463683a6d37cb9317a78567843eea49921a6acf181b9379, slot: 4696 +2024-09-22T00:44:50.204845Z INFO fork_choice_control::block_processor: Validating block with slot: 6201 +2024-09-22T00:44:50.213056Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4696 +2024-09-22T00:44:50.213080Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4696 +2024-09-22T00:44:50.224484Z INFO fork_choice_control::block_processor: Validating block with slot: 6202 +2024-09-22T00:44:50.224488Z INFO fork_choice_control::block_processor: Validating block with slot: 6203 +2024-09-22T00:44:50.224508Z INFO fork_choice_control::block_processor: Validating block with slot: 6206 +2024-09-22T00:44:50.224501Z INFO fork_choice_control::block_processor: Validating block with slot: 6204 +2024-09-22T00:44:50.224518Z INFO fork_choice_control::block_processor: Validating block with slot: 6003 +2024-09-22T00:44:50.224524Z INFO fork_choice_control::block_processor: Validating block with slot: 6004 +2024-09-22T00:44:50.224575Z INFO fork_choice_control::block_processor: Validating block with slot: 6205 +2024-09-22T00:44:50.226747Z INFO fork_choice_control::block_processor: Validating block with slot: 6005 +2024-09-22T00:44:50.226990Z INFO fork_choice_control::block_processor: Validating block with slot: 6006 +2024-09-22T00:44:50.228154Z INFO fork_choice_control::block_processor: Validating block with slot: 6007 +2024-09-22T00:44:50.228782Z INFO fork_choice_control::block_processor: Validating block with slot: 6208 +2024-09-22T00:44:50.229950Z INFO fork_choice_control::block_processor: Validating block with slot: 6008 +2024-09-22T00:44:50.250038Z INFO fork_choice_control::block_processor: Validating block with slot: 4697 +2024-09-22T00:44:50.251019Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4226f4f6f3a7ac4aed0a46a1a326e992c52cba253db05dbb1bb083d907df5909, slot: 4697 +2024-09-22T00:44:50.258297Z INFO fork_choice_control::block_processor: Validating block with slot: 6009 +2024-09-22T00:44:50.258342Z INFO fork_choice_control::block_processor: Validating block with slot: 6011 +2024-09-22T00:44:50.258354Z INFO fork_choice_control::block_processor: Validating block with slot: 6012 +2024-09-22T00:44:50.258648Z INFO fork_choice_control::block_processor: Validating block with slot: 6013 +2024-09-22T00:44:50.258789Z INFO fork_choice_control::block_processor: Validating block with slot: 6014 +2024-09-22T00:44:50.259279Z INFO fork_choice_control::block_processor: Validating block with slot: 6010 +2024-09-22T00:44:50.259721Z INFO fork_choice_control::block_processor: Validating block with slot: 6015 +2024-09-22T00:44:50.260060Z INFO fork_choice_control::block_processor: Validating block with slot: 6017 +2024-09-22T00:44:50.263796Z INFO fork_choice_control::block_processor: Validating block with slot: 6018 +2024-09-22T00:44:50.264104Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4697 +2024-09-22T00:44:50.264169Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4697 +2024-09-22T00:44:50.282376Z INFO fork_choice_control::block_processor: Validating block with slot: 4698 +2024-09-22T00:44:50.283498Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0bf4d2fff2a867f501396de512fff8419689746021a50a07b7f437edb9d1b20a, slot: 4698 +2024-09-22T00:44:50.291041Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4698 +2024-09-22T00:44:50.291064Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4698 +2024-09-22T00:44:50.292823Z INFO fork_choice_control::block_processor: Validating block with slot: 6211 +2024-09-22T00:44:50.292800Z INFO fork_choice_control::block_processor: Validating block with slot: 6209 +2024-09-22T00:44:50.292826Z INFO fork_choice_control::block_processor: Validating block with slot: 6210 +2024-09-22T00:44:50.292950Z INFO fork_choice_control::block_processor: Validating block with slot: 6212 +2024-09-22T00:44:50.308877Z INFO fork_choice_control::block_processor: Validating block with slot: 4699 +2024-09-22T00:44:50.310852Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x36299e391a48d3c399b8c1ec6546007387223865a278f2d8be7017d980c12f20, slot: 4699 +2024-09-22T00:44:50.319622Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4699 +2024-09-22T00:44:50.319644Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4699 +2024-09-22T00:44:50.331123Z INFO fork_choice_control::block_processor: Validating block with slot: 6020 +2024-09-22T00:44:50.331127Z INFO fork_choice_control::block_processor: Validating block with slot: 6019 +2024-09-22T00:44:50.331166Z INFO fork_choice_control::block_processor: Validating block with slot: 6021 +2024-09-22T00:44:50.332978Z INFO fork_choice_control::block_processor: Validating block with slot: 6023 +2024-09-22T00:44:50.333014Z INFO fork_choice_control::block_processor: Validating block with slot: 6022 +2024-09-22T00:44:50.339346Z INFO fork_choice_control::block_processor: Validating block with slot: 4700 +2024-09-22T00:44:50.340622Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfe06453016d7cedae3923ded3b74c95612b1f3c17a0debe77ef7063bc4f85b59, slot: 4700 +2024-09-22T00:44:50.348482Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4700 +2024-09-22T00:44:50.348500Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4700 +2024-09-22T00:44:50.367119Z INFO fork_choice_control::block_processor: Validating block with slot: 4701 +2024-09-22T00:44:50.368949Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x521be962b7a21bb0f34ed9acc071438346a9398eb8fd79f8dfc755806b36c961, slot: 4701 +2024-09-22T00:44:50.378266Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4701 +2024-09-22T00:44:50.378290Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4701 +2024-09-22T00:44:50.380274Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 4640 +2024-09-22T00:44:50.396126Z INFO fork_choice_control::block_processor: Validating block with slot: 6214 +2024-09-22T00:44:50.396153Z INFO fork_choice_control::block_processor: Validating block with slot: 6213 +2024-09-22T00:44:50.396161Z INFO fork_choice_control::block_processor: Validating block with slot: 6216 +2024-09-22T00:44:50.396252Z INFO fork_choice_control::block_processor: Validating block with slot: 6215 +2024-09-22T00:44:50.398277Z INFO fork_choice_control::block_processor: Validating block with slot: 4702 +2024-09-22T00:44:50.399487Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xde8f16d0da4a0e0d943be533d9755187e3c426ecb62ab44117ac984e425960df, slot: 4702 +2024-09-22T00:44:50.400605Z INFO fork_choice_control::block_processor: Validating block with slot: 6024 +2024-09-22T00:44:50.400612Z INFO fork_choice_control::block_processor: Validating block with slot: 6026 +2024-09-22T00:44:50.407114Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4702 +2024-09-22T00:44:50.407140Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4702 +2024-09-22T00:44:50.425945Z INFO fork_choice_control::block_processor: Validating block with slot: 6217 +2024-09-22T00:44:50.426014Z INFO fork_choice_control::block_processor: Validating block with slot: 6219 +2024-09-22T00:44:50.426027Z INFO fork_choice_control::block_processor: Validating block with slot: 6220 +2024-09-22T00:44:50.426031Z INFO fork_choice_control::block_processor: Validating block with slot: 6221 +2024-09-22T00:44:50.425996Z INFO fork_choice_control::block_processor: Validating block with slot: 6218 +2024-09-22T00:44:50.426795Z INFO fork_choice_control::block_processor: Validating block with slot: 6222 +2024-09-22T00:44:50.427018Z INFO fork_choice_control::block_processor: Validating block with slot: 6223 +2024-09-22T00:44:50.428836Z INFO fork_choice_control::block_processor: Validating block with slot: 6224 +2024-09-22T00:44:50.429216Z INFO fork_choice_control::block_processor: Validating block with slot: 4703 +2024-09-22T00:44:50.430248Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe64fbf9b04ecd785fbfa8877f73c38134c08fa688cd2f91fed44dbc16f006a20, slot: 4703 +2024-09-22T00:44:50.435348Z INFO fork_choice_control::block_processor: Validating block with slot: 6225 +2024-09-22T00:44:50.435366Z INFO fork_choice_control::block_processor: Validating block with slot: 6226 +2024-09-22T00:44:50.435463Z INFO fork_choice_control::block_processor: Validating block with slot: 6227 +2024-09-22T00:44:50.439823Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4703 +2024-09-22T00:44:50.439849Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4703 +2024-09-22T00:44:50.452302Z INFO fork_choice_control::block_processor: Validating block with slot: 6229 +2024-09-22T00:44:50.452344Z INFO fork_choice_control::block_processor: Validating block with slot: 6228 +2024-09-22T00:44:50.460236Z INFO fork_choice_control::block_processor: Validating block with slot: 4704 +2024-09-22T00:44:50.461808Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeef1c54bebacd00b75bb6ad8adfa41b80d5710c3826011e3c2eeec6f286eae75, slot: 4704 +2024-09-22T00:44:50.526901Z INFO fork_choice_control::block_processor: Validating block with slot: 6230 +2024-09-22T00:44:50.527127Z INFO fork_choice_control::block_processor: Validating block with slot: 6231 +2024-09-22T00:44:50.527603Z INFO fork_choice_control::block_processor: Validating block with slot: 6232 +2024-09-22T00:44:50.527682Z INFO fork_choice_control::block_processor: Validating block with slot: 6233 +2024-09-22T00:44:50.528189Z INFO fork_choice_control::block_processor: Validating block with slot: 6236 +2024-09-22T00:44:50.531217Z INFO fork_choice_control::block_processor: Validating block with slot: 6237 +2024-09-22T00:44:50.531444Z INFO fork_choice_control::block_processor: Validating block with slot: 6235 +2024-09-22T00:44:50.538020Z INFO fork_choice_control::block_processor: Validating block with slot: 6027 +2024-09-22T00:44:50.538084Z INFO fork_choice_control::block_processor: Validating block with slot: 6029 +2024-09-22T00:44:50.538107Z INFO fork_choice_control::block_processor: Validating block with slot: 6238 +2024-09-22T00:44:50.538482Z INFO fork_choice_control::block_processor: Validating block with slot: 6239 +2024-09-22T00:44:50.539639Z INFO fork_choice_control::block_processor: Validating block with slot: 6028 +2024-09-22T00:44:50.562187Z INFO fork_choice_control::block_processor: Validating block with slot: 6031 +2024-09-22T00:44:50.562193Z INFO fork_choice_control::block_processor: Validating block with slot: 6032 +2024-09-22T00:44:50.562198Z INFO fork_choice_control::block_processor: Validating block with slot: 6033 +2024-09-22T00:44:50.562236Z INFO fork_choice_control::block_processor: Validating block with slot: 6035 +2024-09-22T00:44:50.562243Z INFO fork_choice_control::block_processor: Validating block with slot: 6034 +2024-09-22T00:44:50.562286Z INFO fork_choice_control::block_processor: Validating block with slot: 6036 +2024-09-22T00:44:50.566008Z INFO fork_choice_control::block_processor: Validating block with slot: 6037 +2024-09-22T00:44:50.566289Z INFO fork_choice_control::block_processor: Validating block with slot: 6038 +2024-09-22T00:44:50.582952Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4704 +2024-09-22T00:44:50.582976Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4704 +2024-09-22T00:44:50.593523Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 4704) +2024-09-22T00:44:50.593656Z INFO fork_choice_control::block_processor: Validating block with slot: 4705 +2024-09-22T00:44:50.596269Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x68076db95d14216a03430fca9271bd2379c66d119de3153400ed3c7fa9060ede, slot: 4705 +2024-09-22T00:44:50.606748Z INFO fork_choice_control::block_processor: Validating block with slot: 6040 +2024-09-22T00:44:50.606747Z INFO fork_choice_control::block_processor: Validating block with slot: 6039 +2024-09-22T00:44:50.606872Z INFO fork_choice_control::block_processor: Validating block with slot: 6041 +2024-09-22T00:44:50.607407Z INFO fork_choice_control::block_processor: Validating block with slot: 6042 +2024-09-22T00:44:50.607423Z INFO fork_choice_control::block_processor: Validating block with slot: 6043 +2024-09-22T00:44:50.607492Z INFO fork_choice_control::block_processor: Validating block with slot: 6044 +2024-09-22T00:44:50.607734Z INFO fork_choice_control::block_processor: Validating block with slot: 6045 +2024-09-22T00:44:50.610876Z INFO fork_choice_control::block_processor: Validating block with slot: 6046 +2024-09-22T00:44:50.610939Z INFO fork_choice_control::block_processor: Validating block with slot: 6047 +2024-09-22T00:44:50.678870Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4705 +2024-09-22T00:44:50.678905Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4705 +2024-09-22T00:44:50.689520Z INFO fork_choice_control::block_processor: Validating block with slot: 4706 +2024-09-22T00:44:50.690828Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9390c27785fcead0d0fe15b3adc15df625e47d4a055149a0820de1bac189bf94, slot: 4706 +2024-09-22T00:44:50.697540Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4706 +2024-09-22T00:44:50.697557Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4706 +2024-09-22T00:44:50.708865Z INFO fork_choice_control::block_processor: Validating block with slot: 4707 +2024-09-22T00:44:50.709860Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc89a680c8e387ac4a8c99ffa0e5e318a1f3d6a45dbd3bc5ed31a3adde22e9cc7, slot: 4707 +2024-09-22T00:44:50.721767Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4707 +2024-09-22T00:44:50.721794Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4707 +2024-09-22T00:44:50.732669Z INFO fork_choice_control::block_processor: Validating block with slot: 4708 +2024-09-22T00:44:50.734210Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x32318e58b468578566165d788ea33eb1048ce83a73f442abe9fa9bcc29722099, slot: 4708 +2024-09-22T00:44:50.742898Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4708 +2024-09-22T00:44:50.742922Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4708 +2024-09-22T00:44:50.753914Z INFO fork_choice_control::block_processor: Validating block with slot: 4709 +2024-09-22T00:44:50.756785Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe2725464120da51589da650407795879315b7622421f7e3772ee89bad07dfdfb, slot: 4709 +2024-09-22T00:44:50.768744Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4709 +2024-09-22T00:44:50.768763Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4709 +2024-09-22T00:44:50.781321Z INFO fork_choice_control::block_processor: Validating block with slot: 4710 +2024-09-22T00:44:50.782660Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x148b4f50a5bc51b0f4cc37e4e19ab77eba14906b5000c7b32588fe87b7266627, slot: 4710 +2024-09-22T00:44:50.790991Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4710 +2024-09-22T00:44:50.791014Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4710 +2024-09-22T00:44:50.804715Z INFO fork_choice_control::block_processor: Validating block with slot: 4711 +2024-09-22T00:44:50.807270Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa5d2045226db63f5cc455b9964a6cf7b6efad69994c72581a8da1564b328703d, slot: 4711 +2024-09-22T00:44:50.818127Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4711 +2024-09-22T00:44:50.818149Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4711 +2024-09-22T00:44:50.831790Z INFO fork_choice_control::block_processor: Validating block with slot: 4712 +2024-09-22T00:44:50.832855Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4a695a54667627bd46981d72264aa6ce23f81d165f41a126315f34b642d5f90d, slot: 4712 +2024-09-22T00:44:50.841686Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4712 +2024-09-22T00:44:50.841706Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4712 +2024-09-22T00:44:50.857461Z INFO fork_choice_control::block_processor: Validating block with slot: 4713 +2024-09-22T00:44:50.859610Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x377f4ab9d8af80dcca2f35d50f0c31155dfb19ba5da03727f20bef75cf4acfdd, slot: 4713 +2024-09-22T00:44:50.883735Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4713 +2024-09-22T00:44:50.883762Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4713 +2024-09-22T00:44:50.900520Z INFO fork_choice_control::block_processor: Validating block with slot: 4715 +2024-09-22T00:44:50.903681Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6575a65d98cdc86752992387104bcb747e80218d99ca320ddc43730815e4e06e, slot: 4715 +2024-09-22T00:44:50.920259Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4715 +2024-09-22T00:44:50.920281Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4715 +2024-09-22T00:44:50.934511Z INFO fork_choice_control::block_processor: Validating block with slot: 4716 +2024-09-22T00:44:50.936354Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb133c0e96af26df7b7a39288b648e61f6881494d2f6e1834aaf8f79a56eb36dc, slot: 4716 +2024-09-22T00:44:50.947896Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4716 +2024-09-22T00:44:50.947918Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4716 +2024-09-22T00:44:50.964417Z INFO fork_choice_control::block_processor: Validating block with slot: 4717 +2024-09-22T00:44:50.965615Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x23dba1bafc9471eb1aa5a1c4c8cdc078be7b958dd90ecf6ce090dd39c9dda572, slot: 4717 +2024-09-22T00:44:50.973989Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4717 +2024-09-22T00:44:50.974015Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4717 +2024-09-22T00:44:50.988475Z INFO fork_choice_control::block_processor: Validating block with slot: 4718 +2024-09-22T00:44:50.989871Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x79dc38f12229048904fd9f97266c4f6e43762a5d0840d056e9d9d90d489e2b60, slot: 4718 +2024-09-22T00:44:50.998158Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4718 +2024-09-22T00:44:50.998181Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4718 +2024-09-22T00:44:51.013005Z INFO fork_choice_control::block_processor: Validating block with slot: 4719 +2024-09-22T00:44:51.014410Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa74b467704c7255a4a271058f7a2f79d461fd9325599ae83b3842d0e8fe0b4db, slot: 4719 +2024-09-22T00:44:51.021364Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4719 +2024-09-22T00:44:51.021382Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4719 +2024-09-22T00:44:51.035722Z INFO fork_choice_control::block_processor: Validating block with slot: 4720 +2024-09-22T00:44:51.036710Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2fb46fb090eebc93bd1173f5b8c60d766b58665ed21efb8582db5c0437f18717, slot: 4720 +2024-09-22T00:44:51.042933Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4720 +2024-09-22T00:44:51.042955Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4720 +2024-09-22T00:44:51.058004Z INFO fork_choice_control::block_processor: Validating block with slot: 4721 +2024-09-22T00:44:51.058988Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x41dc1c2df70975f784278d0c23e3eb1f28894294ae45e06ff1f1487f8ee73abe, slot: 4721 +2024-09-22T00:44:51.065106Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4721 +2024-09-22T00:44:51.065120Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4721 +2024-09-22T00:44:51.079349Z INFO fork_choice_control::block_processor: Validating block with slot: 4722 +2024-09-22T00:44:51.080332Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd9280496a53c81a98628ea23a284fdc76779f8ef9684dc867588d977e91d24e0, slot: 4722 +2024-09-22T00:44:51.085696Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4722 +2024-09-22T00:44:51.085707Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4722 +2024-09-22T00:44:51.100259Z INFO fork_choice_control::block_processor: Validating block with slot: 4723 +2024-09-22T00:44:51.102834Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaa230165c51fbc42fea86f01b5e8ae1377dad01b290c935bf11d26df4d7eb4a7, slot: 4723 +2024-09-22T00:44:51.112616Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4723 +2024-09-22T00:44:51.112635Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4723 +2024-09-22T00:44:51.127830Z INFO fork_choice_control::block_processor: Validating block with slot: 4724 +2024-09-22T00:44:51.128951Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7099567f29a486c5b5b14657d18db554e9748fccbc557e9c13b0927ba4cb4499, slot: 4724 +2024-09-22T00:44:51.135144Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4724 +2024-09-22T00:44:51.135158Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4724 +2024-09-22T00:44:51.150492Z INFO fork_choice_control::block_processor: Validating block with slot: 4725 +2024-09-22T00:44:51.151487Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2ac2fe0e99655e53012f5cc4033a630f6f8e3dee56fea9b49b5fd766e090f99d, slot: 4725 +2024-09-22T00:44:51.157999Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4725 +2024-09-22T00:44:51.158018Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4725 +2024-09-22T00:44:51.173682Z INFO fork_choice_control::block_processor: Validating block with slot: 4726 +2024-09-22T00:44:51.174820Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf30165b52bf49f6a5817e0f47bdb7e940010aad1f1abb386016b3a9730eb024d, slot: 4726 +2024-09-22T00:44:51.180654Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4726 +2024-09-22T00:44:51.180666Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4726 +2024-09-22T00:44:51.196320Z INFO fork_choice_control::block_processor: Validating block with slot: 4727 +2024-09-22T00:44:51.197287Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdf5a05a407a08a94b8c90b06d1ced82de0f2092327c7ef6b7ce57b31cf082159, slot: 4727 +2024-09-22T00:44:51.203254Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4727 +2024-09-22T00:44:51.203272Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4727 +2024-09-22T00:44:51.224004Z INFO fork_choice_control::block_processor: Validating block with slot: 4728 +2024-09-22T00:44:51.224010Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 146, root: 0x3702e5c82ab38cddeed7734a9d118ddee9ef20be0314b0f3e6f44c23d98c0cdc, head slot: 4727, head root: 0xdf5a05a407a08a94b8c90b06d1ced82de0f2092327c7ef6b7ce57b31cf082159) +2024-09-22T00:44:51.225135Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x25066cb7261a88cf64753a36b937b6a74657189c8b8d826887319231bd85d772, slot: 4728 +2024-09-22T00:44:51.232100Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4728 +2024-09-22T00:44:51.232119Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4728 +2024-09-22T00:44:51.248143Z INFO fork_choice_control::block_processor: Validating block with slot: 4729 +2024-09-22T00:44:51.250136Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdc8b8421a360828177e03492b79bbb5a77bb6cff29c419f69a7b6f2327bf3517, slot: 4729 +2024-09-22T00:44:51.260743Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4729 +2024-09-22T00:44:51.260765Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4729 +2024-09-22T00:44:51.277326Z INFO fork_choice_control::block_processor: Validating block with slot: 4730 +2024-09-22T00:44:51.278311Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcf9d2eaa1544dd33426ad0fcbb25e5110cf257cffd8b6e365a5e5a85fec336cd, slot: 4730 +2024-09-22T00:44:51.284769Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4730 +2024-09-22T00:44:51.284788Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4730 +2024-09-22T00:44:51.302331Z INFO fork_choice_control::block_processor: Validating block with slot: 4731 +2024-09-22T00:44:51.304766Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3c1f4d00da88cf28fc84419f9f698e5efa65116162a6da92ebff0ab80a7d77ae, slot: 4731 +2024-09-22T00:44:51.306563Z INFO fork_choice_control::block_processor: Validating block with slot: 6240 +2024-09-22T00:44:51.311307Z INFO fork_choice_control::block_processor: Validating block with slot: 6241 +2024-09-22T00:44:51.316474Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4731 +2024-09-22T00:44:51.316489Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4731 +2024-09-22T00:44:51.335131Z INFO fork_choice_control::block_processor: Validating block with slot: 4733 +2024-09-22T00:44:51.337959Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x422cf87942f87ff854ed46e68ce2185c1b101f692f0b4c081f183b552146a599, slot: 4733 +2024-09-22T00:44:51.344355Z INFO fork_choice_control::block_processor: Validating block with slot: 6242 +2024-09-22T00:44:51.344360Z INFO fork_choice_control::block_processor: Validating block with slot: 6243 +2024-09-22T00:44:51.344379Z INFO fork_choice_control::block_processor: Validating block with slot: 6244 +2024-09-22T00:44:51.344406Z INFO fork_choice_control::block_processor: Validating block with slot: 6245 +2024-09-22T00:44:51.344704Z INFO fork_choice_control::block_processor: Validating block with slot: 6246 +2024-09-22T00:44:51.344774Z INFO fork_choice_control::block_processor: Validating block with slot: 6247 +2024-09-22T00:44:51.345339Z INFO fork_choice_control::block_processor: Validating block with slot: 6248 +2024-09-22T00:44:51.346305Z INFO fork_choice_control::block_processor: Validating block with slot: 6249 +2024-09-22T00:44:51.349554Z INFO fork_choice_control::block_processor: Validating block with slot: 6250 +2024-09-22T00:44:51.351211Z INFO fork_choice_control::block_processor: Validating block with slot: 6251 +2024-09-22T00:44:51.351457Z INFO fork_choice_control::block_processor: Validating block with slot: 6252 +2024-09-22T00:44:51.360181Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 4672 +2024-09-22T00:44:51.363351Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4733 +2024-09-22T00:44:51.363367Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4733 +2024-09-22T00:44:51.375299Z INFO fork_choice_control::block_processor: Validating block with slot: 6253 +2024-09-22T00:44:51.375363Z INFO fork_choice_control::block_processor: Validating block with slot: 6255 +2024-09-22T00:44:51.375356Z INFO fork_choice_control::block_processor: Validating block with slot: 6254 +2024-09-22T00:44:51.376353Z INFO fork_choice_control::block_processor: Validating block with slot: 6256 +2024-09-22T00:44:51.376695Z INFO fork_choice_control::block_processor: Validating block with slot: 6257 +2024-09-22T00:44:51.377163Z INFO fork_choice_control::block_processor: Validating block with slot: 6258 +2024-09-22T00:44:51.377186Z INFO fork_choice_control::block_processor: Validating block with slot: 6259 +2024-09-22T00:44:51.377514Z INFO fork_choice_control::block_processor: Validating block with slot: 6260 +2024-09-22T00:44:51.378179Z INFO fork_choice_control::block_processor: Validating block with slot: 6261 +2024-09-22T00:44:51.378523Z INFO fork_choice_control::block_processor: Validating block with slot: 6262 +2024-09-22T00:44:51.379081Z INFO fork_choice_control::block_processor: Validating block with slot: 6263 +2024-09-22T00:44:51.379533Z INFO fork_choice_control::block_processor: Validating block with slot: 6264 +2024-09-22T00:44:51.381027Z INFO fork_choice_control::block_processor: Validating block with slot: 6265 +2024-09-22T00:44:51.381336Z INFO fork_choice_control::block_processor: Validating block with slot: 6270 +2024-09-22T00:44:51.381476Z INFO fork_choice_control::block_processor: Validating block with slot: 6266 +2024-09-22T00:44:51.382118Z INFO fork_choice_control::block_processor: Validating block with slot: 6271 +2024-09-22T00:44:51.382713Z INFO fork_choice_control::block_processor: Validating block with slot: 6267 +2024-09-22T00:44:51.383037Z INFO fork_choice_control::block_processor: Validating block with slot: 6268 +2024-09-22T00:44:51.383339Z INFO fork_choice_control::block_processor: Validating block with slot: 6269 +2024-09-22T00:44:51.387830Z INFO fork_choice_control::block_processor: Validating block with slot: 4734 +2024-09-22T00:44:51.389028Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x416d30a247b3be048e4e79f159118b6cc1a72f270bd801ee3503ddf4d8b44b0a, slot: 4734 +2024-09-22T00:44:51.398904Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4734 +2024-09-22T00:44:51.398928Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4734 +2024-09-22T00:44:51.418217Z INFO fork_choice_control::block_processor: Validating block with slot: 4735 +2024-09-22T00:44:51.420900Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9daa1d67fd4e97d8ed6c5982a276fe34bda85e432884844501f91b9080eeb97b, slot: 4735 +2024-09-22T00:44:51.433943Z INFO fork_choice_control::block_processor: Validating block with slot: 6272 +2024-09-22T00:44:51.434048Z INFO fork_choice_control::block_processor: Validating block with slot: 6273 +2024-09-22T00:44:51.434597Z INFO fork_choice_control::block_processor: Validating block with slot: 6274 +2024-09-22T00:44:51.434932Z INFO fork_choice_control::block_processor: Validating block with slot: 6275 +2024-09-22T00:44:51.435297Z INFO fork_choice_control::block_processor: Validating block with slot: 6276 +2024-09-22T00:44:51.436107Z INFO fork_choice_control::block_processor: Validating block with slot: 6277 +2024-09-22T00:44:51.436123Z INFO fork_choice_control::block_processor: Validating block with slot: 6278 +2024-09-22T00:44:51.437679Z INFO fork_choice_control::block_processor: Validating block with slot: 6279 +2024-09-22T00:44:51.438096Z INFO fork_choice_control::block_processor: Validating block with slot: 6282 +2024-09-22T00:44:51.438240Z INFO fork_choice_control::block_processor: Validating block with slot: 6283 +2024-09-22T00:44:51.438256Z INFO fork_choice_control::block_processor: Validating block with slot: 6280 +2024-09-22T00:44:51.439181Z INFO fork_choice_control::block_processor: Validating block with slot: 6284 +2024-09-22T00:44:51.439253Z INFO fork_choice_control::block_processor: Validating block with slot: 6286 +2024-09-22T00:44:51.439255Z INFO fork_choice_control::block_processor: Validating block with slot: 6285 +2024-09-22T00:44:51.439397Z INFO fork_choice_control::block_processor: Validating block with slot: 6287 +2024-09-22T00:44:51.440659Z INFO fork_choice_control::block_processor: Validating block with slot: 6288 +2024-09-22T00:44:51.440986Z INFO fork_choice_control::block_processor: Validating block with slot: 6289 +2024-09-22T00:44:51.441260Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4735 +2024-09-22T00:44:51.441345Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4735 +2024-09-22T00:44:51.441364Z INFO fork_choice_control::block_processor: Validating block with slot: 6291 +2024-09-22T00:44:51.442001Z INFO fork_choice_control::block_processor: Validating block with slot: 6292 +2024-09-22T00:44:51.442376Z INFO fork_choice_control::block_processor: Validating block with slot: 6293 +2024-09-22T00:44:51.443008Z INFO fork_choice_control::block_processor: Validating block with slot: 6294 +2024-09-22T00:44:51.443885Z INFO fork_choice_control::block_processor: Validating block with slot: 6295 +2024-09-22T00:44:51.444323Z INFO fork_choice_control::block_processor: Validating block with slot: 6296 +2024-09-22T00:44:51.444477Z INFO fork_choice_control::block_processor: Validating block with slot: 6290 +2024-09-22T00:44:51.444510Z INFO fork_choice_control::block_processor: Validating block with slot: 6281 +2024-09-22T00:44:51.444568Z INFO fork_choice_control::block_processor: Validating block with slot: 6297 +2024-09-22T00:44:51.445132Z INFO fork_choice_control::block_processor: Validating block with slot: 6299 +2024-09-22T00:44:51.445710Z INFO fork_choice_control::block_processor: Validating block with slot: 6300 +2024-09-22T00:44:51.446882Z INFO fork_choice_control::block_processor: Validating block with slot: 6301 +2024-09-22T00:44:51.447199Z INFO fork_choice_control::block_processor: Validating block with slot: 6302 +2024-09-22T00:44:51.447599Z INFO fork_choice_control::block_processor: Validating block with slot: 6432 +2024-09-22T00:44:51.449338Z INFO fork_choice_control::block_processor: Validating block with slot: 6298 +2024-09-22T00:44:51.451243Z INFO fork_choice_control::block_processor: Validating block with slot: 6433 +2024-09-22T00:44:51.451284Z INFO fork_choice_control::block_processor: Validating block with slot: 6436 +2024-09-22T00:44:51.451290Z INFO fork_choice_control::block_processor: Validating block with slot: 6435 +2024-09-22T00:44:51.451506Z INFO fork_choice_control::block_processor: Validating block with slot: 6434 +2024-09-22T00:44:51.451807Z INFO fork_choice_control::block_processor: Validating block with slot: 6437 +2024-09-22T00:44:51.451890Z INFO fork_choice_control::block_processor: Validating block with slot: 6438 +2024-09-22T00:44:51.452527Z INFO fork_choice_control::block_processor: Validating block with slot: 6439 +2024-09-22T00:44:51.468143Z INFO fork_choice_control::block_processor: Validating block with slot: 4736 +2024-09-22T00:44:51.469475Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4b4759b0b25f01b2735de12450f399839ac6621ed5a0538b06caf11eb91fbb32, slot: 4736 +2024-09-22T00:44:51.476043Z INFO fork_choice_control::block_processor: Validating block with slot: 6304 +2024-09-22T00:44:51.476338Z INFO fork_choice_control::block_processor: Validating block with slot: 6305 +2024-09-22T00:44:51.476458Z INFO fork_choice_control::block_processor: Validating block with slot: 6306 +2024-09-22T00:44:51.476947Z INFO fork_choice_control::block_processor: Validating block with slot: 6307 +2024-09-22T00:44:51.477063Z INFO fork_choice_control::block_processor: Validating block with slot: 6308 +2024-09-22T00:44:51.481763Z INFO fork_choice_control::block_processor: Validating block with slot: 6309 +2024-09-22T00:44:51.495876Z INFO fork_choice_control::block_processor: Validating block with slot: 6310 +2024-09-22T00:44:51.497394Z INFO fork_choice_control::block_processor: Validating block with slot: 6311 +2024-09-22T00:44:51.497548Z INFO fork_choice_control::block_processor: Validating block with slot: 6312 +2024-09-22T00:44:51.499081Z INFO fork_choice_control::block_processor: Validating block with slot: 6315 +2024-09-22T00:44:51.500288Z INFO fork_choice_control::block_processor: Validating block with slot: 6314 +2024-09-22T00:44:51.500354Z INFO fork_choice_control::block_processor: Validating block with slot: 6440 +2024-09-22T00:44:51.500818Z INFO fork_choice_control::block_processor: Validating block with slot: 6441 +2024-09-22T00:44:51.527180Z INFO fork_choice_control::block_processor: Validating block with slot: 6442 +2024-09-22T00:44:51.527314Z INFO fork_choice_control::block_processor: Validating block with slot: 6443 +2024-09-22T00:44:51.533582Z INFO fork_choice_control::block_processor: Validating block with slot: 6445 +2024-09-22T00:44:51.533590Z INFO fork_choice_control::block_processor: Validating block with slot: 6444 +2024-09-22T00:44:51.551340Z INFO fork_choice_control::block_processor: Validating block with slot: 6320 +2024-09-22T00:44:51.551365Z INFO fork_choice_control::block_processor: Validating block with slot: 6317 +2024-09-22T00:44:51.551417Z INFO fork_choice_control::block_processor: Validating block with slot: 6318 +2024-09-22T00:44:51.551430Z INFO fork_choice_control::block_processor: Validating block with slot: 6319 +2024-09-22T00:44:51.551494Z INFO fork_choice_control::block_processor: Validating block with slot: 6316 +2024-09-22T00:44:51.553637Z INFO fork_choice_control::block_processor: Validating block with slot: 6321 +2024-09-22T00:44:51.553871Z INFO fork_choice_control::block_processor: Validating block with slot: 6322 +2024-09-22T00:44:51.564730Z INFO fork_choice_control::block_processor: Validating block with slot: 6323 +2024-09-22T00:44:51.564727Z INFO fork_choice_control::block_processor: Validating block with slot: 6324 +2024-09-22T00:44:51.564735Z INFO fork_choice_control::block_processor: Validating block with slot: 6446 +2024-09-22T00:44:51.564755Z INFO fork_choice_control::block_processor: Validating block with slot: 6449 +2024-09-22T00:44:51.564772Z INFO fork_choice_control::block_processor: Validating block with slot: 6450 +2024-09-22T00:44:51.564878Z INFO fork_choice_control::block_processor: Validating block with slot: 6448 +2024-09-22T00:44:51.565605Z INFO fork_choice_control::block_processor: Validating block with slot: 6447 +2024-09-22T00:44:51.572529Z INFO fork_choice_control::block_processor: Validating block with slot: 6452 +2024-09-22T00:44:51.572523Z INFO fork_choice_control::block_processor: Validating block with slot: 6303 +2024-09-22T00:44:51.572536Z INFO fork_choice_control::block_processor: Validating block with slot: 6454 +2024-09-22T00:44:51.572556Z INFO fork_choice_control::block_processor: Validating block with slot: 6453 +2024-09-22T00:44:51.572622Z INFO fork_choice_control::block_processor: Validating block with slot: 6455 +2024-09-22T00:44:51.591682Z INFO fork_choice_control::block_processor: Validating block with slot: 6325 +2024-09-22T00:44:51.591759Z INFO fork_choice_control::block_processor: Validating block with slot: 6326 +2024-09-22T00:44:51.592081Z INFO fork_choice_control::block_processor: Validating block with slot: 6327 +2024-09-22T00:44:51.592204Z INFO fork_choice_control::block_processor: Validating block with slot: 6329 +2024-09-22T00:44:51.592210Z INFO fork_choice_control::block_processor: Validating block with slot: 6330 +2024-09-22T00:44:51.593218Z INFO fork_choice_control::block_processor: Validating block with slot: 6331 +2024-09-22T00:44:51.595166Z INFO fork_choice_control::block_processor: Validating block with slot: 6332 +2024-09-22T00:44:51.595622Z INFO fork_choice_control::block_processor: Validating block with slot: 6333 +2024-09-22T00:44:51.596182Z INFO fork_choice_control::block_processor: Validating block with slot: 6456 +2024-09-22T00:44:51.596690Z INFO fork_choice_control::block_processor: Validating block with slot: 6457 +2024-09-22T00:44:51.604605Z INFO fork_choice_control::block_processor: Validating block with slot: 6459 +2024-09-22T00:44:51.604602Z INFO fork_choice_control::block_processor: Validating block with slot: 6458 +2024-09-22T00:44:51.604653Z INFO fork_choice_control::block_processor: Validating block with slot: 6460 +2024-09-22T00:44:51.605002Z INFO fork_choice_control::block_processor: Validating block with slot: 6461 +2024-09-22T00:44:51.605704Z INFO fork_choice_control::block_processor: Validating block with slot: 6462 +2024-09-22T00:44:51.605741Z INFO fork_choice_control::block_processor: Validating block with slot: 6463 +2024-09-22T00:44:51.607105Z INFO fork_choice_control::block_processor: Validating block with slot: 6464 +2024-09-22T00:44:51.621576Z INFO fork_choice_control::block_processor: Validating block with slot: 6335 +2024-09-22T00:44:51.621584Z INFO fork_choice_control::block_processor: Validating block with slot: 6337 +2024-09-22T00:44:51.621627Z INFO fork_choice_control::block_processor: Validating block with slot: 6340 +2024-09-22T00:44:51.621632Z INFO fork_choice_control::block_processor: Validating block with slot: 6334 +2024-09-22T00:44:51.621788Z INFO fork_choice_control::block_processor: Validating block with slot: 6341 +2024-09-22T00:44:51.622030Z INFO fork_choice_control::block_processor: Validating block with slot: 6339 +2024-09-22T00:44:51.622812Z INFO fork_choice_control::block_processor: Validating block with slot: 6342 +2024-09-22T00:44:51.622809Z INFO fork_choice_control::block_processor: Validating block with slot: 6338 +2024-09-22T00:44:51.623055Z INFO fork_choice_control::block_processor: Validating block with slot: 6343 +2024-09-22T00:44:51.631863Z INFO fork_choice_control::block_processor: Validating block with slot: 6465 +2024-09-22T00:44:51.631979Z INFO fork_choice_control::block_processor: Validating block with slot: 6466 +2024-09-22T00:44:51.644322Z INFO fork_choice_control::block_processor: Validating block with slot: 6471 +2024-09-22T00:44:51.644355Z INFO fork_choice_control::block_processor: Validating block with slot: 6470 +2024-09-22T00:44:51.644382Z INFO fork_choice_control::block_processor: Validating block with slot: 6472 +2024-09-22T00:44:51.644392Z INFO fork_choice_control::block_processor: Validating block with slot: 6468 +2024-09-22T00:44:51.644486Z INFO fork_choice_control::block_processor: Validating block with slot: 6473 +2024-09-22T00:44:51.645363Z INFO fork_choice_control::block_processor: Validating block with slot: 6474 +2024-09-22T00:44:51.645380Z INFO fork_choice_control::block_processor: Validating block with slot: 6469 +2024-09-22T00:44:51.645539Z INFO fork_choice_control::block_processor: Validating block with slot: 6467 +2024-09-22T00:44:51.646665Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4736 +2024-09-22T00:44:51.646676Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4736 +2024-09-22T00:44:51.658894Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 4736) +2024-09-22T00:44:51.659080Z INFO fork_choice_control::block_processor: Validating block with slot: 4737 +2024-09-22T00:44:51.660196Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x24c7acbbdd47acc0e8eb926f6a984547b62e836be844dabc7668f41d87a62d3d, slot: 4737 +2024-09-22T00:44:51.663131Z INFO fork_choice_control::block_processor: Validating block with slot: 6346 +2024-09-22T00:44:51.663161Z INFO fork_choice_control::block_processor: Validating block with slot: 6347 +2024-09-22T00:44:51.663289Z INFO fork_choice_control::block_processor: Validating block with slot: 6345 +2024-09-22T00:44:51.736160Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4737 +2024-09-22T00:44:51.736182Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4737 +2024-09-22T00:44:51.747227Z INFO fork_choice_control::block_processor: Validating block with slot: 4738 +2024-09-22T00:44:51.748210Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8d14020ee7ce938b499a40a71729c6f542fa8a882efb30beec54796212ad0a24, slot: 4738 +2024-09-22T00:44:51.753918Z INFO fork_choice_control::block_processor: Validating block with slot: 6476 +2024-09-22T00:44:51.753924Z INFO fork_choice_control::block_processor: Validating block with slot: 6475 +2024-09-22T00:44:51.755356Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4738 +2024-09-22T00:44:51.755368Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4738 +2024-09-22T00:44:51.766981Z INFO fork_choice_control::block_processor: Validating block with slot: 4739 +2024-09-22T00:44:51.768588Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7e792c8b49e0ac1dfb77ce72a6377911ee7d4ffa482a0c554a0f256b7cefd7d9, slot: 4739 +2024-09-22T00:44:51.769400Z INFO fork_choice_control::block_processor: Validating block with slot: 6479 +2024-09-22T00:44:51.769407Z INFO fork_choice_control::block_processor: Validating block with slot: 6480 +2024-09-22T00:44:51.769427Z INFO fork_choice_control::block_processor: Validating block with slot: 6477 +2024-09-22T00:44:51.769433Z INFO fork_choice_control::block_processor: Validating block with slot: 6478 +2024-09-22T00:44:51.778450Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4739 +2024-09-22T00:44:51.778470Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4739 +2024-09-22T00:44:51.790179Z INFO fork_choice_control::block_processor: Validating block with slot: 6348 +2024-09-22T00:44:51.791357Z INFO fork_choice_control::block_processor: Validating block with slot: 4740 +2024-09-22T00:44:51.795332Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x85f02de3cb51ceaf08fe04cfa31b4b4fa0ab9c341bdab477576176815bf25753, slot: 4740 +2024-09-22T00:44:51.800252Z INFO fork_choice_control::block_processor: Validating block with slot: 6349 +2024-09-22T00:44:51.800285Z INFO fork_choice_control::block_processor: Validating block with slot: 6350 +2024-09-22T00:44:51.800721Z INFO fork_choice_control::block_processor: Validating block with slot: 6351 +2024-09-22T00:44:51.801038Z INFO fork_choice_control::block_processor: Validating block with slot: 6352 +2024-09-22T00:44:51.801417Z INFO fork_choice_control::block_processor: Validating block with slot: 6481 +2024-09-22T00:44:51.805511Z INFO fork_choice_control::block_processor: Validating block with slot: 6353 +2024-09-22T00:44:51.805566Z INFO fork_choice_control::block_processor: Validating block with slot: 6482 +2024-09-22T00:44:51.807682Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4740 +2024-09-22T00:44:51.807736Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4740 +2024-09-22T00:44:51.808422Z INFO fork_choice_control::block_processor: Validating block with slot: 6354 +2024-09-22T00:44:51.808452Z INFO fork_choice_control::block_processor: Validating block with slot: 6483 +2024-09-22T00:44:51.818470Z INFO fork_choice_control::block_processor: Validating block with slot: 6484 +2024-09-22T00:44:51.818504Z INFO fork_choice_control::block_processor: Validating block with slot: 6485 +2024-09-22T00:44:51.818530Z INFO fork_choice_control::block_processor: Validating block with slot: 6486 +2024-09-22T00:44:51.818659Z INFO fork_choice_control::block_processor: Validating block with slot: 6355 +2024-09-22T00:44:51.820872Z INFO fork_choice_control::block_processor: Validating block with slot: 6487 +2024-09-22T00:44:51.820895Z INFO fork_choice_control::block_processor: Validating block with slot: 6356 +2024-09-22T00:44:51.822619Z INFO fork_choice_control::block_processor: Validating block with slot: 6357 +2024-09-22T00:44:51.822911Z INFO fork_choice_control::block_processor: Validating block with slot: 6358 +2024-09-22T00:44:51.823274Z INFO fork_choice_control::block_processor: Validating block with slot: 6359 +2024-09-22T00:44:51.825864Z INFO fork_choice_control::block_processor: Validating block with slot: 4741 +2024-09-22T00:44:51.826910Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7a2f06fb0aea2d78e104b1481439b6f14ffa166d7cff6e8d06f9bf9b7c65d792, slot: 4741 +2024-09-22T00:44:51.829175Z INFO fork_choice_control::block_processor: Validating block with slot: 6488 +2024-09-22T00:44:51.832643Z INFO fork_choice_control::block_processor: Validating block with slot: 6360 +2024-09-22T00:44:51.833049Z INFO fork_choice_control::block_processor: Validating block with slot: 6489 +2024-09-22T00:44:51.838113Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4741 +2024-09-22T00:44:51.838136Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4741 +2024-09-22T00:44:51.850403Z INFO fork_choice_control::block_processor: Validating block with slot: 6361 +2024-09-22T00:44:51.850412Z INFO fork_choice_control::block_processor: Validating block with slot: 6492 +2024-09-22T00:44:51.850427Z INFO fork_choice_control::block_processor: Validating block with slot: 6362 +2024-09-22T00:44:51.850443Z INFO fork_choice_control::block_processor: Validating block with slot: 6490 +2024-09-22T00:44:51.850485Z INFO fork_choice_control::block_processor: Validating block with slot: 6493 +2024-09-22T00:44:51.850709Z INFO fork_choice_control::block_processor: Validating block with slot: 6491 +2024-09-22T00:44:51.851386Z INFO fork_choice_control::block_processor: Validating block with slot: 6494 +2024-09-22T00:44:51.851526Z INFO fork_choice_control::block_processor: Validating block with slot: 6495 +2024-09-22T00:44:51.851689Z INFO fork_choice_control::block_processor: Validating block with slot: 6363 +2024-09-22T00:44:51.852543Z INFO fork_choice_control::block_processor: Validating block with slot: 6364 +2024-09-22T00:44:51.852700Z INFO fork_choice_control::block_processor: Validating block with slot: 6365 +2024-09-22T00:44:51.852708Z INFO fork_choice_control::block_processor: Validating block with slot: 6366 +2024-09-22T00:44:51.853725Z INFO fork_choice_control::block_processor: Validating block with slot: 6367 +2024-09-22T00:44:51.854359Z INFO fork_choice_control::block_processor: Validating block with slot: 4742 +2024-09-22T00:44:51.855672Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdee1d82d03fe33cb93db6f9dc014352cb5ac71bd0c23ab8dab6a235ee18a38c6, slot: 4742 +2024-09-22T00:44:51.861970Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4742 +2024-09-22T00:44:51.861990Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4742 +2024-09-22T00:44:51.874418Z INFO fork_choice_control::block_processor: Validating block with slot: 4743 +2024-09-22T00:44:51.875403Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeaaadf9ed6432d86a9f7bb5478709603587287b974a2903ff02bcf1c03a5ffe6, slot: 4743 +2024-09-22T00:44:51.881160Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4743 +2024-09-22T00:44:51.881177Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4743 +2024-09-22T00:44:51.893484Z INFO fork_choice_control::block_processor: Validating block with slot: 4744 +2024-09-22T00:44:51.894445Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x37b64646cba1f2b6fb322acf8d849a2acd4f8dbd512b2ad7baa2586d8381bfbe, slot: 4744 +2024-09-22T00:44:51.900130Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4744 +2024-09-22T00:44:51.900144Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4744 +2024-09-22T00:44:51.913071Z INFO fork_choice_control::block_processor: Validating block with slot: 4745 +2024-09-22T00:44:51.914195Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa40aa8d31cc5c7b81abeb0eedf4fcdfba93d8211c22f2ceacf52afa089da553f, slot: 4745 +2024-09-22T00:44:51.920460Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4745 +2024-09-22T00:44:51.920478Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4745 +2024-09-22T00:44:51.933164Z INFO fork_choice_control::block_processor: Validating block with slot: 4746 +2024-09-22T00:44:51.934137Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbe07b145933bca8d238286633b40fb93f1b061f40ffa791184eed67a7881927a, slot: 4746 +2024-09-22T00:44:51.940065Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4746 +2024-09-22T00:44:51.940091Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4746 +2024-09-22T00:44:51.952491Z INFO fork_choice_control::block_processor: Validating block with slot: 4747 +2024-09-22T00:44:51.954302Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbbb903ee42d7c8f7f39bfabb8a481dc2f4cb3e1d5a80a16b42bd7f84a5aecef3, slot: 4747 +2024-09-22T00:44:51.962161Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4747 +2024-09-22T00:44:51.962183Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4747 +2024-09-22T00:44:51.975819Z INFO fork_choice_control::block_processor: Validating block with slot: 4748 +2024-09-22T00:44:51.977897Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x58d1d9863f9b2b7598380de166934f5ff86ce1fc5d3ca21973e947b26f6c44be, slot: 4748 +2024-09-22T00:44:51.986639Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4748 +2024-09-22T00:44:51.986661Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4748 +2024-09-22T00:44:52.000010Z INFO fork_choice_control::block_processor: Validating block with slot: 4749 +2024-09-22T00:44:52.001380Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x74265b0e517e3f079aa877e9bab48ad440820282cdb8459c0dbf4dd0f215d40b, slot: 4749 +2024-09-22T00:44:52.008530Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4749 +2024-09-22T00:44:52.008553Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4749 +2024-09-22T00:44:52.021930Z INFO fork_choice_control::block_processor: Validating block with slot: 4750 +2024-09-22T00:44:52.023557Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5f532841d623546583033d6f5b297860625e69667bd9319ab654e19501b6e1cd, slot: 4750 +2024-09-22T00:44:52.031486Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4750 +2024-09-22T00:44:52.031506Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4750 +2024-09-22T00:44:52.045146Z INFO fork_choice_control::block_processor: Validating block with slot: 4751 +2024-09-22T00:44:52.046257Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x17234904dbacfd19f5bbad1a1c553a05cd228ba8a4b9d72c916eb807af031a1e, slot: 4751 +2024-09-22T00:44:52.052135Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4751 +2024-09-22T00:44:52.052150Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4751 +2024-09-22T00:44:52.066016Z INFO fork_choice_control::block_processor: Validating block with slot: 4752 +2024-09-22T00:44:52.067172Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb5eba7c27710592555cd92ecf4e6ffed72231a0ede484e640abc56a19a3f5934, slot: 4752 +2024-09-22T00:44:52.073985Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4752 +2024-09-22T00:44:52.074647Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4752 +2024-09-22T00:44:52.088995Z INFO fork_choice_control::block_processor: Validating block with slot: 4753 +2024-09-22T00:44:52.090596Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb6bcb7df5e26e66a5c3e8d66b833d0db22417dc842b4153c79de519b0e504c10, slot: 4753 +2024-09-22T00:44:52.098170Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4753 +2024-09-22T00:44:52.098186Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4753 +2024-09-22T00:44:52.112808Z INFO fork_choice_control::block_processor: Validating block with slot: 4754 +2024-09-22T00:44:52.113800Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x10ac03045d24c47fbddc8e5f35fe85bc6f41f45aa1ffced454618f311040de64, slot: 4754 +2024-09-22T00:44:52.120276Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4754 +2024-09-22T00:44:52.120297Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4754 +2024-09-22T00:44:52.134502Z INFO fork_choice_control::block_processor: Validating block with slot: 4755 +2024-09-22T00:44:52.136156Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf6db87ab095679705737acf1c7c3b6720918c9093abf06e0b245f35790d2ad9b, slot: 4755 +2024-09-22T00:44:52.144792Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4755 +2024-09-22T00:44:52.144813Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4755 +2024-09-22T00:44:52.159653Z INFO fork_choice_control::block_processor: Validating block with slot: 4756 +2024-09-22T00:44:52.161308Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5bcdafae9d33ffb3e6fb7691b1f4f08eb5a8cc0fe4a4aa9e2fe2ba8d78d1d5cc, slot: 4756 +2024-09-22T00:44:52.169126Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4756 +2024-09-22T00:44:52.169143Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4756 +2024-09-22T00:44:52.184606Z INFO fork_choice_control::block_processor: Validating block with slot: 4757 +2024-09-22T00:44:52.185569Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc8a013476df367e1195c3ec652da7bb6d7d2012b0136bb29643a66399d9425b7, slot: 4757 +2024-09-22T00:44:52.191308Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4757 +2024-09-22T00:44:52.191330Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4757 +2024-09-22T00:44:52.206030Z INFO fork_choice_control::block_processor: Validating block with slot: 4758 +2024-09-22T00:44:52.207169Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7e3a5616767ac4ff614733cca7e223edf1d4f1ab00895ecd8d5ef1b357b8d97b, slot: 4758 +2024-09-22T00:44:52.213585Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4758 +2024-09-22T00:44:52.213605Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4758 +2024-09-22T00:44:52.228866Z INFO fork_choice_control::block_processor: Validating block with slot: 4759 +2024-09-22T00:44:52.231310Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x707e0079b86c8f4bb9ccad94abf77e4f85ce15fe45479b5a1807e6b2745a0aab, slot: 4759 +2024-09-22T00:44:52.241609Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4759 +2024-09-22T00:44:52.241629Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4759 +2024-09-22T00:44:52.262468Z INFO fork_choice_control::block_processor: Validating block with slot: 4760 +2024-09-22T00:44:52.262495Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 147, root: 0xeef1c54bebacd00b75bb6ad8adfa41b80d5710c3826011e3c2eeec6f286eae75, head slot: 4759, head root: 0x707e0079b86c8f4bb9ccad94abf77e4f85ce15fe45479b5a1807e6b2745a0aab) +2024-09-22T00:44:52.263463Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7062ae6ea548321837d61c40ea83e78a136b64bdfe58084b3525a2f1e78c27b8, slot: 4760 +2024-09-22T00:44:52.269869Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4760 +2024-09-22T00:44:52.269889Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4760 +2024-09-22T00:44:52.286136Z INFO fork_choice_control::block_processor: Validating block with slot: 4761 +2024-09-22T00:44:52.287133Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfda3a32e419f7e533607542707b9e2a5eb142ba6ebe86ac71f38b37d38548351, slot: 4761 +2024-09-22T00:44:52.294553Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4761 +2024-09-22T00:44:52.294573Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4761 +2024-09-22T00:44:52.311385Z INFO fork_choice_control::block_processor: Validating block with slot: 4762 +2024-09-22T00:44:52.313724Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xae10d0188e2278a087b944fe5205126fbdb21456e4273ab11c98db7050a7665f, slot: 4762 +2024-09-22T00:44:52.323396Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4762 +2024-09-22T00:44:52.323423Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4762 +2024-09-22T00:44:52.341387Z INFO fork_choice_control::block_processor: Validating block with slot: 4763 +2024-09-22T00:44:52.342406Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x97e4a1da55dbe7f372b611b4d3cddb8dbace186bee046281b3741ac1f63772c6, slot: 4763 +2024-09-22T00:44:52.349913Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4763 +2024-09-22T00:44:52.349933Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4763 +2024-09-22T00:44:52.366605Z INFO fork_choice_control::block_processor: Validating block with slot: 4764 +2024-09-22T00:44:52.368620Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x12a0cbd5a551dc79b27c7ecd51e03affdcf4c223a339dee25fe3d74222c44f0c, slot: 4764 +2024-09-22T00:44:52.378080Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4764 +2024-09-22T00:44:52.378102Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4764 +2024-09-22T00:44:52.395428Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 4704 +2024-09-22T00:44:52.396324Z INFO fork_choice_control::block_processor: Validating block with slot: 4765 +2024-09-22T00:44:52.397435Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfc5ea3da7735366b100244e829a3c79cd2d8503e82704611317a3172a1414361, slot: 4765 +2024-09-22T00:44:52.404718Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4765 +2024-09-22T00:44:52.404737Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4765 +2024-09-22T00:44:52.424165Z INFO fork_choice_control::block_processor: Validating block with slot: 4766 +2024-09-22T00:44:52.426173Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7812f740b6b8eb0ba750da45e02a960b449bea76bec4a4692440e4ee83dca9e8, slot: 4766 +2024-09-22T00:44:52.435454Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4766 +2024-09-22T00:44:52.435477Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4766 +2024-09-22T00:44:52.454192Z INFO fork_choice_control::block_processor: Validating block with slot: 4767 +2024-09-22T00:44:52.455391Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7113cc2561e47ca9999dc2a141515f708443f410d04e9dd806e02f4a3f8e68d9, slot: 4767 +2024-09-22T00:44:52.465666Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4767 +2024-09-22T00:44:52.465687Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4767 +2024-09-22T00:44:52.485150Z INFO fork_choice_control::block_processor: Validating block with slot: 4768 +2024-09-22T00:44:52.486509Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x48bd7ebfa05db0d998f3cab00aabf6b090bd73eb07d572a08d08ba7891f1097e, slot: 4768 +2024-09-22T00:44:52.583519Z INFO fork_choice_control::block_processor: Validating block with slot: 6624 +2024-09-22T00:44:52.583542Z INFO fork_choice_control::block_processor: Validating block with slot: 6625 +2024-09-22T00:44:52.596104Z INFO fork_choice_control::block_processor: Validating block with slot: 6626 +2024-09-22T00:44:52.596152Z INFO fork_choice_control::block_processor: Validating block with slot: 6627 +2024-09-22T00:44:52.596421Z INFO fork_choice_control::block_processor: Validating block with slot: 6628 +2024-09-22T00:44:52.596523Z INFO fork_choice_control::block_processor: Validating block with slot: 6630 +2024-09-22T00:44:52.596744Z INFO fork_choice_control::block_processor: Validating block with slot: 6629 +2024-09-22T00:44:52.602483Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4768 +2024-09-22T00:44:52.602504Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4768 +2024-09-22T00:44:52.619782Z INFO fork_choice_control::block_processor: Validating block with slot: 6631 +2024-09-22T00:44:52.620030Z INFO fork_choice_control::block_processor: Validating block with slot: 6633 +2024-09-22T00:44:52.620124Z INFO fork_choice_control::block_processor: Validating block with slot: 6632 +2024-09-22T00:44:52.620192Z INFO fork_choice_control::block_processor: Validating block with slot: 6634 +2024-09-22T00:44:52.621674Z INFO fork_choice_control::block_processor: Validating block with slot: 6635 +2024-09-22T00:44:52.628287Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 4768) +2024-09-22T00:44:52.628752Z INFO fork_choice_control::block_processor: Validating block with slot: 4769 +2024-09-22T00:44:52.630036Z INFO fork_choice_control::block_processor: Validating block with slot: 6636 +2024-09-22T00:44:52.630043Z INFO fork_choice_control::block_processor: Validating block with slot: 6637 +2024-09-22T00:44:52.630081Z INFO fork_choice_control::block_processor: Validating block with slot: 6638 +2024-09-22T00:44:52.630204Z INFO fork_choice_control::block_processor: Validating block with slot: 6639 +2024-09-22T00:44:52.630856Z INFO fork_choice_control::block_processor: Validating block with slot: 6640 +2024-09-22T00:44:52.631821Z INFO fork_choice_control::block_processor: Validating block with slot: 6641 +2024-09-22T00:44:52.632299Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc4990100ed824ab57fb5367d4c2b1927737664ec5572ccb82a01605dc2ced8db, slot: 4769 +2024-09-22T00:44:52.670195Z INFO fork_choice_control::block_processor: Validating block with slot: 6642 +2024-09-22T00:44:52.670364Z INFO fork_choice_control::block_processor: Validating block with slot: 6643 +2024-09-22T00:44:52.670425Z INFO fork_choice_control::block_processor: Validating block with slot: 6644 +2024-09-22T00:44:52.670453Z INFO fork_choice_control::block_processor: Validating block with slot: 6645 +2024-09-22T00:44:52.671541Z INFO fork_choice_control::block_processor: Validating block with slot: 6646 +2024-09-22T00:44:52.672552Z INFO fork_choice_control::block_processor: Validating block with slot: 6647 +2024-09-22T00:44:52.674060Z INFO fork_choice_control::block_processor: Validating block with slot: 6648 +2024-09-22T00:44:52.674297Z INFO fork_choice_control::block_processor: Validating block with slot: 6653 +2024-09-22T00:44:52.674312Z INFO fork_choice_control::block_processor: Validating block with slot: 6649 +2024-09-22T00:44:52.675317Z INFO fork_choice_control::block_processor: Validating block with slot: 6654 +2024-09-22T00:44:52.675333Z INFO fork_choice_control::block_processor: Validating block with slot: 6655 +2024-09-22T00:44:52.676965Z INFO fork_choice_control::block_processor: Validating block with slot: 6656 +2024-09-22T00:44:52.676974Z INFO fork_choice_control::block_processor: Validating block with slot: 6652 +2024-09-22T00:44:52.677055Z INFO fork_choice_control::block_processor: Validating block with slot: 6659 +2024-09-22T00:44:52.677945Z INFO fork_choice_control::block_processor: Validating block with slot: 6657 +2024-09-22T00:44:52.677966Z INFO fork_choice_control::block_processor: Validating block with slot: 6650 +2024-09-22T00:44:52.678051Z INFO fork_choice_control::block_processor: Validating block with slot: 6660 +2024-09-22T00:44:52.678967Z INFO fork_choice_control::block_processor: Validating block with slot: 6661 +2024-09-22T00:44:52.679364Z INFO fork_choice_control::block_processor: Validating block with slot: 6662 +2024-09-22T00:44:52.679978Z INFO fork_choice_control::block_processor: Validating block with slot: 6663 +2024-09-22T00:44:52.680331Z INFO fork_choice_control::block_processor: Validating block with slot: 6664 +2024-09-22T00:44:52.681862Z INFO fork_choice_control::block_processor: Validating block with slot: 6651 +2024-09-22T00:44:52.681858Z INFO fork_choice_control::block_processor: Validating block with slot: 6665 +2024-09-22T00:44:52.682158Z INFO fork_choice_control::block_processor: Validating block with slot: 6668 +2024-09-22T00:44:52.682593Z INFO fork_choice_control::block_processor: Validating block with slot: 6669 +2024-09-22T00:44:52.683323Z INFO fork_choice_control::block_processor: Validating block with slot: 6670 +2024-09-22T00:44:52.684653Z INFO fork_choice_control::block_processor: Validating block with slot: 6658 +2024-09-22T00:44:52.685463Z INFO fork_choice_control::block_processor: Validating block with slot: 6667 +2024-09-22T00:44:52.699482Z INFO fork_choice_control::block_processor: Validating block with slot: 6671 +2024-09-22T00:44:52.699493Z INFO fork_choice_control::block_processor: Validating block with slot: 6672 +2024-09-22T00:44:52.700236Z INFO fork_choice_control::block_processor: Validating block with slot: 6673 +2024-09-22T00:44:52.700252Z INFO fork_choice_control::block_processor: Validating block with slot: 6674 +2024-09-22T00:44:52.700686Z INFO fork_choice_control::block_processor: Validating block with slot: 6675 +2024-09-22T00:44:52.701698Z INFO fork_choice_control::block_processor: Validating block with slot: 6688 +2024-09-22T00:44:52.707585Z INFO fork_choice_control::block_processor: Validating block with slot: 6676 +2024-09-22T00:44:52.729874Z INFO fork_choice_control::block_processor: Validating block with slot: 6689 +2024-09-22T00:44:52.729892Z INFO fork_choice_control::block_processor: Validating block with slot: 6677 +2024-09-22T00:44:52.732982Z INFO fork_choice_control::block_processor: Validating block with slot: 6690 +2024-09-22T00:44:52.733924Z INFO fork_choice_control::block_processor: Validating block with slot: 6678 +2024-09-22T00:44:52.746417Z INFO fork_choice_control::block_processor: Validating block with slot: 6691 +2024-09-22T00:44:52.746457Z INFO fork_choice_control::block_processor: Validating block with slot: 6679 +2024-09-22T00:44:52.746485Z INFO fork_choice_control::block_processor: Validating block with slot: 6692 +2024-09-22T00:44:52.746586Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4769 +2024-09-22T00:44:52.746598Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4769 +2024-09-22T00:44:52.748008Z INFO fork_choice_control::block_processor: Validating block with slot: 6680 +2024-09-22T00:44:52.750354Z INFO fork_choice_control::block_processor: Validating block with slot: 6693 +2024-09-22T00:44:52.750709Z INFO fork_choice_control::block_processor: Validating block with slot: 6681 +2024-09-22T00:44:52.760111Z INFO fork_choice_control::block_processor: Validating block with slot: 4770 +2024-09-22T00:44:52.761544Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0933bc255f86998a0c1e546c83b5dce756a0b88bd1b47c8532c2495dbebdbbce, slot: 4770 +2024-09-22T00:44:52.762303Z INFO fork_choice_control::block_processor: Validating block with slot: 6694 +2024-09-22T00:44:52.762313Z INFO fork_choice_control::block_processor: Validating block with slot: 6682 +2024-09-22T00:44:52.762329Z INFO fork_choice_control::block_processor: Validating block with slot: 6695 +2024-09-22T00:44:52.762599Z INFO fork_choice_control::block_processor: Validating block with slot: 6683 +2024-09-22T00:44:52.763788Z INFO fork_choice_control::block_processor: Validating block with slot: 6684 +2024-09-22T00:44:52.764825Z INFO fork_choice_control::block_processor: Validating block with slot: 6685 +2024-09-22T00:44:52.765837Z INFO fork_choice_control::block_processor: Validating block with slot: 6686 +2024-09-22T00:44:52.772840Z INFO fork_choice_control::block_processor: Validating block with slot: 6560 +2024-09-22T00:44:52.772870Z INFO fork_choice_control::block_processor: Validating block with slot: 6561 +2024-09-22T00:44:52.772887Z INFO fork_choice_control::block_processor: Validating block with slot: 6562 +2024-09-22T00:44:52.774444Z INFO fork_choice_control::block_processor: Validating block with slot: 6563 +2024-09-22T00:44:52.774465Z INFO fork_choice_control::block_processor: Validating block with slot: 6564 +2024-09-22T00:44:52.775873Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4770 +2024-09-22T00:44:52.775890Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4770 +2024-09-22T00:44:52.787970Z INFO fork_choice_control::block_processor: Validating block with slot: 4771 +2024-09-22T00:44:52.790479Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x049564a823851c17e60621ea7f995934153bfeb9797daf1514d94ee041aad46e, slot: 4771 +2024-09-22T00:44:52.803436Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4771 +2024-09-22T00:44:52.803457Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4771 +2024-09-22T00:44:52.816143Z INFO fork_choice_control::block_processor: Validating block with slot: 4772 +2024-09-22T00:44:52.817569Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcb6407557fe82a53955c92287b162de0dd42109c4c7a3ff8d62f50e8060f1ecd, slot: 4772 +2024-09-22T00:44:52.825758Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4772 +2024-09-22T00:44:52.825809Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4772 +2024-09-22T00:44:52.827539Z INFO fork_choice_control::block_processor: Validating block with slot: 6565 +2024-09-22T00:44:52.827804Z INFO fork_choice_control::block_processor: Validating block with slot: 6696 +2024-09-22T00:44:52.828852Z INFO fork_choice_control::block_processor: Validating block with slot: 6566 +2024-09-22T00:44:52.829103Z INFO fork_choice_control::block_processor: Validating block with slot: 6697 +2024-09-22T00:44:52.830371Z INFO fork_choice_control::block_processor: Validating block with slot: 6567 +2024-09-22T00:44:52.831059Z INFO fork_choice_control::block_processor: Validating block with slot: 6698 +2024-09-22T00:44:52.831615Z INFO fork_choice_control::block_processor: Validating block with slot: 6568 +2024-09-22T00:44:52.832174Z INFO fork_choice_control::block_processor: Validating block with slot: 6699 +2024-09-22T00:44:52.832861Z INFO fork_choice_control::block_processor: Validating block with slot: 6700 +2024-09-22T00:44:52.833600Z INFO fork_choice_control::block_processor: Validating block with slot: 6701 +2024-09-22T00:44:52.833739Z INFO fork_choice_control::block_processor: Validating block with slot: 6569 +2024-09-22T00:44:52.835149Z INFO fork_choice_control::block_processor: Validating block with slot: 6570 +2024-09-22T00:44:52.836601Z INFO fork_choice_control::block_processor: Validating block with slot: 6571 +2024-09-22T00:44:52.836708Z INFO fork_choice_control::block_processor: Validating block with slot: 6572 +2024-09-22T00:44:52.837081Z INFO fork_choice_control::block_processor: Validating block with slot: 6573 +2024-09-22T00:44:52.838021Z INFO fork_choice_control::block_processor: Validating block with slot: 6574 +2024-09-22T00:44:52.838060Z INFO fork_choice_control::block_processor: Validating block with slot: 6575 +2024-09-22T00:44:52.838242Z INFO fork_choice_control::block_processor: Validating block with slot: 6576 +2024-09-22T00:44:52.838370Z INFO fork_choice_control::block_processor: Validating block with slot: 6577 +2024-09-22T00:44:52.839196Z INFO fork_choice_control::block_processor: Validating block with slot: 6702 +2024-09-22T00:44:52.839404Z INFO fork_choice_control::block_processor: Validating block with slot: 6703 +2024-09-22T00:44:52.839412Z INFO fork_choice_control::block_processor: Validating block with slot: 6704 +2024-09-22T00:44:52.839424Z INFO fork_choice_control::block_processor: Validating block with slot: 6705 +2024-09-22T00:44:52.840649Z INFO fork_choice_control::block_processor: Validating block with slot: 6706 +2024-09-22T00:44:52.841096Z INFO fork_choice_control::block_processor: Validating block with slot: 6707 +2024-09-22T00:44:52.841141Z INFO fork_choice_control::block_processor: Validating block with slot: 6708 +2024-09-22T00:44:52.841672Z INFO fork_choice_control::block_processor: Validating block with slot: 6709 +2024-09-22T00:44:52.842261Z INFO fork_choice_control::block_processor: Validating block with slot: 4773 +2024-09-22T00:44:52.843524Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaebe6fecda161ec6d97b395240997868332d4569222bb84aee3406b6faf403e0, slot: 4773 +2024-09-22T00:44:52.852140Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4773 +2024-09-22T00:44:52.852156Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4773 +2024-09-22T00:44:52.859512Z INFO fork_choice_control::block_processor: Validating block with slot: 6580 +2024-09-22T00:44:52.859535Z INFO fork_choice_control::block_processor: Validating block with slot: 6578 +2024-09-22T00:44:52.859681Z INFO fork_choice_control::block_processor: Validating block with slot: 6579 +2024-09-22T00:44:52.860701Z INFO fork_choice_control::block_processor: Validating block with slot: 6581 +2024-09-22T00:44:52.864618Z INFO fork_choice_control::block_processor: Validating block with slot: 6582 +2024-09-22T00:44:52.864854Z INFO fork_choice_control::block_processor: Validating block with slot: 6710 +2024-09-22T00:44:52.865642Z INFO fork_choice_control::block_processor: Validating block with slot: 6711 +2024-09-22T00:44:52.865796Z INFO fork_choice_control::block_processor: Validating block with slot: 6712 +2024-09-22T00:44:52.866016Z INFO fork_choice_control::block_processor: Validating block with slot: 4774 +2024-09-22T00:44:52.869890Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xad02b0971378d8d518aeaac5999e474286a72981289470fc9810dec695168b0d, slot: 4774 +2024-09-22T00:44:52.880902Z INFO fork_choice_control::block_processor: Validating block with slot: 6713 +2024-09-22T00:44:52.881145Z INFO fork_choice_control::block_processor: Validating block with slot: 6716 +2024-09-22T00:44:52.881250Z INFO fork_choice_control::block_processor: Validating block with slot: 6715 +2024-09-22T00:44:52.882092Z INFO fork_choice_control::block_processor: Validating block with slot: 6717 +2024-09-22T00:44:52.882640Z INFO fork_choice_control::block_processor: Validating block with slot: 6718 +2024-09-22T00:44:52.883110Z INFO fork_choice_control::block_processor: Validating block with slot: 6719 +2024-09-22T00:44:52.885413Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4774 +2024-09-22T00:44:52.885456Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4774 +2024-09-22T00:44:52.900784Z INFO fork_choice_control::block_processor: Validating block with slot: 4775 +2024-09-22T00:44:52.902150Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa601ffb24a5ac381a37aac77ba887ad2a316c9bb598a1d0fcb55f3520b4583ae, slot: 4775 +2024-09-22T00:44:52.911852Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4775 +2024-09-22T00:44:52.911880Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4775 +2024-09-22T00:44:52.925669Z INFO fork_choice_control::block_processor: Validating block with slot: 4776 +2024-09-22T00:44:52.928054Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf3d036071a14e1f611c8bb6df8a367b2c64aff59d71ccee747bc6a5dd30fcd7e, slot: 4776 +2024-09-22T00:44:52.937424Z INFO fork_choice_control::block_processor: Validating block with slot: 6583 +2024-09-22T00:44:52.937576Z INFO fork_choice_control::block_processor: Validating block with slot: 6584 +2024-09-22T00:44:52.937709Z INFO fork_choice_control::block_processor: Validating block with slot: 6585 +2024-09-22T00:44:52.938001Z INFO fork_choice_control::block_processor: Validating block with slot: 6586 +2024-09-22T00:44:52.938936Z INFO fork_choice_control::block_processor: Validating block with slot: 6587 +2024-09-22T00:44:52.939181Z INFO fork_choice_control::block_processor: Validating block with slot: 6588 +2024-09-22T00:44:52.939235Z INFO fork_choice_control::block_processor: Validating block with slot: 6589 +2024-09-22T00:44:52.939705Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4776 +2024-09-22T00:44:52.939733Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4776 +2024-09-22T00:44:52.940745Z INFO fork_choice_control::block_processor: Validating block with slot: 6590 +2024-09-22T00:44:52.941119Z INFO fork_choice_control::block_processor: Validating block with slot: 6720 +2024-09-22T00:44:52.941365Z INFO fork_choice_control::block_processor: Validating block with slot: 6721 +2024-09-22T00:44:52.941927Z INFO fork_choice_control::block_processor: Validating block with slot: 6722 +2024-09-22T00:44:52.943458Z INFO fork_choice_control::block_processor: Validating block with slot: 6723 +2024-09-22T00:44:52.944671Z INFO fork_choice_control::block_processor: Validating block with slot: 6724 +2024-09-22T00:44:52.944764Z INFO fork_choice_control::block_processor: Validating block with slot: 6725 +2024-09-22T00:44:52.945310Z INFO fork_choice_control::block_processor: Validating block with slot: 6726 +2024-09-22T00:44:52.945914Z INFO fork_choice_control::block_processor: Validating block with slot: 6687 +2024-09-22T00:44:52.946138Z INFO fork_choice_control::block_processor: Validating block with slot: 6591 +2024-09-22T00:44:52.946551Z INFO fork_choice_control::block_processor: Validating block with slot: 6592 +2024-09-22T00:44:52.947509Z INFO fork_choice_control::block_processor: Validating block with slot: 6593 +2024-09-22T00:44:52.948085Z INFO fork_choice_control::block_processor: Validating block with slot: 6594 +2024-09-22T00:44:52.948568Z INFO fork_choice_control::block_processor: Validating block with slot: 6595 +2024-09-22T00:44:52.948599Z INFO fork_choice_control::block_processor: Validating block with slot: 6596 +2024-09-22T00:44:52.949160Z INFO fork_choice_control::block_processor: Validating block with slot: 6597 +2024-09-22T00:44:52.950473Z INFO fork_choice_control::block_processor: Validating block with slot: 6598 +2024-09-22T00:44:52.950649Z INFO fork_choice_control::block_processor: Validating block with slot: 6727 +2024-09-22T00:44:52.950696Z INFO fork_choice_control::block_processor: Validating block with slot: 6728 +2024-09-22T00:44:52.955029Z INFO fork_choice_control::block_processor: Validating block with slot: 6729 +2024-09-22T00:44:52.955153Z INFO fork_choice_control::block_processor: Validating block with slot: 6730 +2024-09-22T00:44:52.959293Z INFO fork_choice_control::block_processor: Validating block with slot: 6732 +2024-09-22T00:44:52.959320Z INFO fork_choice_control::block_processor: Validating block with slot: 6731 +2024-09-22T00:44:52.960025Z INFO fork_choice_control::block_processor: Validating block with slot: 4777 +2024-09-22T00:44:52.961126Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9c6a0c4e7b1885321709fb296f6bf15229de2043d0ac46849969fba59586af00, slot: 4777 +2024-09-22T00:44:52.969265Z INFO fork_choice_control::block_processor: Validating block with slot: 6733 +2024-09-22T00:44:52.969337Z INFO fork_choice_control::block_processor: Validating block with slot: 6734 +2024-09-22T00:44:52.969380Z INFO fork_choice_control::block_processor: Validating block with slot: 6599 +2024-09-22T00:44:52.969690Z INFO fork_choice_control::block_processor: Validating block with slot: 6600 +2024-09-22T00:44:52.970511Z INFO fork_choice_control::block_processor: Validating block with slot: 6601 +2024-09-22T00:44:52.970518Z INFO fork_choice_control::block_processor: Validating block with slot: 6602 +2024-09-22T00:44:52.972021Z INFO fork_choice_control::block_processor: Validating block with slot: 6603 +2024-09-22T00:44:52.973239Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4777 +2024-09-22T00:44:52.973284Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4777 +2024-09-22T00:44:52.973334Z INFO fork_choice_control::block_processor: Validating block with slot: 6604 +2024-09-22T00:44:52.974397Z INFO fork_choice_control::block_processor: Validating block with slot: 6605 +2024-09-22T00:44:52.981566Z INFO fork_choice_control::block_processor: Validating block with slot: 6607 +2024-09-22T00:44:52.981568Z INFO fork_choice_control::block_processor: Validating block with slot: 6736 +2024-09-22T00:44:52.988063Z INFO fork_choice_control::block_processor: Validating block with slot: 6738 +2024-09-22T00:44:52.988099Z INFO fork_choice_control::block_processor: Validating block with slot: 6737 +2024-09-22T00:44:52.993096Z INFO fork_choice_control::block_processor: Validating block with slot: 4778 +2024-09-22T00:44:52.996664Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xec548856ace13a8e2e408da77ae471993c8fd1f84c0dd71ee5df90a6870e29b7, slot: 4778 +2024-09-22T00:44:53.008333Z INFO fork_choice_control::block_processor: Validating block with slot: 6739 +2024-09-22T00:44:53.008379Z INFO fork_choice_control::block_processor: Validating block with slot: 6608 +2024-09-22T00:44:53.008558Z INFO fork_choice_control::block_processor: Validating block with slot: 6609 +2024-09-22T00:44:53.008702Z INFO fork_choice_control::block_processor: Validating block with slot: 6610 +2024-09-22T00:44:53.009122Z INFO fork_choice_control::block_processor: Validating block with slot: 6611 +2024-09-22T00:44:53.009623Z INFO fork_choice_control::block_processor: Validating block with slot: 6612 +2024-09-22T00:44:53.010041Z INFO fork_choice_control::block_processor: Validating block with slot: 6613 +2024-09-22T00:44:53.011492Z INFO fork_choice_control::block_processor: Validating block with slot: 6614 +2024-09-22T00:44:53.012267Z INFO fork_choice_control::block_processor: Validating block with slot: 6615 +2024-09-22T00:44:53.012833Z INFO fork_choice_control::block_processor: Validating block with slot: 6616 +2024-09-22T00:44:53.013305Z INFO fork_choice_control::block_processor: Validating block with slot: 6617 +2024-09-22T00:44:53.013504Z INFO fork_choice_control::block_processor: Validating block with slot: 6740 +2024-09-22T00:44:53.013629Z INFO fork_choice_control::block_processor: Validating block with slot: 6741 +2024-09-22T00:44:53.014177Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4778 +2024-09-22T00:44:53.014189Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4778 +2024-09-22T00:44:53.017908Z INFO fork_choice_control::block_processor: Validating block with slot: 6743 +2024-09-22T00:44:53.017915Z INFO fork_choice_control::block_processor: Validating block with slot: 6744 +2024-09-22T00:44:53.017933Z INFO fork_choice_control::block_processor: Validating block with slot: 6742 +2024-09-22T00:44:53.028310Z INFO fork_choice_control::block_processor: Validating block with slot: 6746 +2024-09-22T00:44:53.028392Z INFO fork_choice_control::block_processor: Validating block with slot: 6745 +2024-09-22T00:44:53.028358Z INFO fork_choice_control::block_processor: Validating block with slot: 6747 +2024-09-22T00:44:53.028888Z INFO fork_choice_control::block_processor: Validating block with slot: 6748 +2024-09-22T00:44:53.028982Z INFO fork_choice_control::block_processor: Validating block with slot: 6749 +2024-09-22T00:44:53.029132Z INFO fork_choice_control::block_processor: Validating block with slot: 6750 +2024-09-22T00:44:53.029942Z INFO fork_choice_control::block_processor: Validating block with slot: 6751 +2024-09-22T00:44:53.031689Z INFO fork_choice_control::block_processor: Validating block with slot: 6619 +2024-09-22T00:44:53.031684Z INFO fork_choice_control::block_processor: Validating block with slot: 6618 +2024-09-22T00:44:53.032862Z INFO fork_choice_control::block_processor: Validating block with slot: 4779 +2024-09-22T00:44:53.034939Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc17fd9e33b6da038e038402c7d98034110768d87dc2d2c31b594c6f50b045881, slot: 4779 +2024-09-22T00:44:53.035000Z INFO fork_choice_control::block_processor: Validating block with slot: 6620 +2024-09-22T00:44:53.035003Z INFO fork_choice_control::block_processor: Validating block with slot: 6621 +2024-09-22T00:44:53.039302Z INFO fork_choice_control::block_processor: Validating block with slot: 6622 +2024-09-22T00:44:53.039406Z INFO fork_choice_control::block_processor: Validating block with slot: 6623 +2024-09-22T00:44:53.043715Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4779 +2024-09-22T00:44:53.043734Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4779 +2024-09-22T00:44:53.058800Z INFO fork_choice_control::block_processor: Validating block with slot: 4780 +2024-09-22T00:44:53.059799Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x730199be4c704e9f9b31652d97bf33144c7e180b70508b9cd0bbf3ceca991650, slot: 4780 +2024-09-22T00:44:53.065466Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4780 +2024-09-22T00:44:53.065482Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4780 +2024-09-22T00:44:53.080083Z INFO fork_choice_control::block_processor: Validating block with slot: 4781 +2024-09-22T00:44:53.081444Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa94ee0691717a5553e15414e3955bb434f47302fc0260c0bb75b69b26c08f139, slot: 4781 +2024-09-22T00:44:53.088357Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4781 +2024-09-22T00:44:53.088379Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4781 +2024-09-22T00:44:53.102334Z INFO fork_choice_control::block_processor: Validating block with slot: 4782 +2024-09-22T00:44:53.104262Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x79c913247e1fa1cfd68680fbaf60ca0c770637a5db3a78f00c513d131b6e7f76, slot: 4782 +2024-09-22T00:44:53.112623Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4782 +2024-09-22T00:44:53.112640Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4782 +2024-09-22T00:44:53.126988Z INFO fork_choice_control::block_processor: Validating block with slot: 4783 +2024-09-22T00:44:53.128106Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6726e340146033a259e080525f09cdee5ddb383d8ef98a8710e370c29e6dc1e2, slot: 4783 +2024-09-22T00:44:53.134399Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4783 +2024-09-22T00:44:53.134414Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4783 +2024-09-22T00:44:53.148378Z INFO fork_choice_control::block_processor: Validating block with slot: 4784 +2024-09-22T00:44:53.149756Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa1aaa494ce6249303b9bb5b6e41a797f983125a11fb6c12da2b1924cd5696b5d, slot: 4784 +2024-09-22T00:44:53.158061Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4784 +2024-09-22T00:44:53.158086Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4784 +2024-09-22T00:44:53.172655Z INFO fork_choice_control::block_processor: Validating block with slot: 4785 +2024-09-22T00:44:53.173883Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8a46bfcdd2728ea8c6b57570134d43a323a385570e549c89c3f5349f86f54549, slot: 4785 +2024-09-22T00:44:53.180924Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4785 +2024-09-22T00:44:53.180947Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4785 +2024-09-22T00:44:53.197658Z INFO fork_choice_control::block_processor: Validating block with slot: 4786 +2024-09-22T00:44:53.198805Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe24faba7f6953dee0e50292b112c6e16eb04c9cc6694395b43ab5e891d2ae684, slot: 4786 +2024-09-22T00:44:53.204987Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4786 +2024-09-22T00:44:53.205003Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4786 +2024-09-22T00:44:53.219531Z INFO fork_choice_control::block_processor: Validating block with slot: 4787 +2024-09-22T00:44:53.220887Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x92306f547123435612ee08da66f4a766c97e3bd5d31687ee6a623369bd77d633, slot: 4787 +2024-09-22T00:44:53.227514Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4787 +2024-09-22T00:44:53.227537Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4787 +2024-09-22T00:44:53.242702Z INFO fork_choice_control::block_processor: Validating block with slot: 4788 +2024-09-22T00:44:53.243670Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x95fa6de8586a5573fae1964910940abd98d75a2a9461caad9dd95b5fced6070b, slot: 4788 +2024-09-22T00:44:53.249451Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4788 +2024-09-22T00:44:53.249469Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4788 +2024-09-22T00:44:53.264703Z INFO fork_choice_control::block_processor: Validating block with slot: 4789 +2024-09-22T00:44:53.266500Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x445bc6eee954a5939b94fea10ed7c8d088bfc723f947747a3beb8b15dc40e455, slot: 4789 +2024-09-22T00:44:53.274063Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4789 +2024-09-22T00:44:53.274087Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4789 +2024-09-22T00:44:53.289302Z INFO fork_choice_control::block_processor: Validating block with slot: 4790 +2024-09-22T00:44:53.290884Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7312d830d32b828ed7af27b0c800dcba7c0f0c440d78dd05890428911ed52645, slot: 4790 +2024-09-22T00:44:53.297860Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4790 +2024-09-22T00:44:53.297874Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4790 +2024-09-22T00:44:53.313821Z INFO fork_choice_control::block_processor: Validating block with slot: 4791 +2024-09-22T00:44:53.314931Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc107d81ff7ba16760c1af40e6f855bf8d46c43f03fbbcca3b4dec5ea09deb8c2, slot: 4791 +2024-09-22T00:44:53.320811Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4791 +2024-09-22T00:44:53.320829Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4791 +2024-09-22T00:44:53.342161Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 148, root: 0x4b4759b0b25f01b2735de12450f399839ac6621ed5a0538b06caf11eb91fbb32, head slot: 4791, head root: 0xc107d81ff7ba16760c1af40e6f855bf8d46c43f03fbbcca3b4dec5ea09deb8c2) +2024-09-22T00:44:53.342235Z INFO fork_choice_control::block_processor: Validating block with slot: 4792 +2024-09-22T00:44:53.343540Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5fbaf3b238699455be6c413816dcfa72a3a1f170831450dc7d542ed798a56ddd, slot: 4792 +2024-09-22T00:44:53.349998Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4792 +2024-09-22T00:44:53.350017Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4792 +2024-09-22T00:44:53.366415Z INFO fork_choice_control::block_processor: Validating block with slot: 4793 +2024-09-22T00:44:53.367542Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xae429b46454d8293cf7399d5673528c91f672a91a3319293a17aa4afad92fe34, slot: 4793 +2024-09-22T00:44:53.374685Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4793 +2024-09-22T00:44:53.374708Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4793 +2024-09-22T00:44:53.392387Z INFO fork_choice_control::block_processor: Validating block with slot: 4794 +2024-09-22T00:44:53.394671Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8b08b7c8159c23cbcce1a07ac08360f65d44c739876c5cf7d98485883dabe592, slot: 4794 +2024-09-22T00:44:53.405238Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4794 +2024-09-22T00:44:53.405261Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4794 +2024-09-22T00:44:53.424275Z INFO fork_choice_control::block_processor: Validating block with slot: 4795 +2024-09-22T00:44:53.425555Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7045ee36450ab6d72374a165325fff525b55bed00173d740a943aaefe81caec8, slot: 4795 +2024-09-22T00:44:53.432555Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4795 +2024-09-22T00:44:53.432573Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4795 +2024-09-22T00:44:53.449313Z INFO fork_choice_control::block_processor: Validating block with slot: 4796 +2024-09-22T00:44:53.450578Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa99567b0fa3544da4361b09a09c22a9a425da0d9319433c406c396aa3d14a774, slot: 4796 +2024-09-22T00:44:53.458035Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4796 +2024-09-22T00:44:53.458060Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4796 +2024-09-22T00:44:53.476369Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 4736 +2024-09-22T00:44:53.476707Z INFO fork_choice_control::block_processor: Validating block with slot: 4797 +2024-09-22T00:44:53.477776Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdaac5c4facc83f0b77dc6241546f7cf7471f9bbac25f3d9a861d7ce146cb86c2, slot: 4797 +2024-09-22T00:44:53.485615Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4797 +2024-09-22T00:44:53.485635Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4797 +2024-09-22T00:44:53.504028Z INFO fork_choice_control::block_processor: Validating block with slot: 4798 +2024-09-22T00:44:53.505077Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6814dec1a6644ad2fd11be14ea9c24c6cb25ac88ebb78e9b74fde0e0b0e9787c, slot: 4798 +2024-09-22T00:44:53.512535Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4798 +2024-09-22T00:44:53.512562Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4798 +2024-09-22T00:44:53.531438Z INFO fork_choice_control::block_processor: Validating block with slot: 4799 +2024-09-22T00:44:53.534013Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa68c034ac34c1d3a45f014b6bb59ee4542ab2ec3081d9f5cd36282526e395f4b, slot: 4799 +2024-09-22T00:44:53.545922Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4799 +2024-09-22T00:44:53.545945Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4799 +2024-09-22T00:44:53.565089Z INFO fork_choice_control::block_processor: Validating block with slot: 4800 +2024-09-22T00:44:53.566170Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x564f646566824ecc2417a0cc53e68df356d85e093e447be8fe87a525b5268b5a, slot: 4800 +2024-09-22T00:44:53.684890Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4800 +2024-09-22T00:44:53.684924Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4800 +2024-09-22T00:44:53.696165Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 4800) +2024-09-22T00:44:53.696380Z INFO fork_choice_control::block_processor: Validating block with slot: 4801 +2024-09-22T00:44:53.697495Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe9bf2f387f8c87cf87f4d1942e3435f02949a6385f97f6d775ee0208f63d7481, slot: 4801 +2024-09-22T00:44:53.733373Z INFO fork_choice_control::block_processor: Validating block with slot: 6944 +2024-09-22T00:44:53.737278Z INFO fork_choice_control::block_processor: Validating block with slot: 6945 +2024-09-22T00:44:53.740521Z INFO fork_choice_control::block_processor: Validating block with slot: 6946 +2024-09-22T00:44:53.740575Z INFO fork_choice_control::block_processor: Validating block with slot: 6947 +2024-09-22T00:44:53.743297Z INFO fork_choice_control::block_processor: Validating block with slot: 6948 +2024-09-22T00:44:53.743471Z INFO fork_choice_control::block_processor: Validating block with slot: 6949 +2024-09-22T00:44:53.750195Z INFO fork_choice_control::block_processor: Validating block with slot: 6952 +2024-09-22T00:44:53.750208Z INFO fork_choice_control::block_processor: Validating block with slot: 6950 +2024-09-22T00:44:53.750234Z INFO fork_choice_control::block_processor: Validating block with slot: 6951 +2024-09-22T00:44:53.754504Z INFO fork_choice_control::block_processor: Validating block with slot: 6954 +2024-09-22T00:44:53.758755Z INFO fork_choice_control::block_processor: Validating block with slot: 6956 +2024-09-22T00:44:53.758787Z INFO fork_choice_control::block_processor: Validating block with slot: 6955 +2024-09-22T00:44:53.758877Z INFO fork_choice_control::block_processor: Validating block with slot: 6957 +2024-09-22T00:44:53.759561Z INFO fork_choice_control::block_processor: Validating block with slot: 6958 +2024-09-22T00:44:53.767898Z INFO fork_choice_control::block_processor: Validating block with slot: 6960 +2024-09-22T00:44:53.767914Z INFO fork_choice_control::block_processor: Validating block with slot: 6962 +2024-09-22T00:44:53.767936Z INFO fork_choice_control::block_processor: Validating block with slot: 6959 +2024-09-22T00:44:53.767956Z INFO fork_choice_control::block_processor: Validating block with slot: 6964 +2024-09-22T00:44:53.767973Z INFO fork_choice_control::block_processor: Validating block with slot: 6963 +2024-09-22T00:44:53.768118Z INFO fork_choice_control::block_processor: Validating block with slot: 6961 +2024-09-22T00:44:53.773980Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4801 +2024-09-22T00:44:53.774001Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4801 +2024-09-22T00:44:53.776453Z INFO fork_choice_control::block_processor: Validating block with slot: 6965 +2024-09-22T00:44:53.785930Z INFO fork_choice_control::block_processor: Validating block with slot: 4802 +2024-09-22T00:44:53.787911Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfc4e9168d872c5ad0382549f05e3feed4d1a7b414f694de49d49884f369ffdf0, slot: 4802 +2024-09-22T00:44:53.795641Z INFO fork_choice_control::block_processor: Validating block with slot: 6966 +2024-09-22T00:44:53.795652Z INFO fork_choice_control::block_processor: Validating block with slot: 6968 +2024-09-22T00:44:53.795862Z INFO fork_choice_control::block_processor: Validating block with slot: 6969 +2024-09-22T00:44:53.796062Z INFO fork_choice_control::block_processor: Validating block with slot: 6967 +2024-09-22T00:44:53.796235Z INFO fork_choice_control::block_processor: Validating block with slot: 6970 +2024-09-22T00:44:53.796799Z INFO fork_choice_control::block_processor: Validating block with slot: 6971 +2024-09-22T00:44:53.798251Z INFO fork_choice_control::block_processor: Validating block with slot: 6972 +2024-09-22T00:44:53.799165Z INFO fork_choice_control::block_processor: Validating block with slot: 6973 +2024-09-22T00:44:53.799266Z INFO fork_choice_control::block_processor: Validating block with slot: 6974 +2024-09-22T00:44:53.799673Z INFO fork_choice_control::block_processor: Validating block with slot: 6975 +2024-09-22T00:44:53.801840Z INFO fork_choice_control::block_processor: Validating block with slot: 6977 +2024-09-22T00:44:53.807898Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4802 +2024-09-22T00:44:53.808004Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4802 +2024-09-22T00:44:53.817374Z INFO fork_choice_control::block_processor: Validating block with slot: 6980 +2024-09-22T00:44:53.817432Z INFO fork_choice_control::block_processor: Validating block with slot: 6978 +2024-09-22T00:44:53.817446Z INFO fork_choice_control::block_processor: Validating block with slot: 6982 +2024-09-22T00:44:53.817747Z INFO fork_choice_control::block_processor: Validating block with slot: 6983 +2024-09-22T00:44:53.818083Z INFO fork_choice_control::block_processor: Validating block with slot: 6979 +2024-09-22T00:44:53.819396Z INFO fork_choice_control::block_processor: Validating block with slot: 6984 +2024-09-22T00:44:53.819394Z INFO fork_choice_control::block_processor: Validating block with slot: 6981 +2024-09-22T00:44:53.820408Z INFO fork_choice_control::block_processor: Validating block with slot: 6985 +2024-09-22T00:44:53.820718Z INFO fork_choice_control::block_processor: Validating block with slot: 6986 +2024-09-22T00:44:53.821284Z INFO fork_choice_control::block_processor: Validating block with slot: 6987 +2024-09-22T00:44:53.822943Z INFO fork_choice_control::block_processor: Validating block with slot: 4803 +2024-09-22T00:44:53.825123Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5595489a389eea6c41fd09ddbd68f2fca8682ed87839cf8b26b5915cdc2dbefc, slot: 4803 +2024-09-22T00:44:53.835220Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4803 +2024-09-22T00:44:53.835237Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4803 +2024-09-22T00:44:53.837677Z INFO fork_choice_control::block_processor: Validating block with slot: 6990 +2024-09-22T00:44:53.837682Z INFO fork_choice_control::block_processor: Validating block with slot: 6992 +2024-09-22T00:44:53.837693Z INFO fork_choice_control::block_processor: Validating block with slot: 6988 +2024-09-22T00:44:53.838024Z INFO fork_choice_control::block_processor: Validating block with slot: 6989 +2024-09-22T00:44:53.838869Z INFO fork_choice_control::block_processor: Validating block with slot: 6993 +2024-09-22T00:44:53.839008Z INFO fork_choice_control::block_processor: Validating block with slot: 6994 +2024-09-22T00:44:53.840166Z INFO fork_choice_control::block_processor: Validating block with slot: 6995 +2024-09-22T00:44:53.841916Z INFO fork_choice_control::block_processor: Validating block with slot: 6996 +2024-09-22T00:44:53.842809Z INFO fork_choice_control::block_processor: Validating block with slot: 6998 +2024-09-22T00:44:53.844071Z INFO fork_choice_control::block_processor: Validating block with slot: 6997 +2024-09-22T00:44:53.848074Z INFO fork_choice_control::block_processor: Validating block with slot: 4804 +2024-09-22T00:44:53.849662Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc8e295336f422ae29f43ca62c2ef63728b7fecbf7984123445cba08843b23144, slot: 4804 +2024-09-22T00:44:53.854373Z INFO fork_choice_control::block_processor: Validating block with slot: 6999 +2024-09-22T00:44:53.854427Z INFO fork_choice_control::block_processor: Validating block with slot: 7000 +2024-09-22T00:44:53.854584Z INFO fork_choice_control::block_processor: Validating block with slot: 7001 +2024-09-22T00:44:53.855310Z INFO fork_choice_control::block_processor: Validating block with slot: 7002 +2024-09-22T00:44:53.855593Z INFO fork_choice_control::block_processor: Validating block with slot: 7003 +2024-09-22T00:44:53.856008Z INFO fork_choice_control::block_processor: Validating block with slot: 7004 +2024-09-22T00:44:53.856358Z INFO fork_choice_control::block_processor: Validating block with slot: 7005 +2024-09-22T00:44:53.856755Z INFO fork_choice_control::block_processor: Validating block with slot: 7006 +2024-09-22T00:44:53.860340Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4804 +2024-09-22T00:44:53.860353Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4804 +2024-09-22T00:44:53.861587Z INFO fork_choice_control::block_processor: Validating block with slot: 6816 +2024-09-22T00:44:53.861934Z INFO fork_choice_control::block_processor: Validating block with slot: 6817 +2024-09-22T00:44:53.868536Z INFO fork_choice_control::block_processor: Validating block with slot: 6819 +2024-09-22T00:44:53.868822Z INFO fork_choice_control::block_processor: Validating block with slot: 6818 +2024-09-22T00:44:53.872008Z INFO fork_choice_control::block_processor: Validating block with slot: 6820 +2024-09-22T00:44:53.873699Z INFO fork_choice_control::block_processor: Validating block with slot: 6821 +2024-09-22T00:44:53.873840Z INFO fork_choice_control::block_processor: Validating block with slot: 6822 +2024-09-22T00:44:53.874862Z INFO fork_choice_control::block_processor: Validating block with slot: 6823 +2024-09-22T00:44:53.875029Z INFO fork_choice_control::block_processor: Validating block with slot: 4805 +2024-09-22T00:44:53.876350Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x835934f1cd7ab3973c66c3aa303e8de8639b845a3d98312959fa5a6455cb2776, slot: 4805 +2024-09-22T00:44:53.878104Z INFO fork_choice_control::block_processor: Validating block with slot: 6881 +2024-09-22T00:44:53.878488Z INFO fork_choice_control::block_processor: Validating block with slot: 6824 +2024-09-22T00:44:53.878644Z INFO fork_choice_control::block_processor: Validating block with slot: 6882 +2024-09-22T00:44:53.884211Z INFO fork_choice_control::block_processor: Validating block with slot: 6883 +2024-09-22T00:44:53.884255Z INFO fork_choice_control::block_processor: Validating block with slot: 6885 +2024-09-22T00:44:53.885446Z INFO fork_choice_control::block_processor: Validating block with slot: 6886 +2024-09-22T00:44:53.886636Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4805 +2024-09-22T00:44:53.886650Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4805 +2024-09-22T00:44:53.897299Z INFO fork_choice_control::block_processor: Validating block with slot: 6887 +2024-09-22T00:44:53.897343Z INFO fork_choice_control::block_processor: Validating block with slot: 6825 +2024-09-22T00:44:53.897376Z INFO fork_choice_control::block_processor: Validating block with slot: 6888 +2024-09-22T00:44:53.900068Z INFO fork_choice_control::block_processor: Validating block with slot: 6827 +2024-09-22T00:44:53.900249Z INFO fork_choice_control::block_processor: Validating block with slot: 6828 +2024-09-22T00:44:53.901053Z INFO fork_choice_control::block_processor: Validating block with slot: 6826 +2024-09-22T00:44:53.901493Z INFO fork_choice_control::block_processor: Validating block with slot: 4806 +2024-09-22T00:44:53.904837Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9a075a0009239aa41d378fd1d96c8be000b1d0aaa91192d3ab6802fd9ce3c0d7, slot: 4806 +2024-09-22T00:44:53.913911Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4806 +2024-09-22T00:44:53.913933Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4806 +2024-09-22T00:44:53.928237Z INFO fork_choice_control::block_processor: Validating block with slot: 4807 +2024-09-22T00:44:53.929372Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x83d89895a2133be19c42bc6e77262844aca547fd939e78dab869bf9218dc779c, slot: 4807 +2024-09-22T00:44:53.930912Z INFO fork_choice_control::block_processor: Validating block with slot: 6829 +2024-09-22T00:44:53.931372Z INFO fork_choice_control::block_processor: Validating block with slot: 6830 +2024-09-22T00:44:53.931780Z INFO fork_choice_control::block_processor: Validating block with slot: 6831 +2024-09-22T00:44:53.934716Z INFO fork_choice_control::block_processor: Validating block with slot: 6832 +2024-09-22T00:44:53.935432Z INFO fork_choice_control::block_processor: Validating block with slot: 6833 +2024-09-22T00:44:53.936524Z INFO fork_choice_control::block_processor: Validating block with slot: 6889 +2024-09-22T00:44:53.936533Z INFO fork_choice_control::block_processor: Validating block with slot: 6834 +2024-09-22T00:44:53.938003Z INFO fork_choice_control::block_processor: Validating block with slot: 6890 +2024-09-22T00:44:53.938331Z INFO fork_choice_control::block_processor: Validating block with slot: 6835 +2024-09-22T00:44:53.939316Z INFO fork_choice_control::block_processor: Validating block with slot: 6891 +2024-09-22T00:44:53.940714Z INFO fork_choice_control::block_processor: Validating block with slot: 6836 +2024-09-22T00:44:53.941254Z INFO fork_choice_control::block_processor: Validating block with slot: 6892 +2024-09-22T00:44:53.941879Z INFO fork_choice_control::block_processor: Validating block with slot: 6893 +2024-09-22T00:44:53.942439Z INFO fork_choice_control::block_processor: Validating block with slot: 6894 +2024-09-22T00:44:53.942779Z INFO fork_choice_control::block_processor: Validating block with slot: 6895 +2024-09-22T00:44:53.942846Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4807 +2024-09-22T00:44:53.942875Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4807 +2024-09-22T00:44:53.943107Z INFO fork_choice_control::block_processor: Validating block with slot: 6897 +2024-09-22T00:44:53.944381Z INFO fork_choice_control::block_processor: Validating block with slot: 6896 +2024-09-22T00:44:53.948497Z INFO fork_choice_control::block_processor: Validating block with slot: 6837 +2024-09-22T00:44:53.948918Z INFO fork_choice_control::block_processor: Validating block with slot: 6838 +2024-09-22T00:44:53.948993Z INFO fork_choice_control::block_processor: Validating block with slot: 6839 +2024-09-22T00:44:53.949304Z INFO fork_choice_control::block_processor: Validating block with slot: 6840 +2024-09-22T00:44:53.949455Z INFO fork_choice_control::block_processor: Validating block with slot: 6841 +2024-09-22T00:44:53.949707Z INFO fork_choice_control::block_processor: Validating block with slot: 6842 +2024-09-22T00:44:53.949828Z INFO fork_choice_control::block_processor: Validating block with slot: 6843 +2024-09-22T00:44:53.950935Z INFO fork_choice_control::block_processor: Validating block with slot: 6845 +2024-09-22T00:44:53.950930Z INFO fork_choice_control::block_processor: Validating block with slot: 6844 +2024-09-22T00:44:53.958500Z INFO fork_choice_control::block_processor: Validating block with slot: 4808 +2024-09-22T00:44:53.960286Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbb959cb6d9fc524a005c05567339290eb59f9e6fe9ffd94a950322cf24ba2d7c, slot: 4808 +2024-09-22T00:44:53.967239Z INFO fork_choice_control::block_processor: Validating block with slot: 6898 +2024-09-22T00:44:53.972946Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4808 +2024-09-22T00:44:53.973000Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4808 +2024-09-22T00:44:53.981419Z INFO fork_choice_control::block_processor: Validating block with slot: 6899 +2024-09-22T00:44:53.981430Z INFO fork_choice_control::block_processor: Validating block with slot: 7007 +2024-09-22T00:44:53.981453Z INFO fork_choice_control::block_processor: Validating block with slot: 6846 +2024-09-22T00:44:53.981752Z INFO fork_choice_control::block_processor: Validating block with slot: 6901 +2024-09-22T00:44:53.982007Z INFO fork_choice_control::block_processor: Validating block with slot: 6902 +2024-09-22T00:44:53.982986Z INFO fork_choice_control::block_processor: Validating block with slot: 6903 +2024-09-22T00:44:53.983185Z INFO fork_choice_control::block_processor: Validating block with slot: 6847 +2024-09-22T00:44:53.984370Z INFO fork_choice_control::block_processor: Validating block with slot: 6904 +2024-09-22T00:44:53.988941Z INFO fork_choice_control::block_processor: Validating block with slot: 6848 +2024-09-22T00:44:53.989355Z INFO fork_choice_control::block_processor: Validating block with slot: 4809 +2024-09-22T00:44:53.991277Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1f9205d43aecb2c00e9f1681c237a63500e35ec0935be65c09367db1964e9dfb, slot: 4809 +2024-09-22T00:44:53.995234Z INFO fork_choice_control::block_processor: Validating block with slot: 6849 +2024-09-22T00:44:53.995363Z INFO fork_choice_control::block_processor: Validating block with slot: 6850 +2024-09-22T00:44:53.995659Z INFO fork_choice_control::block_processor: Validating block with slot: 6851 +2024-09-22T00:44:53.995675Z INFO fork_choice_control::block_processor: Validating block with slot: 6852 +2024-09-22T00:44:53.995695Z INFO fork_choice_control::block_processor: Validating block with slot: 6853 +2024-09-22T00:44:54.001883Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4809 +2024-09-22T00:44:54.001898Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4809 +2024-09-22T00:44:54.007833Z INFO fork_choice_control::block_processor: Validating block with slot: 6854 +2024-09-22T00:44:54.016754Z INFO fork_choice_control::block_processor: Validating block with slot: 4810 +2024-09-22T00:44:54.018015Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6e6eae6997cb986cb8259bb9994beaf9a4b27640c59552b8b6c1b2fb502ce1fb, slot: 4810 +2024-09-22T00:44:54.024443Z INFO fork_choice_control::block_processor: Validating block with slot: 6855 +2024-09-22T00:44:54.024491Z INFO fork_choice_control::block_processor: Validating block with slot: 6858 +2024-09-22T00:44:54.024504Z INFO fork_choice_control::block_processor: Validating block with slot: 6856 +2024-09-22T00:44:54.024744Z INFO fork_choice_control::block_processor: Validating block with slot: 6859 +2024-09-22T00:44:54.024784Z INFO fork_choice_control::block_processor: Validating block with slot: 6860 +2024-09-22T00:44:54.024954Z INFO fork_choice_control::block_processor: Validating block with slot: 6862 +2024-09-22T00:44:54.026614Z INFO fork_choice_control::block_processor: Validating block with slot: 6905 +2024-09-22T00:44:54.027553Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4810 +2024-09-22T00:44:54.027589Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4810 +2024-09-22T00:44:54.028300Z INFO fork_choice_control::block_processor: Validating block with slot: 6906 +2024-09-22T00:44:54.029294Z INFO fork_choice_control::block_processor: Validating block with slot: 6907 +2024-09-22T00:44:54.030804Z INFO fork_choice_control::block_processor: Validating block with slot: 6908 +2024-09-22T00:44:54.030982Z INFO fork_choice_control::block_processor: Validating block with slot: 6909 +2024-09-22T00:44:54.034933Z INFO fork_choice_control::block_processor: Validating block with slot: 6910 +2024-09-22T00:44:54.035042Z INFO fork_choice_control::block_processor: Validating block with slot: 6912 +2024-09-22T00:44:54.035099Z INFO fork_choice_control::block_processor: Validating block with slot: 6911 +2024-09-22T00:44:54.039509Z INFO fork_choice_control::block_processor: Validating block with slot: 6863 +2024-09-22T00:44:54.043094Z INFO fork_choice_control::block_processor: Validating block with slot: 4811 +2024-09-22T00:44:54.043226Z INFO fork_choice_control::block_processor: Validating block with slot: 6864 +2024-09-22T00:44:54.043230Z INFO fork_choice_control::block_processor: Validating block with slot: 6865 +2024-09-22T00:44:54.043241Z INFO fork_choice_control::block_processor: Validating block with slot: 6866 +2024-09-22T00:44:54.045330Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x08d5d8725084e6c44fda8677705a7fc02fcc31b5937302cd88d44b16eb01b930, slot: 4811 +2024-09-22T00:44:54.046085Z INFO fork_choice_control::block_processor: Validating block with slot: 6867 +2024-09-22T00:44:54.046121Z INFO fork_choice_control::block_processor: Validating block with slot: 6868 +2024-09-22T00:44:54.051504Z INFO fork_choice_control::block_processor: Validating block with slot: 6869 +2024-09-22T00:44:54.051546Z INFO fork_choice_control::block_processor: Validating block with slot: 6870 +2024-09-22T00:44:54.051557Z INFO fork_choice_control::block_processor: Validating block with slot: 6871 +2024-09-22T00:44:54.051584Z INFO fork_choice_control::block_processor: Validating block with slot: 6872 +2024-09-22T00:44:54.055589Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4811 +2024-09-22T00:44:54.055609Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4811 +2024-09-22T00:44:54.057367Z INFO fork_choice_control::block_processor: Validating block with slot: 6913 +2024-09-22T00:44:54.063919Z INFO fork_choice_control::block_processor: Validating block with slot: 6915 +2024-09-22T00:44:54.063942Z INFO fork_choice_control::block_processor: Validating block with slot: 6916 +2024-09-22T00:44:54.063949Z INFO fork_choice_control::block_processor: Validating block with slot: 6914 +2024-09-22T00:44:54.064074Z INFO fork_choice_control::block_processor: Validating block with slot: 6917 +2024-09-22T00:44:54.064079Z INFO fork_choice_control::block_processor: Validating block with slot: 6918 +2024-09-22T00:44:54.068117Z INFO fork_choice_control::block_processor: Validating block with slot: 6921 +2024-09-22T00:44:54.068135Z INFO fork_choice_control::block_processor: Validating block with slot: 6873 +2024-09-22T00:44:54.068203Z INFO fork_choice_control::block_processor: Validating block with slot: 6920 +2024-09-22T00:44:54.070924Z INFO fork_choice_control::block_processor: Validating block with slot: 4812 +2024-09-22T00:44:54.072147Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x82545d14c5ca34c7661047c65b52c5b96374a2c6516b7ac742eccfdd4563e124, slot: 4812 +2024-09-22T00:44:54.077776Z INFO fork_choice_control::block_processor: Validating block with slot: 6874 +2024-09-22T00:44:54.077809Z INFO fork_choice_control::block_processor: Validating block with slot: 6875 +2024-09-22T00:44:54.077827Z INFO fork_choice_control::block_processor: Validating block with slot: 6876 +2024-09-22T00:44:54.077852Z INFO fork_choice_control::block_processor: Validating block with slot: 6877 +2024-09-22T00:44:54.078305Z INFO fork_choice_control::block_processor: Validating block with slot: 6878 +2024-09-22T00:44:54.078473Z INFO fork_choice_control::block_processor: Validating block with slot: 6879 +2024-09-22T00:44:54.080686Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4812 +2024-09-22T00:44:54.080702Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4812 +2024-09-22T00:44:54.095080Z INFO fork_choice_control::block_processor: Validating block with slot: 4813 +2024-09-22T00:44:54.098151Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2c77626cd96f46bd703f845e59a0ab1cb5064181b5898559e6ade53194db2f5b, slot: 4813 +2024-09-22T00:44:54.109685Z INFO fork_choice_control::block_processor: Validating block with slot: 6923 +2024-09-22T00:44:54.109665Z INFO fork_choice_control::block_processor: Validating block with slot: 6924 +2024-09-22T00:44:54.109993Z INFO fork_choice_control::block_processor: Validating block with slot: 6922 +2024-09-22T00:44:54.111066Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4813 +2024-09-22T00:44:54.111083Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4813 +2024-09-22T00:44:54.126382Z INFO fork_choice_control::block_processor: Validating block with slot: 4814 +2024-09-22T00:44:54.127540Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xed18515b15f40a840c43cc9d642c37edc613785e6e8bda6e4fd84d876d4edcbd, slot: 4814 +2024-09-22T00:44:54.133631Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4814 +2024-09-22T00:44:54.133651Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4814 +2024-09-22T00:44:54.148100Z INFO fork_choice_control::block_processor: Validating block with slot: 4815 +2024-09-22T00:44:54.149080Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbab4443f0f964e1c974de9db929badc6a021070d70d5b1306479b911991db726, slot: 4815 +2024-09-22T00:44:54.154916Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4815 +2024-09-22T00:44:54.154934Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4815 +2024-09-22T00:44:54.169443Z INFO fork_choice_control::block_processor: Validating block with slot: 4816 +2024-09-22T00:44:54.170824Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd048d4484bf47cb5ddfc74a1b31ee93e6443aca4c5cb8a5d6eec305246925a4d, slot: 4816 +2024-09-22T00:44:54.178353Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4816 +2024-09-22T00:44:54.178374Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4816 +2024-09-22T00:44:54.192881Z INFO fork_choice_control::block_processor: Validating block with slot: 4817 +2024-09-22T00:44:54.194017Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9c19043f6237b30c7cf86b66b169ede9097c6d52c1c5e1c6accb220c4ddf6d85, slot: 4817 +2024-09-22T00:44:54.200947Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4817 +2024-09-22T00:44:54.200962Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4817 +2024-09-22T00:44:54.209048Z INFO fork_choice_control::block_processor: Validating block with slot: 6925 +2024-09-22T00:44:54.209067Z INFO fork_choice_control::block_processor: Validating block with slot: 6931 +2024-09-22T00:44:54.209083Z INFO fork_choice_control::block_processor: Validating block with slot: 6926 +2024-09-22T00:44:54.209095Z INFO fork_choice_control::block_processor: Validating block with slot: 6930 +2024-09-22T00:44:54.209120Z INFO fork_choice_control::block_processor: Validating block with slot: 6928 +2024-09-22T00:44:54.209230Z INFO fork_choice_control::block_processor: Validating block with slot: 6927 +2024-09-22T00:44:54.209613Z INFO fork_choice_control::block_processor: Validating block with slot: 6929 +2024-09-22T00:44:54.210096Z INFO fork_choice_control::block_processor: Validating block with slot: 6932 +2024-09-22T00:44:54.210691Z INFO fork_choice_control::block_processor: Validating block with slot: 6933 +2024-09-22T00:44:54.216115Z INFO fork_choice_control::block_processor: Validating block with slot: 6934 +2024-09-22T00:44:54.216134Z INFO fork_choice_control::block_processor: Validating block with slot: 6935 +2024-09-22T00:44:54.216646Z INFO fork_choice_control::block_processor: Validating block with slot: 4818 +2024-09-22T00:44:54.217684Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x660bc3942c87a5c09bb9fe289c1557db0665113d967713bbc3251f0f2f2b24f7, slot: 4818 +2024-09-22T00:44:54.224116Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4818 +2024-09-22T00:44:54.224145Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4818 +2024-09-22T00:44:54.225002Z INFO fork_choice_control::block_processor: Validating block with slot: 6936 +2024-09-22T00:44:54.227050Z INFO fork_choice_control::block_processor: Validating block with slot: 6938 +2024-09-22T00:44:54.239352Z INFO fork_choice_control::block_processor: Validating block with slot: 6941 +2024-09-22T00:44:54.239351Z INFO fork_choice_control::block_processor: Validating block with slot: 6939 +2024-09-22T00:44:54.239401Z INFO fork_choice_control::block_processor: Validating block with slot: 6940 +2024-09-22T00:44:54.239462Z INFO fork_choice_control::block_processor: Validating block with slot: 6942 +2024-09-22T00:44:54.239696Z INFO fork_choice_control::block_processor: Validating block with slot: 4819 +2024-09-22T00:44:54.241438Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8e084947a579828b0285cd869289d64ea011d6ec9b9635caf687830227b5c0ea, slot: 4819 +2024-09-22T00:44:54.247872Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4819 +2024-09-22T00:44:54.247891Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4819 +2024-09-22T00:44:54.263057Z INFO fork_choice_control::block_processor: Validating block with slot: 4820 +2024-09-22T00:44:54.264050Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd26bb6f536ca7d357847fb077ab5785b7df118ef25658794250a42d7e7d8b197, slot: 4820 +2024-09-22T00:44:54.264891Z INFO fork_choice_control::block_processor: Validating block with slot: 6943 +2024-09-22T00:44:54.270139Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4820 +2024-09-22T00:44:54.270157Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4820 +2024-09-22T00:44:54.294238Z INFO fork_choice_control::block_processor: Validating block with slot: 4821 +2024-09-22T00:44:54.295775Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x603eceb824970fb0f6ae83f96a337699f451c511848eba977e1b14187c73422d, slot: 4821 +2024-09-22T00:44:54.307947Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4821 +2024-09-22T00:44:54.308085Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4821 +2024-09-22T00:44:54.328103Z INFO fork_choice_control::block_processor: Validating block with slot: 4822 +2024-09-22T00:44:54.329098Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5ddf83a8bdc975b30c54d15272060d728e80be1a1db11a5cfa95b97f4faedb4f, slot: 4822 +2024-09-22T00:44:54.335152Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4822 +2024-09-22T00:44:54.335168Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4822 +2024-09-22T00:44:54.350604Z INFO fork_choice_control::block_processor: Validating block with slot: 4823 +2024-09-22T00:44:54.354420Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf53356258ffbf065d69a365d9202603eeefee7c77642ff81b9fe7fb2f030c038, slot: 4823 +2024-09-22T00:44:54.367481Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4823 +2024-09-22T00:44:54.367500Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4823 +2024-09-22T00:44:54.389688Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 149, root: 0x48bd7ebfa05db0d998f3cab00aabf6b090bd73eb07d572a08d08ba7891f1097e, head slot: 4823, head root: 0xf53356258ffbf065d69a365d9202603eeefee7c77642ff81b9fe7fb2f030c038) +2024-09-22T00:44:54.389704Z INFO fork_choice_control::block_processor: Validating block with slot: 4824 +2024-09-22T00:44:54.391466Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1e20148b4ec7ac691ee899945f0f41f0d44da615aed6d32a94605cfe9effad38, slot: 4824 +2024-09-22T00:44:54.399135Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4824 +2024-09-22T00:44:54.399155Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4824 +2024-09-22T00:44:54.415984Z INFO fork_choice_control::block_processor: Validating block with slot: 4825 +2024-09-22T00:44:54.417449Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5b7066b10d49499fe8f4ec5dcc684d1a1b3a3a3aee1002367be4f8a46bfbcea4, slot: 4825 +2024-09-22T00:44:54.428553Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4825 +2024-09-22T00:44:54.428574Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4825 +2024-09-22T00:44:54.445749Z INFO fork_choice_control::block_processor: Validating block with slot: 4826 +2024-09-22T00:44:54.446736Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4434ced07a7f8ccde170dedb2a693fe4ad3e99cc766763660007c81749e6a0b0, slot: 4826 +2024-09-22T00:44:54.453545Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4826 +2024-09-22T00:44:54.453565Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4826 +2024-09-22T00:44:54.472150Z INFO fork_choice_control::block_processor: Validating block with slot: 4827 +2024-09-22T00:44:54.473517Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3415af56ec0bad3bde716668d8cc231ac23a94e9c58ac55e89ff28ec7cc9c003, slot: 4827 +2024-09-22T00:44:54.480707Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4827 +2024-09-22T00:44:54.480723Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4827 +2024-09-22T00:44:54.498587Z INFO fork_choice_control::block_processor: Validating block with slot: 4828 +2024-09-22T00:44:54.499798Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x70af093373b85c63ca766e548e7c682c7238e282194d7dd9b32df487e1c80eec, slot: 4828 +2024-09-22T00:44:54.506568Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4828 +2024-09-22T00:44:54.506590Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4828 +2024-09-22T00:44:54.523789Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 4768 +2024-09-22T00:44:54.525126Z INFO fork_choice_control::block_processor: Validating block with slot: 4829 +2024-09-22T00:44:54.526173Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3efcf2fce85888424159a6e8de6dd98bd3a282d75de7dc0433721c2fdc7ea5b5, slot: 4829 +2024-09-22T00:44:54.532680Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4829 +2024-09-22T00:44:54.532701Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4829 +2024-09-22T00:44:54.552038Z INFO fork_choice_control::block_processor: Validating block with slot: 4830 +2024-09-22T00:44:54.553389Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x85c40a9493cf9bb635a0b4b07d6033adbf49d70d4d4e1097799c34f702418994, slot: 4830 +2024-09-22T00:44:54.562164Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4830 +2024-09-22T00:44:54.562186Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4830 +2024-09-22T00:44:54.581996Z INFO fork_choice_control::block_processor: Validating block with slot: 4831 +2024-09-22T00:44:54.582976Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa6d634d742aa5039fabcc055eda093b3658be1fb368bce7a1d2dba02f123ad46, slot: 4831 +2024-09-22T00:44:54.591325Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4831 +2024-09-22T00:44:54.591348Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4831 +2024-09-22T00:44:54.611434Z INFO fork_choice_control::block_processor: Validating block with slot: 4832 +2024-09-22T00:44:54.613856Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7e9e0b7c46a719a4392d542ef28103620aea1da6b60c77bd73872f1350bd7869, slot: 4832 +2024-09-22T00:44:54.724835Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4832 +2024-09-22T00:44:54.724861Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4832 +2024-09-22T00:44:54.735093Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 4832) +2024-09-22T00:44:54.735283Z INFO fork_choice_control::block_processor: Validating block with slot: 4833 +2024-09-22T00:44:54.736423Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc5d9b3748ac96a122cc4d8c209db19d75bf8c71acb5f2876a37b4a31cb869541, slot: 4833 +2024-09-22T00:44:54.810495Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4833 +2024-09-22T00:44:54.810518Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4833 +2024-09-22T00:44:54.821588Z INFO fork_choice_control::block_processor: Validating block with slot: 4834 +2024-09-22T00:44:54.823316Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc9cb378901769e39d7b925ea11f53880ee68dcf7c64b2138c05259d0ea96fa30, slot: 4834 +2024-09-22T00:44:54.831829Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4834 +2024-09-22T00:44:54.831851Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4834 +2024-09-22T00:44:54.843371Z INFO fork_choice_control::block_processor: Validating block with slot: 4835 +2024-09-22T00:44:54.846655Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeb62585bb977c2c31a4dda6bfd560d013d8957de04b7d55d3b3a06450492aab2, slot: 4835 +2024-09-22T00:44:54.864554Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4835 +2024-09-22T00:44:54.864579Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4835 +2024-09-22T00:44:54.876876Z INFO fork_choice_control::block_processor: Validating block with slot: 4836 +2024-09-22T00:44:54.878392Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1c68418a23af4c10d78d154b8bae69c83ef407f20b91a1cd5720087656e03d61, slot: 4836 +2024-09-22T00:44:54.887171Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4836 +2024-09-22T00:44:54.887188Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4836 +2024-09-22T00:44:54.899531Z INFO fork_choice_control::block_processor: Validating block with slot: 4837 +2024-09-22T00:44:54.900724Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x492879bccfc157b0b8748a6f1ffc7cb6de6e1610395e6e7954203c4f3f374dc0, slot: 4837 +2024-09-22T00:44:54.908699Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4837 +2024-09-22T00:44:54.908723Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4837 +2024-09-22T00:44:54.921396Z INFO fork_choice_control::block_processor: Validating block with slot: 4838 +2024-09-22T00:44:54.922602Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb685d66ed5f870bb6d8c8b6a91dfb6d08bc23337fa0a8e757cdad656f661f894, slot: 4838 +2024-09-22T00:44:54.930011Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4838 +2024-09-22T00:44:54.930033Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4838 +2024-09-22T00:44:54.943192Z INFO fork_choice_control::block_processor: Validating block with slot: 4839 +2024-09-22T00:44:54.944314Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe738a2c08fec2f2a9f0fc12cb144f0014f7a92b667f5d94bf30eebf498474fe2, slot: 4839 +2024-09-22T00:44:54.951242Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4839 +2024-09-22T00:44:54.951254Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4839 +2024-09-22T00:44:54.964899Z INFO fork_choice_control::block_processor: Validating block with slot: 4840 +2024-09-22T00:44:54.967023Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x10ffa9d82eaa7bb8b2c115add8ccfb6e3a836589d8e336da9dd1a99f2457901a, slot: 4840 +2024-09-22T00:44:54.977359Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4840 +2024-09-22T00:44:54.977386Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4840 +2024-09-22T00:44:54.990894Z INFO fork_choice_control::block_processor: Validating block with slot: 4841 +2024-09-22T00:44:54.992711Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1b090cdc7d7bd5201f35ad0ee63469b4340c673867eddb04c4b4ead6215c56ee, slot: 4841 +2024-09-22T00:44:55.000610Z INFO fork_choice_control::block_processor: Validating block with slot: 7201 +2024-09-22T00:44:55.000618Z INFO fork_choice_control::block_processor: Validating block with slot: 7200 +2024-09-22T00:44:55.002704Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4841 +2024-09-22T00:44:55.002716Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4841 +2024-09-22T00:44:55.017309Z INFO fork_choice_control::block_processor: Validating block with slot: 4842 +2024-09-22T00:44:55.018467Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa6c6f3c359ad13e55ec9287caa30440e613384fc76591760f6878d9de89de312, slot: 4842 +2024-09-22T00:44:55.026544Z INFO fork_choice_control::block_processor: Validating block with slot: 7202 +2024-09-22T00:44:55.026631Z INFO fork_choice_control::block_processor: Validating block with slot: 7203 +2024-09-22T00:44:55.026700Z INFO fork_choice_control::block_processor: Validating block with slot: 7205 +2024-09-22T00:44:55.026890Z INFO fork_choice_control::block_processor: Validating block with slot: 7206 +2024-09-22T00:44:55.026918Z INFO fork_choice_control::block_processor: Validating block with slot: 7207 +2024-09-22T00:44:55.027381Z INFO fork_choice_control::block_processor: Validating block with slot: 7208 +2024-09-22T00:44:55.028667Z INFO fork_choice_control::block_processor: Validating block with slot: 7209 +2024-09-22T00:44:55.028708Z INFO fork_choice_control::block_processor: Validating block with slot: 7210 +2024-09-22T00:44:55.029835Z INFO fork_choice_control::block_processor: Validating block with slot: 7211 +2024-09-22T00:44:55.029963Z INFO fork_choice_control::block_processor: Validating block with slot: 7215 +2024-09-22T00:44:55.030350Z INFO fork_choice_control::block_processor: Validating block with slot: 7204 +2024-09-22T00:44:55.030496Z INFO fork_choice_control::block_processor: Validating block with slot: 7216 +2024-09-22T00:44:55.030510Z INFO fork_choice_control::block_processor: Validating block with slot: 7212 +2024-09-22T00:44:55.031590Z INFO fork_choice_control::block_processor: Validating block with slot: 7217 +2024-09-22T00:44:55.031970Z INFO fork_choice_control::block_processor: Validating block with slot: 7213 +2024-09-22T00:44:55.032131Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4842 +2024-09-22T00:44:55.032166Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4842 +2024-09-22T00:44:55.032330Z INFO fork_choice_control::block_processor: Validating block with slot: 7214 +2024-09-22T00:44:55.047939Z INFO fork_choice_control::block_processor: Validating block with slot: 4843 +2024-09-22T00:44:55.048977Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x66c5186aa7c8e67da8ff3e3ceebc4a701d1b7d6e13b0bfd73bd47a416e0de0bc, slot: 4843 +2024-09-22T00:44:55.058965Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4843 +2024-09-22T00:44:55.059004Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4843 +2024-09-22T00:44:55.074348Z INFO fork_choice_control::block_processor: Validating block with slot: 4844 +2024-09-22T00:44:55.076072Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9bfa840d72b3634884e722bcb5e8120f7d5178f36ce78034b7a9c2d8c3506d26, slot: 4844 +2024-09-22T00:44:55.084726Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4844 +2024-09-22T00:44:55.084748Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4844 +2024-09-22T00:44:55.100257Z INFO fork_choice_control::block_processor: Validating block with slot: 4846 +2024-09-22T00:44:55.103745Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa81d7969004b8b4bef36c606dc7f652300b3b9254a131fbbae51217b2febc1e6, slot: 4846 +2024-09-22T00:44:55.120178Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4846 +2024-09-22T00:44:55.120200Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4846 +2024-09-22T00:44:55.136982Z INFO fork_choice_control::block_processor: Validating block with slot: 4847 +2024-09-22T00:44:55.138100Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x37ac2f1bfdf0e0a7b5f697849fbba299a822a2ded552fc03b6a4deb4ebc0854f, slot: 4847 +2024-09-22T00:44:55.149601Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4847 +2024-09-22T00:44:55.149622Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4847 +2024-09-22T00:44:55.166173Z INFO fork_choice_control::block_processor: Validating block with slot: 4848 +2024-09-22T00:44:55.169181Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x023cbf0f348cdff0e0bf6a3d07857552d547c124001f48227c2907898d8485a4, slot: 4848 +2024-09-22T00:44:55.184980Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4848 +2024-09-22T00:44:55.185054Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4848 +2024-09-22T00:44:55.207166Z INFO fork_choice_control::block_processor: Validating block with slot: 4849 +2024-09-22T00:44:55.208921Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x391de44a4f4e5f57e59bc66932b4fdd1ce56cbf03902ee4a341f84857b63f428, slot: 4849 +2024-09-22T00:44:55.216611Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4849 +2024-09-22T00:44:55.216630Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4849 +2024-09-22T00:44:55.234152Z INFO fork_choice_control::block_processor: Validating block with slot: 4850 +2024-09-22T00:44:55.236035Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xefb8a86fa14c12bc1166fb037423e1ff6d4937b455cec656caa492d7942c422c, slot: 4850 +2024-09-22T00:44:55.247969Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4850 +2024-09-22T00:44:55.248032Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4850 +2024-09-22T00:44:55.265488Z INFO fork_choice_control::block_processor: Validating block with slot: 4851 +2024-09-22T00:44:55.267090Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0427d6db8975a371cd44daf352374e6194010bafca6c2320eaee425040432981, slot: 4851 +2024-09-22T00:44:55.281851Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4851 +2024-09-22T00:44:55.282025Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4851 +2024-09-22T00:44:55.300228Z INFO fork_choice_control::block_processor: Validating block with slot: 4852 +2024-09-22T00:44:55.301821Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb66c1e692c4cb212a13373502e2369f85b5e4c806b6b68bc9a4dbe1672db0b8e, slot: 4852 +2024-09-22T00:44:55.314710Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4852 +2024-09-22T00:44:55.314733Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4852 +2024-09-22T00:44:55.332738Z INFO fork_choice_control::block_processor: Validating block with slot: 4853 +2024-09-22T00:44:55.333865Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2977b44cd045870561a110f4390ed36ac970fef7b7976dc98b3b89aa0dc8473e, slot: 4853 +2024-09-22T00:44:55.340773Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4853 +2024-09-22T00:44:55.340794Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4853 +2024-09-22T00:44:55.358589Z INFO fork_choice_control::block_processor: Validating block with slot: 4854 +2024-09-22T00:44:55.359807Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe53c9d22c2207762a1d178e0588671cd66f599b6c5d83837d06e26cfd5d4f8b6, slot: 4854 +2024-09-22T00:44:55.367508Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4854 +2024-09-22T00:44:55.367525Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4854 +2024-09-22T00:44:55.372191Z INFO fork_choice_control::block_processor: Validating block with slot: 7218 +2024-09-22T00:44:55.372260Z INFO fork_choice_control::block_processor: Validating block with slot: 7219 +2024-09-22T00:44:55.372314Z INFO fork_choice_control::block_processor: Validating block with slot: 7220 +2024-09-22T00:44:55.373037Z INFO fork_choice_control::block_processor: Validating block with slot: 7221 +2024-09-22T00:44:55.373227Z INFO fork_choice_control::block_processor: Validating block with slot: 7222 +2024-09-22T00:44:55.375363Z INFO fork_choice_control::block_processor: Validating block with slot: 7223 +2024-09-22T00:44:55.376124Z INFO fork_choice_control::block_processor: Validating block with slot: 7072 +2024-09-22T00:44:55.380188Z INFO fork_choice_control::block_processor: Validating block with slot: 7224 +2024-09-22T00:44:55.380339Z INFO fork_choice_control::block_processor: Validating block with slot: 7073 +2024-09-22T00:44:55.384858Z INFO fork_choice_control::block_processor: Validating block with slot: 7075 +2024-09-22T00:44:55.387186Z INFO fork_choice_control::block_processor: Validating block with slot: 7226 +2024-09-22T00:44:55.387534Z INFO fork_choice_control::block_processor: Validating block with slot: 7076 +2024-09-22T00:44:55.388448Z INFO fork_choice_control::block_processor: Validating block with slot: 7227 +2024-09-22T00:44:55.388858Z INFO fork_choice_control::block_processor: Validating block with slot: 7225 +2024-09-22T00:44:55.389734Z INFO fork_choice_control::block_processor: Validating block with slot: 7077 +2024-09-22T00:44:55.390793Z INFO fork_choice_control::block_processor: Validating block with slot: 7078 +2024-09-22T00:44:55.395492Z INFO fork_choice_control::block_processor: Validating block with slot: 7079 +2024-09-22T00:44:55.395899Z INFO fork_choice_control::block_processor: Validating block with slot: 7229 +2024-09-22T00:44:55.396613Z INFO fork_choice_control::block_processor: Validating block with slot: 7082 +2024-09-22T00:44:55.398388Z INFO fork_choice_control::block_processor: Validating block with slot: 7009 +2024-09-22T00:44:55.398622Z INFO fork_choice_control::block_processor: Validating block with slot: 7080 +2024-09-22T00:44:55.399006Z INFO fork_choice_control::block_processor: Validating block with slot: 7231 +2024-09-22T00:44:55.399231Z INFO fork_choice_control::block_processor: Validating block with slot: 7083 +2024-09-22T00:44:55.399621Z INFO fork_choice_control::block_processor: Validating block with slot: 7228 +2024-09-22T00:44:55.400776Z INFO fork_choice_control::block_processor: Validating block with slot: 7081 +2024-09-22T00:44:55.400815Z INFO fork_choice_control::block_processor: Validating block with slot: 7010 +2024-09-22T00:44:55.401965Z INFO fork_choice_control::block_processor: Validating block with slot: 7232 +2024-09-22T00:44:55.402519Z INFO fork_choice_control::block_processor: Validating block with slot: 7084 +2024-09-22T00:44:55.402866Z INFO fork_choice_control::block_processor: Validating block with slot: 7011 +2024-09-22T00:44:55.403039Z INFO fork_choice_control::block_processor: Validating block with slot: 7233 +2024-09-22T00:44:55.407417Z INFO fork_choice_control::block_processor: Validating block with slot: 7085 +2024-09-22T00:44:55.408079Z INFO fork_choice_control::block_processor: Validating block with slot: 7012 +2024-09-22T00:44:55.409722Z INFO fork_choice_control::block_processor: Validating block with slot: 7008 +2024-09-22T00:44:55.410281Z INFO fork_choice_control::block_processor: Validating block with slot: 7086 +2024-09-22T00:44:55.410980Z INFO fork_choice_control::block_processor: Validating block with slot: 7014 +2024-09-22T00:44:55.412011Z INFO fork_choice_control::block_processor: Validating block with slot: 7087 +2024-09-22T00:44:55.415022Z INFO fork_choice_control::block_processor: Validating block with slot: 7015 +2024-09-22T00:44:55.415516Z INFO fork_choice_control::block_processor: Validating block with slot: 7088 +2024-09-22T00:44:55.416250Z INFO fork_choice_control::block_processor: Validating block with slot: 7018 +2024-09-22T00:44:55.416599Z INFO fork_choice_control::block_processor: Validating block with slot: 7013 +2024-09-22T00:44:55.416918Z INFO fork_choice_control::block_processor: Validating block with slot: 7019 +2024-09-22T00:44:55.417322Z INFO fork_choice_control::block_processor: Validating block with slot: 7020 +2024-09-22T00:44:55.417501Z INFO fork_choice_control::block_processor: Validating block with slot: 7234 +2024-09-22T00:44:55.417998Z INFO fork_choice_control::block_processor: Validating block with slot: 7089 +2024-09-22T00:44:55.418562Z INFO fork_choice_control::block_processor: Validating block with slot: 7022 +2024-09-22T00:44:55.418797Z INFO fork_choice_control::block_processor: Validating block with slot: 7235 +2024-09-22T00:44:55.419742Z INFO fork_choice_control::block_processor: Validating block with slot: 7090 +2024-09-22T00:44:55.420453Z INFO fork_choice_control::block_processor: Validating block with slot: 7023 +2024-09-22T00:44:55.421035Z INFO fork_choice_control::block_processor: Validating block with slot: 7236 +2024-09-22T00:44:55.424233Z INFO fork_choice_control::block_processor: Validating block with slot: 7091 +2024-09-22T00:44:55.425583Z INFO fork_choice_control::block_processor: Validating block with slot: 7238 +2024-09-22T00:44:55.426113Z INFO fork_choice_control::block_processor: Validating block with slot: 7092 +2024-09-22T00:44:55.426807Z INFO fork_choice_control::block_processor: Validating block with slot: 7024 +2024-09-22T00:44:55.427514Z INFO fork_choice_control::block_processor: Validating block with slot: 7025 +2024-09-22T00:44:55.428131Z INFO fork_choice_control::block_processor: Validating block with slot: 7239 +2024-09-22T00:44:55.429247Z INFO fork_choice_control::block_processor: Validating block with slot: 7093 +2024-09-22T00:44:55.429317Z INFO fork_choice_control::block_processor: Validating block with slot: 7026 +2024-09-22T00:44:55.430518Z INFO fork_choice_control::block_processor: Validating block with slot: 7027 +2024-09-22T00:44:55.430581Z INFO fork_choice_control::block_processor: Validating block with slot: 7028 +2024-09-22T00:44:55.434980Z INFO fork_choice_control::block_processor: Validating block with slot: 7094 +2024-09-22T00:44:55.435443Z INFO fork_choice_control::block_processor: Validating block with slot: 7095 +2024-09-22T00:44:55.436176Z INFO fork_choice_control::block_processor: Validating block with slot: 7096 +2024-09-22T00:44:55.436523Z INFO fork_choice_control::block_processor: Validating block with slot: 7097 +2024-09-22T00:44:55.437950Z INFO fork_choice_control::block_processor: Validating block with slot: 7098 +2024-09-22T00:44:55.438138Z INFO fork_choice_control::block_processor: Validating block with slot: 7241 +2024-09-22T00:44:55.439134Z INFO fork_choice_control::block_processor: Validating block with slot: 7099 +2024-09-22T00:44:55.439232Z INFO fork_choice_control::block_processor: Validating block with slot: 7240 +2024-09-22T00:44:55.440537Z INFO fork_choice_control::block_processor: Validating block with slot: 7242 +2024-09-22T00:44:55.442267Z INFO fork_choice_control::block_processor: Validating block with slot: 7100 +2024-09-22T00:44:55.442856Z INFO fork_choice_control::block_processor: Validating block with slot: 7101 +2024-09-22T00:44:55.443874Z INFO fork_choice_control::block_processor: Validating block with slot: 7244 +2024-09-22T00:44:55.443894Z INFO fork_choice_control::block_processor: Validating block with slot: 7017 +2024-09-22T00:44:55.444239Z INFO fork_choice_control::block_processor: Validating block with slot: 7016 +2024-09-22T00:44:55.445413Z INFO fork_choice_control::block_processor: Validating block with slot: 7102 +2024-09-22T00:44:55.447552Z INFO fork_choice_control::block_processor: Validating block with slot: 7029 +2024-09-22T00:44:55.447582Z INFO fork_choice_control::block_processor: Validating block with slot: 7030 +2024-09-22T00:44:55.447809Z INFO fork_choice_control::block_processor: Validating block with slot: 7103 +2024-09-22T00:44:55.448788Z INFO fork_choice_control::block_processor: Validating block with slot: 7031 +2024-09-22T00:44:55.448889Z INFO fork_choice_control::block_processor: Validating block with slot: 7104 +2024-09-22T00:44:55.450523Z INFO fork_choice_control::block_processor: Validating block with slot: 7033 +2024-09-22T00:44:55.451167Z INFO fork_choice_control::block_processor: Validating block with slot: 7035 +2024-09-22T00:44:55.451913Z INFO fork_choice_control::block_processor: Validating block with slot: 7105 +2024-09-22T00:44:55.452423Z INFO fork_choice_control::block_processor: Validating block with slot: 7036 +2024-09-22T00:44:55.453827Z INFO fork_choice_control::block_processor: Validating block with slot: 7245 +2024-09-22T00:44:55.455186Z INFO fork_choice_control::block_processor: Validating block with slot: 7106 +2024-09-22T00:44:55.455386Z INFO fork_choice_control::block_processor: Validating block with slot: 7246 +2024-09-22T00:44:55.455956Z INFO fork_choice_control::block_processor: Validating block with slot: 7243 +2024-09-22T00:44:55.457411Z INFO fork_choice_control::block_processor: Validating block with slot: 7107 +2024-09-22T00:44:55.465176Z INFO fork_choice_control::block_processor: Validating block with slot: 4855 +2024-09-22T00:44:55.466912Z INFO fork_choice_control::block_processor: Validating block with slot: 7247 +2024-09-22T00:44:55.467471Z INFO fork_choice_control::block_processor: Validating block with slot: 7108 +2024-09-22T00:44:55.470758Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc1961e4d8e9ad47e7fe601d39bbd2cb0d7b1870ce89d7f4c51867c1336ed179e, slot: 4855 +2024-09-22T00:44:55.471758Z INFO fork_choice_control::block_processor: Validating block with slot: 7034 +2024-09-22T00:44:55.486588Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4855 +2024-09-22T00:44:55.486612Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4855 +2024-09-22T00:44:55.511497Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 150, root: 0x564f646566824ecc2417a0cc53e68df356d85e093e447be8fe87a525b5268b5a, head slot: 4855, head root: 0xc1961e4d8e9ad47e7fe601d39bbd2cb0d7b1870ce89d7f4c51867c1336ed179e) +2024-09-22T00:44:55.511510Z INFO fork_choice_control::block_processor: Validating block with slot: 4856 +2024-09-22T00:44:55.514551Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4412f4bf29ae1ebddda5da88f9ab8812a54924536e6b8245d4662195b8c514ff, slot: 4856 +2024-09-22T00:44:55.525649Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4856 +2024-09-22T00:44:55.525670Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4856 +2024-09-22T00:44:55.544286Z INFO fork_choice_control::block_processor: Validating block with slot: 4857 +2024-09-22T00:44:55.546570Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x38d1a4fb17a60819f8ad0b44abd03f1db3d5b0b55eded18fb7d0877b35519084, slot: 4857 +2024-09-22T00:44:55.559138Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4857 +2024-09-22T00:44:55.559159Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4857 +2024-09-22T00:44:55.578392Z INFO fork_choice_control::block_processor: Validating block with slot: 4858 +2024-09-22T00:44:55.580966Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6cfb37018ed954d40a6f17e83034dc1dfddc896c116f2e0a31885ebbe4748ce6, slot: 4858 +2024-09-22T00:44:55.596863Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4858 +2024-09-22T00:44:55.596886Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4858 +2024-09-22T00:44:55.603898Z INFO fork_choice_control::block_processor: Validating block with slot: 7109 +2024-09-22T00:44:55.603896Z INFO fork_choice_control::block_processor: Validating block with slot: 7110 +2024-09-22T00:44:55.603931Z INFO fork_choice_control::block_processor: Validating block with slot: 7249 +2024-09-22T00:44:55.603961Z INFO fork_choice_control::block_processor: Validating block with slot: 7248 +2024-09-22T00:44:55.608053Z INFO fork_choice_control::block_processor: Validating block with slot: 7111 +2024-09-22T00:44:55.608327Z INFO fork_choice_control::block_processor: Validating block with slot: 7112 +2024-09-22T00:44:55.611262Z INFO fork_choice_control::block_processor: Validating block with slot: 7113 +2024-09-22T00:44:55.611518Z INFO fork_choice_control::block_processor: Validating block with slot: 7250 +2024-09-22T00:44:55.612351Z INFO fork_choice_control::block_processor: Validating block with slot: 7114 +2024-09-22T00:44:55.613034Z INFO fork_choice_control::block_processor: Validating block with slot: 7115 +2024-09-22T00:44:55.618253Z INFO fork_choice_control::block_processor: Validating block with slot: 7116 +2024-09-22T00:44:55.618598Z INFO fork_choice_control::block_processor: Validating block with slot: 7117 +2024-09-22T00:44:55.619535Z INFO fork_choice_control::block_processor: Validating block with slot: 7118 +2024-09-22T00:44:55.619826Z INFO fork_choice_control::block_processor: Validating block with slot: 7038 +2024-09-22T00:44:55.620334Z INFO fork_choice_control::block_processor: Validating block with slot: 7251 +2024-09-22T00:44:55.621236Z INFO fork_choice_control::block_processor: Validating block with slot: 7039 +2024-09-22T00:44:55.621758Z INFO fork_choice_control::block_processor: Validating block with slot: 7040 +2024-09-22T00:44:55.622477Z INFO fork_choice_control::block_processor: Validating block with slot: 7041 +2024-09-22T00:44:55.623002Z INFO fork_choice_control::block_processor: Validating block with slot: 7042 +2024-09-22T00:44:55.623402Z INFO fork_choice_control::block_processor: Validating block with slot: 7037 +2024-09-22T00:44:55.624215Z INFO fork_choice_control::block_processor: Validating block with slot: 7043 +2024-09-22T00:44:55.624514Z INFO fork_choice_control::block_processor: Validating block with slot: 7044 +2024-09-22T00:44:55.624744Z INFO fork_choice_control::block_processor: Validating block with slot: 7045 +2024-09-22T00:44:55.625184Z INFO fork_choice_control::block_processor: Validating block with slot: 7119 +2024-09-22T00:44:55.625981Z INFO fork_choice_control::block_processor: Validating block with slot: 7252 +2024-09-22T00:44:55.626109Z INFO fork_choice_control::block_processor: Validating block with slot: 7122 +2024-09-22T00:44:55.627765Z INFO fork_choice_control::block_processor: Validating block with slot: 7253 +2024-09-22T00:44:55.628697Z INFO fork_choice_control::block_processor: Validating block with slot: 7255 +2024-09-22T00:44:55.628880Z INFO fork_choice_control::block_processor: Validating block with slot: 7120 +2024-09-22T00:44:55.629949Z INFO fork_choice_control::block_processor: Validating block with slot: 7256 +2024-09-22T00:44:55.631445Z INFO fork_choice_control::block_processor: Validating block with slot: 7123 +2024-09-22T00:44:55.631923Z INFO fork_choice_control::block_processor: Validating block with slot: 7046 +2024-09-22T00:44:55.633008Z INFO fork_choice_control::block_processor: Validating block with slot: 7124 +2024-09-22T00:44:55.634084Z INFO fork_choice_control::block_processor: Validating block with slot: 7257 +2024-09-22T00:44:55.634042Z INFO fork_choice_control::block_processor: Validating block with slot: 7254 +2024-09-22T00:44:55.635001Z INFO fork_choice_control::block_processor: Validating block with slot: 7047 +2024-09-22T00:44:55.635667Z INFO fork_choice_control::block_processor: Validating block with slot: 7125 +2024-09-22T00:44:55.636380Z INFO fork_choice_control::block_processor: Validating block with slot: 7048 +2024-09-22T00:44:55.637264Z INFO fork_choice_control::block_processor: Validating block with slot: 7126 +2024-09-22T00:44:55.637621Z INFO fork_choice_control::block_processor: Validating block with slot: 7049 +2024-09-22T00:44:55.638339Z INFO fork_choice_control::block_processor: Validating block with slot: 7127 +2024-09-22T00:44:55.638585Z INFO fork_choice_control::block_processor: Validating block with slot: 7128 +2024-09-22T00:44:55.638663Z INFO fork_choice_control::block_processor: Validating block with slot: 7050 +2024-09-22T00:44:55.639025Z INFO fork_choice_control::block_processor: Validating block with slot: 7129 +2024-09-22T00:44:55.639428Z INFO fork_choice_control::block_processor: Validating block with slot: 7051 +2024-09-22T00:44:55.639674Z INFO fork_choice_control::block_processor: Validating block with slot: 7052 +2024-09-22T00:44:55.640264Z INFO fork_choice_control::block_processor: Validating block with slot: 7053 +2024-09-22T00:44:55.640668Z INFO fork_choice_control::block_processor: Validating block with slot: 7258 +2024-09-22T00:44:55.640716Z INFO fork_choice_control::block_processor: Validating block with slot: 7130 +2024-09-22T00:44:55.640913Z INFO fork_choice_control::block_processor: Validating block with slot: 7259 +2024-09-22T00:44:55.642165Z INFO fork_choice_control::block_processor: Validating block with slot: 7131 +2024-09-22T00:44:55.642778Z INFO fork_choice_control::block_processor: Validating block with slot: 4859 +2024-09-22T00:44:55.647789Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8ba5e658c606da2faab5809666fe62ae1d125c4c4fa72bffc8c230022f30e40a, slot: 4859 +2024-09-22T00:44:55.670477Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4859 +2024-09-22T00:44:55.670496Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4859 +2024-09-22T00:44:55.676607Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 4800 +2024-09-22T00:44:55.693066Z INFO fork_choice_control::block_processor: Validating block with slot: 4860 +2024-09-22T00:44:55.694281Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5a979d51c278170c94c5440ac1650cc448ba441f6cf98310dce468f6968264bf, slot: 4860 +2024-09-22T00:44:55.709976Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4860 +2024-09-22T00:44:55.710038Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4860 +2024-09-22T00:44:55.730513Z INFO fork_choice_control::block_processor: Validating block with slot: 7132 +2024-09-22T00:44:55.730533Z INFO fork_choice_control::block_processor: Validating block with slot: 7261 +2024-09-22T00:44:55.730590Z INFO fork_choice_control::block_processor: Validating block with slot: 7133 +2024-09-22T00:44:55.731006Z INFO fork_choice_control::block_processor: Validating block with slot: 7262 +2024-09-22T00:44:55.731214Z INFO fork_choice_control::block_processor: Validating block with slot: 7134 +2024-09-22T00:44:55.731364Z INFO fork_choice_control::block_processor: Validating block with slot: 7135 +2024-09-22T00:44:55.733515Z INFO fork_choice_control::block_processor: Validating block with slot: 7263 +2024-09-22T00:44:55.734562Z INFO fork_choice_control::block_processor: Validating block with slot: 7054 +2024-09-22T00:44:55.734891Z INFO fork_choice_control::block_processor: Validating block with slot: 7055 +2024-09-22T00:44:55.735808Z INFO fork_choice_control::block_processor: Validating block with slot: 7260 +2024-09-22T00:44:55.736595Z INFO fork_choice_control::block_processor: Validating block with slot: 7058 +2024-09-22T00:44:55.737675Z INFO fork_choice_control::block_processor: Validating block with slot: 7059 +2024-09-22T00:44:55.738156Z INFO fork_choice_control::block_processor: Validating block with slot: 7060 +2024-09-22T00:44:55.739878Z INFO fork_choice_control::block_processor: Validating block with slot: 7062 +2024-09-22T00:44:55.739887Z INFO fork_choice_control::block_processor: Validating block with slot: 7063 +2024-09-22T00:44:55.739920Z INFO fork_choice_control::block_processor: Validating block with slot: 7061 +2024-09-22T00:44:55.741693Z INFO fork_choice_control::block_processor: Validating block with slot: 7064 +2024-09-22T00:44:55.742111Z INFO fork_choice_control::block_processor: Validating block with slot: 7066 +2024-09-22T00:44:55.743181Z INFO fork_choice_control::block_processor: Validating block with slot: 7056 +2024-09-22T00:44:55.743352Z INFO fork_choice_control::block_processor: Validating block with slot: 7067 +2024-09-22T00:44:55.743497Z INFO fork_choice_control::block_processor: Validating block with slot: 7057 +2024-09-22T00:44:55.743563Z INFO fork_choice_control::block_processor: Validating block with slot: 7068 +2024-09-22T00:44:55.744587Z INFO fork_choice_control::block_processor: Validating block with slot: 7069 +2024-09-22T00:44:55.745192Z INFO fork_choice_control::block_processor: Validating block with slot: 7070 +2024-09-22T00:44:55.745300Z INFO fork_choice_control::block_processor: Validating block with slot: 7071 +2024-09-22T00:44:55.746538Z INFO fork_choice_control::block_processor: Validating block with slot: 4861 +2024-09-22T00:44:55.747246Z INFO fork_choice_control::block_processor: Validating block with slot: 7065 +2024-09-22T00:44:55.749211Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd3d213be3531261bb6eeeb42eea79853af7575e60f74791508f97c1b05cacd17, slot: 4861 +2024-09-22T00:44:55.759344Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4861 +2024-09-22T00:44:55.759368Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4861 +2024-09-22T00:44:55.780153Z INFO fork_choice_control::block_processor: Validating block with slot: 4862 +2024-09-22T00:44:55.782584Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x097321fee9341439c1be623b43c5bc1b1d6478e1329818450dcad657e5cd44b1, slot: 4862 +2024-09-22T00:44:55.793972Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4862 +2024-09-22T00:44:55.793995Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4862 +2024-09-22T00:44:55.814953Z INFO fork_choice_control::block_processor: Validating block with slot: 4863 +2024-09-22T00:44:55.816217Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf458175574d4fd18cdc6e98c737994b8a658c794f9f8dbb85574fb4c4a6e4eb1, slot: 4863 +2024-09-22T00:44:55.823652Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4863 +2024-09-22T00:44:55.823676Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4863 +2024-09-22T00:44:55.845108Z INFO fork_choice_control::block_processor: Validating block with slot: 4865 +2024-09-22T00:44:55.847045Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe645b80358ead03a8f0047295a3b47c2206694493a279c02de4e1e21d6c40b85, slot: 4865 +2024-09-22T00:44:56.050340Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4865 +2024-09-22T00:44:56.050371Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4865 +2024-09-22T00:44:56.065867Z INFO fork_choice_control::block_processor: Validating block with slot: 4866 +2024-09-22T00:44:56.067650Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xebd572b12c75212c2c266ee4a781ba99984021dfd6e9923584056f98a122aede, slot: 4866 +2024-09-22T00:44:56.079392Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4866 +2024-09-22T00:44:56.079423Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4866 +2024-09-22T00:44:56.097711Z INFO fork_choice_control::block_processor: Validating block with slot: 4867 +2024-09-22T00:44:56.100439Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb64d58a9210eb06dd33830aec8a0bf15bd9561f75f7b3c52d6ea22b703f36db2, slot: 4867 +2024-09-22T00:44:56.113782Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4867 +2024-09-22T00:44:56.113809Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4867 +2024-09-22T00:44:56.128858Z INFO fork_choice_control::block_processor: Validating block with slot: 4868 +2024-09-22T00:44:56.131097Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd1b8224eac46f1f31347cf8a1b645367b50e8428e6da67f25ffb3b72aa9d7103, slot: 4868 +2024-09-22T00:44:56.143309Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4868 +2024-09-22T00:44:56.143335Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4868 +2024-09-22T00:44:56.162874Z INFO fork_choice_control::block_processor: Validating block with slot: 4869 +2024-09-22T00:44:56.165306Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd878ea5699a806bf5a65450491053ac9fee63ecbb226620fa50590edc0b3b71a, slot: 4869 +2024-09-22T00:44:56.184549Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4869 +2024-09-22T00:44:56.184608Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4869 +2024-09-22T00:44:56.201920Z INFO fork_choice_control::block_processor: Validating block with slot: 4870 +2024-09-22T00:44:56.203687Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x186a900ad7be5cca49983735014def8cc2824acd87768e7b810d8b8018d92349, slot: 4870 +2024-09-22T00:44:56.218050Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4870 +2024-09-22T00:44:56.218109Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4870 +2024-09-22T00:44:56.243768Z INFO fork_choice_control::block_processor: Validating block with slot: 4871 +2024-09-22T00:44:56.247221Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x78053732627ab225998ac9b943f11c44ab997914c46520919772227cb1bbfb7e, slot: 4871 +2024-09-22T00:44:56.257359Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4871 +2024-09-22T00:44:56.257386Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4871 +2024-09-22T00:44:56.274760Z INFO fork_choice_control::block_processor: Validating block with slot: 4872 +2024-09-22T00:44:56.276971Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xddbe124cc59209409cdce4cc2a3f84816bf139d93c208f0e8edc77c115c998fe, slot: 4872 +2024-09-22T00:44:56.286200Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4872 +2024-09-22T00:44:56.286225Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4872 +2024-09-22T00:44:56.304674Z INFO fork_choice_control::block_processor: Validating block with slot: 4873 +2024-09-22T00:44:56.306651Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe7ae983e0b1977ad4adf6e6cdf4487888fd0f1e3c050430866b5af424ede7752, slot: 4873 +2024-09-22T00:44:56.315507Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4873 +2024-09-22T00:44:56.315534Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4873 +2024-09-22T00:44:56.331992Z INFO fork_choice_control::block_processor: Validating block with slot: 4874 +2024-09-22T00:44:56.333514Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x617ebc605e2fbe6a6124e2981fc865efa805f265821cde66b11c4bc0dca656e4, slot: 4874 +2024-09-22T00:44:56.344288Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4874 +2024-09-22T00:44:56.344314Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4874 +2024-09-22T00:44:56.363064Z INFO fork_choice_control::block_processor: Validating block with slot: 4875 +2024-09-22T00:44:56.364534Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x392c8c4d5d09edf601ffdb1c370b1651367b1ba3bf35f3db277e2a5b614e1898, slot: 4875 +2024-09-22T00:44:56.372063Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4875 +2024-09-22T00:44:56.372093Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4875 +2024-09-22T00:44:56.388463Z INFO fork_choice_control::block_processor: Validating block with slot: 4876 +2024-09-22T00:44:56.389760Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9a142643222a21b56441c87ff3c4443c2ba36258fedef8fdc21536d1f6e6e250, slot: 4876 +2024-09-22T00:44:56.398292Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4876 +2024-09-22T00:44:56.398315Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4876 +2024-09-22T00:44:56.415394Z INFO fork_choice_control::block_processor: Validating block with slot: 4877 +2024-09-22T00:44:56.417268Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf49a9864829ebf71c27be4cd438d214321f8dfeed67acdad1785ef61b8c66ee5, slot: 4877 +2024-09-22T00:44:56.426337Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4877 +2024-09-22T00:44:56.426361Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4877 +2024-09-22T00:44:56.442421Z INFO fork_choice_control::block_processor: Validating block with slot: 4878 +2024-09-22T00:44:56.445032Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbf4eb93c3b26b8ee3cd84a274d7d7e0f176d2718b011fe2b2378a1b14aed79d3, slot: 4878 +2024-09-22T00:44:56.459553Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4878 +2024-09-22T00:44:56.459582Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4878 +2024-09-22T00:44:56.477023Z INFO fork_choice_control::block_processor: Validating block with slot: 4879 +2024-09-22T00:44:56.478109Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe5992e2140e8f20d31a05fda3b4b158536c1a9731517d93326afa31bf4bde00f, slot: 4879 +2024-09-22T00:44:56.483865Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4879 +2024-09-22T00:44:56.483879Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4879 +2024-09-22T00:44:56.500008Z INFO fork_choice_control::block_processor: Validating block with slot: 4880 +2024-09-22T00:44:56.501252Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x51a62c5edf7ffe75e55a2961c13d5758c44d54ae84445cf56bb837cb12bee53c, slot: 4880 +2024-09-22T00:44:56.508896Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4880 +2024-09-22T00:44:56.508931Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4880 +2024-09-22T00:44:56.510198Z INFO fork_choice_control::block_processor: Validating block with slot: 7456 +2024-09-22T00:44:56.525196Z INFO fork_choice_control::block_processor: Validating block with slot: 4881 +2024-09-22T00:44:56.527029Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x23777106d61e7a9fc583e194fe2208a40695e2b5731edf54198e4ff63ffd5909, slot: 4881 +2024-09-22T00:44:56.535747Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4881 +2024-09-22T00:44:56.535768Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4881 +2024-09-22T00:44:56.553245Z INFO fork_choice_control::block_processor: Validating block with slot: 4882 +2024-09-22T00:44:56.553953Z INFO fork_choice_control::block_processor: Validating block with slot: 7457 +2024-09-22T00:44:56.553977Z INFO fork_choice_control::block_processor: Validating block with slot: 7393 +2024-09-22T00:44:56.554109Z INFO fork_choice_control::block_processor: Validating block with slot: 7394 +2024-09-22T00:44:56.554172Z INFO fork_choice_control::block_processor: Validating block with slot: 7395 +2024-09-22T00:44:56.554181Z INFO fork_choice_control::block_processor: Validating block with slot: 7396 +2024-09-22T00:44:56.554586Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x370a3c1b5cb65dc9fe5a47e96dde1a3c7644e993c8bf2b24e56205bfd5bd9b16, slot: 4882 +2024-09-22T00:44:56.554977Z INFO fork_choice_control::block_processor: Validating block with slot: 7392 +2024-09-22T00:44:56.554991Z INFO fork_choice_control::block_processor: Validating block with slot: 7397 +2024-09-22T00:44:56.557278Z INFO fork_choice_control::block_processor: Validating block with slot: 7400 +2024-09-22T00:44:56.557958Z INFO fork_choice_control::block_processor: Validating block with slot: 7401 +2024-09-22T00:44:56.558298Z INFO fork_choice_control::block_processor: Validating block with slot: 7458 +2024-09-22T00:44:56.559969Z INFO fork_choice_control::block_processor: Validating block with slot: 7459 +2024-09-22T00:44:56.560039Z INFO fork_choice_control::block_processor: Validating block with slot: 7460 +2024-09-22T00:44:56.560744Z INFO fork_choice_control::block_processor: Validating block with slot: 7461 +2024-09-22T00:44:56.560984Z INFO fork_choice_control::block_processor: Validating block with slot: 7462 +2024-09-22T00:44:56.564049Z INFO fork_choice_control::block_processor: Validating block with slot: 7463 +2024-09-22T00:44:56.565003Z INFO fork_choice_control::block_processor: Validating block with slot: 7398 +2024-09-22T00:44:56.565322Z INFO fork_choice_control::block_processor: Validating block with slot: 7464 +2024-09-22T00:44:56.565316Z INFO fork_choice_control::block_processor: Validating block with slot: 7399 +2024-09-22T00:44:56.576094Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4882 +2024-09-22T00:44:56.576141Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4882 +2024-09-22T00:44:56.595589Z INFO fork_choice_control::block_processor: Validating block with slot: 4883 +2024-09-22T00:44:56.596702Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe39ced38301d3fed566ef7b4d171490ae361eedaf9924f767253b781cf23c8e8, slot: 4883 +2024-09-22T00:44:56.601399Z INFO fork_choice_control::block_processor: Validating block with slot: 7465 +2024-09-22T00:44:56.601858Z INFO fork_choice_control::block_processor: Validating block with slot: 7466 +2024-09-22T00:44:56.602576Z INFO fork_choice_control::block_processor: Validating block with slot: 7467 +2024-09-22T00:44:56.602609Z INFO fork_choice_control::block_processor: Validating block with slot: 7468 +2024-09-22T00:44:56.602942Z INFO fork_choice_control::block_processor: Validating block with slot: 7469 +2024-09-22T00:44:56.603122Z INFO fork_choice_control::block_processor: Validating block with slot: 7470 +2024-09-22T00:44:56.603684Z INFO fork_choice_control::block_processor: Validating block with slot: 7471 +2024-09-22T00:44:56.603959Z INFO fork_choice_control::block_processor: Validating block with slot: 7472 +2024-09-22T00:44:56.604341Z INFO fork_choice_control::block_processor: Validating block with slot: 7473 +2024-09-22T00:44:56.604969Z INFO fork_choice_control::block_processor: Validating block with slot: 7474 +2024-09-22T00:44:56.605078Z INFO fork_choice_control::block_processor: Validating block with slot: 7328 +2024-09-22T00:44:56.605723Z INFO fork_choice_control::block_processor: Validating block with slot: 7475 +2024-09-22T00:44:56.607294Z INFO fork_choice_control::block_processor: Validating block with slot: 7329 +2024-09-22T00:44:56.607367Z INFO fork_choice_control::block_processor: Validating block with slot: 7333 +2024-09-22T00:44:56.608271Z INFO fork_choice_control::block_processor: Validating block with slot: 7334 +2024-09-22T00:44:56.608581Z INFO fork_choice_control::block_processor: Validating block with slot: 7335 +2024-09-22T00:44:56.609094Z INFO fork_choice_control::block_processor: Validating block with slot: 7476 +2024-09-22T00:44:56.609819Z INFO fork_choice_control::block_processor: Validating block with slot: 7478 +2024-09-22T00:44:56.610581Z INFO fork_choice_control::block_processor: Validating block with slot: 7336 +2024-09-22T00:44:56.611057Z INFO fork_choice_control::block_processor: Validating block with slot: 7479 +2024-09-22T00:44:56.611470Z INFO fork_choice_control::block_processor: Validating block with slot: 7337 +2024-09-22T00:44:56.612138Z INFO fork_choice_control::block_processor: Validating block with slot: 7480 +2024-09-22T00:44:56.613020Z INFO fork_choice_control::block_processor: Validating block with slot: 7331 +2024-09-22T00:44:56.614191Z INFO fork_choice_control::block_processor: Validating block with slot: 7477 +2024-09-22T00:44:56.615655Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4883 +2024-09-22T00:44:56.615651Z INFO fork_choice_control::block_processor: Validating block with slot: 7332 +2024-09-22T00:44:56.615667Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4883 +2024-09-22T00:44:56.634360Z INFO fork_choice_control::block_processor: Validating block with slot: 4884 +2024-09-22T00:44:56.635581Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x98eade108ff5d4a22bac856e0b447879b5d830edc820a007e3195fe86e697802, slot: 4884 +2024-09-22T00:44:56.657457Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4884 +2024-09-22T00:44:56.657480Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4884 +2024-09-22T00:44:56.678737Z INFO fork_choice_control::block_processor: Validating block with slot: 4886 +2024-09-22T00:44:56.681887Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5962a8de6dbb4da65de9a619242f1b538ecce2c10aeeb25740fb199cc31831ea, slot: 4886 +2024-09-22T00:44:56.699992Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4886 +2024-09-22T00:44:56.700043Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4886 +2024-09-22T00:44:56.720634Z INFO fork_choice_control::block_processor: Validating block with slot: 7481 +2024-09-22T00:44:56.720641Z INFO fork_choice_control::block_processor: Validating block with slot: 7483 +2024-09-22T00:44:56.720646Z INFO fork_choice_control::block_processor: Validating block with slot: 7482 +2024-09-22T00:44:56.720684Z INFO fork_choice_control::block_processor: Validating block with slot: 7484 +2024-09-22T00:44:56.720689Z INFO fork_choice_control::block_processor: Validating block with slot: 7403 +2024-09-22T00:44:56.720779Z INFO fork_choice_control::block_processor: Validating block with slot: 7402 +2024-09-22T00:44:56.721894Z INFO fork_choice_control::block_processor: Validating block with slot: 7485 +2024-09-22T00:44:56.723473Z INFO fork_choice_control::block_processor: Validating block with slot: 7486 +2024-09-22T00:44:56.723527Z INFO fork_choice_control::block_processor: Validating block with slot: 7405 +2024-09-22T00:44:56.724501Z INFO fork_choice_control::block_processor: Validating block with slot: 7487 +2024-09-22T00:44:56.724711Z INFO fork_choice_control::block_processor: Validating block with slot: 7406 +2024-09-22T00:44:56.724724Z INFO fork_choice_control::block_processor: Validating block with slot: 7488 +2024-09-22T00:44:56.724776Z INFO fork_choice_control::block_processor: Validating block with slot: 7407 +2024-09-22T00:44:56.725586Z INFO fork_choice_control::block_processor: Validating block with slot: 7489 +2024-09-22T00:44:56.725965Z INFO fork_choice_control::block_processor: Validating block with slot: 7408 +2024-09-22T00:44:56.726180Z INFO fork_choice_control::block_processor: Validating block with slot: 7490 +2024-09-22T00:44:56.727973Z INFO fork_choice_control::block_processor: Validating block with slot: 7491 +2024-09-22T00:44:56.728000Z INFO fork_choice_control::block_processor: Validating block with slot: 7338 +2024-09-22T00:44:56.728217Z INFO fork_choice_control::block_processor: Validating block with slot: 7496 +2024-09-22T00:44:56.728417Z INFO fork_choice_control::block_processor: Validating block with slot: 7404 +2024-09-22T00:44:56.728812Z INFO fork_choice_control::block_processor: Validating block with slot: 7339 +2024-09-22T00:44:56.728923Z INFO fork_choice_control::block_processor: Validating block with slot: 7492 +2024-09-22T00:44:56.729614Z INFO fork_choice_control::block_processor: Validating block with slot: 7497 +2024-09-22T00:44:56.730579Z INFO fork_choice_control::block_processor: Validating block with slot: 7493 +2024-09-22T00:44:56.730632Z INFO fork_choice_control::block_processor: Validating block with slot: 7340 +2024-09-22T00:44:56.730738Z INFO fork_choice_control::block_processor: Validating block with slot: 7494 +2024-09-22T00:44:56.731077Z INFO fork_choice_control::block_processor: Validating block with slot: 7341 +2024-09-22T00:44:56.731641Z INFO fork_choice_control::block_processor: Validating block with slot: 7499 +2024-09-22T00:44:56.731804Z INFO fork_choice_control::block_processor: Validating block with slot: 7342 +2024-09-22T00:44:56.732297Z INFO fork_choice_control::block_processor: Validating block with slot: 7500 +2024-09-22T00:44:56.732325Z INFO fork_choice_control::block_processor: Validating block with slot: 7343 +2024-09-22T00:44:56.732531Z INFO fork_choice_control::block_processor: Validating block with slot: 7501 +2024-09-22T00:44:56.733838Z INFO fork_choice_control::block_processor: Validating block with slot: 7505 +2024-09-22T00:44:56.734007Z INFO fork_choice_control::block_processor: Validating block with slot: 7498 +2024-09-22T00:44:56.735554Z INFO fork_choice_control::block_processor: Validating block with slot: 7506 +2024-09-22T00:44:56.735797Z INFO fork_choice_control::block_processor: Validating block with slot: 7507 +2024-09-22T00:44:56.735891Z INFO fork_choice_control::block_processor: Validating block with slot: 7508 +2024-09-22T00:44:56.736998Z INFO fork_choice_control::block_processor: Validating block with slot: 7512 +2024-09-22T00:44:56.737023Z INFO fork_choice_control::block_processor: Validating block with slot: 7509 +2024-09-22T00:44:56.737076Z INFO fork_choice_control::block_processor: Validating block with slot: 7510 +2024-09-22T00:44:56.737254Z INFO fork_choice_control::block_processor: Validating block with slot: 7511 +2024-09-22T00:44:56.737249Z INFO fork_choice_control::block_processor: Validating block with slot: 7502 +2024-09-22T00:44:56.737345Z INFO fork_choice_control::block_processor: Validating block with slot: 7503 +2024-09-22T00:44:56.738304Z INFO fork_choice_control::block_processor: Validating block with slot: 7514 +2024-09-22T00:44:56.738390Z INFO fork_choice_control::block_processor: Validating block with slot: 7515 +2024-09-22T00:44:56.738985Z INFO fork_choice_control::block_processor: Validating block with slot: 7516 +2024-09-22T00:44:56.739192Z INFO fork_choice_control::block_processor: Validating block with slot: 7517 +2024-09-22T00:44:56.739401Z INFO fork_choice_control::block_processor: Validating block with slot: 7518 +2024-09-22T00:44:56.740143Z INFO fork_choice_control::block_processor: Validating block with slot: 7409 +2024-09-22T00:44:56.740864Z INFO fork_choice_control::block_processor: Validating block with slot: 7347 +2024-09-22T00:44:56.741035Z INFO fork_choice_control::block_processor: Validating block with slot: 7412 +2024-09-22T00:44:56.741156Z INFO fork_choice_control::block_processor: Validating block with slot: 7413 +2024-09-22T00:44:56.741323Z INFO fork_choice_control::block_processor: Validating block with slot: 7345 +2024-09-22T00:44:56.741510Z INFO fork_choice_control::block_processor: Validating block with slot: 7513 +2024-09-22T00:44:56.742025Z INFO fork_choice_control::block_processor: Validating block with slot: 7348 +2024-09-22T00:44:56.742045Z INFO fork_choice_control::block_processor: Validating block with slot: 7414 +2024-09-22T00:44:56.742256Z INFO fork_choice_control::block_processor: Validating block with slot: 7410 +2024-09-22T00:44:56.742609Z INFO fork_choice_control::block_processor: Validating block with slot: 7350 +2024-09-22T00:44:56.743700Z INFO fork_choice_control::block_processor: Validating block with slot: 7415 +2024-09-22T00:44:56.743719Z INFO fork_choice_control::block_processor: Validating block with slot: 7351 +2024-09-22T00:44:56.745828Z INFO fork_choice_control::block_processor: Validating block with slot: 7346 +2024-09-22T00:44:56.746298Z INFO fork_choice_control::block_processor: Validating block with slot: 7411 +2024-09-22T00:44:56.747180Z INFO fork_choice_control::block_processor: Validating block with slot: 7416 +2024-09-22T00:44:56.747563Z INFO fork_choice_control::block_processor: Validating block with slot: 4887 +2024-09-22T00:44:56.748931Z INFO fork_choice_control::block_processor: Validating block with slot: 7352 +2024-09-22T00:44:56.748963Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc90ad08bb07f2f9f19ea54d8c780ffad1f94e1e0fdafd7d1adef30c759f2a750, slot: 4887 +2024-09-22T00:44:56.750383Z INFO fork_choice_control::block_processor: Validating block with slot: 7417 +2024-09-22T00:44:56.750858Z INFO fork_choice_control::block_processor: Validating block with slot: 7353 +2024-09-22T00:44:56.751129Z INFO fork_choice_control::block_processor: Validating block with slot: 7355 +2024-09-22T00:44:56.751107Z INFO fork_choice_control::block_processor: Validating block with slot: 7418 +2024-09-22T00:44:56.751146Z INFO fork_choice_control::block_processor: Validating block with slot: 7419 +2024-09-22T00:44:56.751142Z INFO fork_choice_control::block_processor: Validating block with slot: 7356 +2024-09-22T00:44:56.751391Z INFO fork_choice_control::block_processor: Validating block with slot: 7357 +2024-09-22T00:44:56.752835Z INFO fork_choice_control::block_processor: Validating block with slot: 7420 +2024-09-22T00:44:56.753301Z INFO fork_choice_control::block_processor: Validating block with slot: 7358 +2024-09-22T00:44:56.755150Z INFO fork_choice_control::block_processor: Validating block with slot: 7354 +2024-09-22T00:44:56.760702Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4887 +2024-09-22T00:44:56.760724Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4887 +2024-09-22T00:44:56.829694Z INFO fork_choice_control::block_processor: Validating block with slot: 7421 +2024-09-22T00:44:56.829719Z INFO fork_choice_control::block_processor: Validating block with slot: 7360 +2024-09-22T00:44:56.829737Z INFO fork_choice_control::block_processor: Validating block with slot: 7422 +2024-09-22T00:44:56.829753Z INFO fork_choice_control::block_processor: Validating block with slot: 7361 +2024-09-22T00:44:56.829788Z INFO fork_choice_control::block_processor: Validating block with slot: 7423 +2024-09-22T00:44:56.829840Z INFO fork_choice_control::block_processor: Validating block with slot: 7424 +2024-09-22T00:44:56.829904Z INFO fork_choice_control::block_processor: Validating block with slot: 7359 +2024-09-22T00:44:56.830793Z INFO fork_choice_control::block_processor: Validating block with slot: 7426 +2024-09-22T00:44:56.831073Z INFO fork_choice_control::block_processor: Validating block with slot: 7363 +2024-09-22T00:44:56.832574Z INFO fork_choice_control::block_processor: Validating block with slot: 7364 +2024-09-22T00:44:56.833217Z INFO fork_choice_control::block_processor: Validating block with slot: 7365 +2024-09-22T00:44:56.833522Z INFO fork_choice_control::block_processor: Validating block with slot: 7366 +2024-09-22T00:44:56.834053Z INFO fork_choice_control::block_processor: Validating block with slot: 7367 +2024-09-22T00:44:56.834528Z INFO fork_choice_control::block_processor: Validating block with slot: 7369 +2024-09-22T00:44:56.835085Z INFO fork_choice_control::block_processor: Validating block with slot: 7370 +2024-09-22T00:44:56.835212Z INFO fork_choice_control::block_processor: Validating block with slot: 7371 +2024-09-22T00:44:56.835334Z INFO fork_choice_control::block_processor: Validating block with slot: 7427 +2024-09-22T00:44:56.836153Z INFO fork_choice_control::block_processor: Validating block with slot: 7428 +2024-09-22T00:44:56.837719Z INFO fork_choice_control::block_processor: Validating block with slot: 7429 +2024-09-22T00:44:56.837722Z INFO fork_choice_control::block_processor: Validating block with slot: 7432 +2024-09-22T00:44:56.838762Z INFO fork_choice_control::block_processor: Validating block with slot: 7433 +2024-09-22T00:44:56.839034Z INFO fork_choice_control::block_processor: Validating block with slot: 7372 +2024-09-22T00:44:56.839633Z INFO fork_choice_control::block_processor: Validating block with slot: 7373 +2024-09-22T00:44:56.839751Z INFO fork_choice_control::block_processor: Validating block with slot: 7374 +2024-09-22T00:44:56.839778Z INFO fork_choice_control::block_processor: Validating block with slot: 7375 +2024-09-22T00:44:56.839794Z INFO fork_choice_control::block_processor: Validating block with slot: 7376 +2024-09-22T00:44:56.841144Z INFO fork_choice_control::block_processor: Validating block with slot: 7377 +2024-09-22T00:44:56.841165Z INFO fork_choice_control::block_processor: Validating block with slot: 7431 +2024-09-22T00:44:56.842187Z INFO fork_choice_control::block_processor: Validating block with slot: 7436 +2024-09-22T00:44:56.842217Z INFO fork_choice_control::block_processor: Validating block with slot: 7368 +2024-09-22T00:44:56.842743Z INFO fork_choice_control::block_processor: Validating block with slot: 7437 +2024-09-22T00:44:56.843206Z INFO fork_choice_control::block_processor: Validating block with slot: 7378 +2024-09-22T00:44:56.843350Z INFO fork_choice_control::block_processor: Validating block with slot: 7438 +2024-09-22T00:44:56.843753Z INFO fork_choice_control::block_processor: Validating block with slot: 7439 +2024-09-22T00:44:56.844767Z INFO fork_choice_control::block_processor: Validating block with slot: 7440 +2024-09-22T00:44:56.845382Z INFO fork_choice_control::block_processor: Validating block with slot: 7441 +2024-09-22T00:44:56.845561Z INFO fork_choice_control::block_processor: Validating block with slot: 7430 +2024-09-22T00:44:56.846670Z INFO fork_choice_control::block_processor: Validating block with slot: 7380 +2024-09-22T00:44:56.846839Z INFO fork_choice_control::block_processor: Validating block with slot: 7382 +2024-09-22T00:44:56.847145Z INFO fork_choice_control::block_processor: Validating block with slot: 7383 +2024-09-22T00:44:56.847433Z INFO fork_choice_control::block_processor: Validating block with slot: 7519 +2024-09-22T00:44:56.847827Z INFO fork_choice_control::block_processor: Validating block with slot: 4888 +2024-09-22T00:44:56.848639Z INFO fork_choice_control::block_processor: Validating block with slot: 7435 +2024-09-22T00:44:56.848652Z INFO fork_choice_control::block_processor: Validating block with slot: 7379 +2024-09-22T00:44:56.848845Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb998f2211d2034376f702712e7ac65a7fe89db5bd4a990b99e4e1f8d1e4de645, slot: 4888 +2024-09-22T00:44:56.848916Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 151, root: 0x7e9e0b7c46a719a4392d542ef28103620aea1da6b60c77bd73872f1350bd7869, head slot: 4887, head root: 0xc90ad08bb07f2f9f19ea54d8c780ffad1f94e1e0fdafd7d1adef30c759f2a750) +2024-09-22T00:44:56.852956Z INFO fork_choice_control::block_processor: Validating block with slot: 7381 +2024-09-22T00:44:56.860227Z INFO fork_choice_control::block_processor: Validating block with slot: 7384 +2024-09-22T00:44:56.860266Z INFO fork_choice_control::block_processor: Validating block with slot: 7385 +2024-09-22T00:44:56.860272Z INFO fork_choice_control::block_processor: Validating block with slot: 7386 +2024-09-22T00:44:56.860770Z INFO fork_choice_control::block_processor: Validating block with slot: 7387 +2024-09-22T00:44:56.860857Z INFO fork_choice_control::block_processor: Validating block with slot: 7388 +2024-09-22T00:44:56.861127Z INFO fork_choice_control::block_processor: Validating block with slot: 7389 +2024-09-22T00:44:56.862107Z INFO fork_choice_control::block_processor: Validating block with slot: 7390 +2024-09-22T00:44:56.862110Z INFO fork_choice_control::block_processor: Validating block with slot: 7391 +2024-09-22T00:44:56.869798Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4888 +2024-09-22T00:44:56.869817Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4888 +2024-09-22T00:44:56.882696Z INFO fork_choice_control::block_processor: Validating block with slot: 7443 +2024-09-22T00:44:56.882724Z INFO fork_choice_control::block_processor: Validating block with slot: 7445 +2024-09-22T00:44:56.882737Z INFO fork_choice_control::block_processor: Validating block with slot: 7447 +2024-09-22T00:44:56.882749Z INFO fork_choice_control::block_processor: Validating block with slot: 7442 +2024-09-22T00:44:56.882766Z INFO fork_choice_control::block_processor: Validating block with slot: 7448 +2024-09-22T00:44:56.882812Z INFO fork_choice_control::block_processor: Validating block with slot: 7444 +2024-09-22T00:44:56.884422Z INFO fork_choice_control::block_processor: Validating block with slot: 7449 +2024-09-22T00:44:56.884419Z INFO fork_choice_control::block_processor: Validating block with slot: 7446 +2024-09-22T00:44:56.885246Z INFO fork_choice_control::block_processor: Validating block with slot: 7450 +2024-09-22T00:44:56.885875Z INFO fork_choice_control::block_processor: Validating block with slot: 7451 +2024-09-22T00:44:56.889345Z INFO fork_choice_control::block_processor: Validating block with slot: 4889 +2024-09-22T00:44:56.890637Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x28f223d59283c36e6e4c32bcf9f5c6a51dd84521cb0bac158c31811435da8a0a, slot: 4889 +2024-09-22T00:44:56.899656Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4889 +2024-09-22T00:44:56.899677Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4889 +2024-09-22T00:44:56.902036Z INFO fork_choice_control::block_processor: Validating block with slot: 7454 +2024-09-22T00:44:56.902062Z INFO fork_choice_control::block_processor: Validating block with slot: 7452 +2024-09-22T00:44:56.902072Z INFO fork_choice_control::block_processor: Validating block with slot: 7453 +2024-09-22T00:44:56.902064Z INFO fork_choice_control::block_processor: Validating block with slot: 7455 +2024-09-22T00:44:56.919762Z INFO fork_choice_control::block_processor: Validating block with slot: 4890 +2024-09-22T00:44:56.921068Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5b391e750a1518712de43465fd296444cae743ef0a1ec65b9a40ca26b3e1e630, slot: 4890 +2024-09-22T00:44:56.931532Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4890 +2024-09-22T00:44:56.931554Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4890 +2024-09-22T00:44:56.951254Z INFO fork_choice_control::block_processor: Validating block with slot: 4891 +2024-09-22T00:44:56.952308Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x558e84cd0d251560fec82c8c87e670e0c3aad1dc852c70cef4b639e99c73636b, slot: 4891 +2024-09-22T00:44:56.959300Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4891 +2024-09-22T00:44:56.959326Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4891 +2024-09-22T00:44:56.978957Z INFO fork_choice_control::block_processor: Validating block with slot: 4892 +2024-09-22T00:44:56.980088Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xced346523790ee2d37dcbc7f9ee7f0952a5346bc3f4029b921622c4053d96ce9, slot: 4892 +2024-09-22T00:44:56.987470Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4892 +2024-09-22T00:44:56.987491Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4892 +2024-09-22T00:44:56.999494Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 4832 +2024-09-22T00:44:57.012264Z INFO fork_choice_control::block_processor: Validating block with slot: 4893 +2024-09-22T00:44:57.013399Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe165746f6683f504e207935435cb44ce04028d02200febfb8ef97a6364f468d1, slot: 4893 +2024-09-22T00:44:57.020676Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4893 +2024-09-22T00:44:57.020701Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4893 +2024-09-22T00:44:57.041480Z INFO fork_choice_control::block_processor: Validating block with slot: 4894 +2024-09-22T00:44:57.043290Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb1460f84dc4b8fe01224424924ac0b2ff43802113e5055303b81f6d4e1b74cf3, slot: 4894 +2024-09-22T00:44:57.051471Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4894 +2024-09-22T00:44:57.051492Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4894 +2024-09-22T00:44:57.072814Z INFO fork_choice_control::block_processor: Validating block with slot: 4895 +2024-09-22T00:44:57.075688Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x973dcd7ff2102b8b81d5d582012334c309cfaf0f9edfd642c83a83ecad167368, slot: 4895 +2024-09-22T00:44:57.087829Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4895 +2024-09-22T00:44:57.087845Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4895 +2024-09-22T00:44:57.107508Z INFO fork_choice_control::block_processor: Validating block with slot: 4896 +2024-09-22T00:44:57.109225Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5b904ac29b67928adbb0db1b68f1107e516dae13af860a248028b29a5316c1b6, slot: 4896 +2024-09-22T00:44:57.224978Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4896 +2024-09-22T00:44:57.224997Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4896 +2024-09-22T00:44:57.235745Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 4896) +2024-09-22T00:44:57.235908Z INFO fork_choice_control::block_processor: Validating block with slot: 4897 +2024-09-22T00:44:57.236878Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x60171bfde260a5fc5c4c8d6c228f6492a03608eaea36cd7961618ceb0e773142, slot: 4897 +2024-09-22T00:44:57.314927Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4897 +2024-09-22T00:44:57.314948Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4897 +2024-09-22T00:44:57.326818Z INFO fork_choice_control::block_processor: Validating block with slot: 4898 +2024-09-22T00:44:57.328536Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0c32e6e7567a480cace47a332820e3a44f66a19d0b7beb85e0879517e3b5da1c, slot: 4898 +2024-09-22T00:44:57.339659Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4898 +2024-09-22T00:44:57.339888Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4898 +2024-09-22T00:44:57.351660Z INFO fork_choice_control::block_processor: Validating block with slot: 4899 +2024-09-22T00:44:57.353083Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4bf15d251520f527582ef5ef59dcb830b38000fa5f2d423b0ba499cee224ba83, slot: 4899 +2024-09-22T00:44:57.362634Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4899 +2024-09-22T00:44:57.362656Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4899 +2024-09-22T00:44:57.375957Z INFO fork_choice_control::block_processor: Validating block with slot: 4900 +2024-09-22T00:44:57.377103Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x606dc94cc99fae9a2d09a081ddabbb40e16e827428975a5d783246f71685bcb6, slot: 4900 +2024-09-22T00:44:57.384510Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4900 +2024-09-22T00:44:57.384536Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4900 +2024-09-22T00:44:57.396773Z INFO fork_choice_control::block_processor: Validating block with slot: 4901 +2024-09-22T00:44:57.398115Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6872e55cf5b3aba98f5cc532cbed5eb1e81257d2ca93c9d194301b74d6e69677, slot: 4901 +2024-09-22T00:44:57.404983Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4901 +2024-09-22T00:44:57.404997Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4901 +2024-09-22T00:44:57.417389Z INFO fork_choice_control::block_processor: Validating block with slot: 4902 +2024-09-22T00:44:57.419802Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x70c4252c2cdfee265b270f6bfdf3beb161604f9672367a018d2776d9a1300082, slot: 4902 +2024-09-22T00:44:57.431211Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4902 +2024-09-22T00:44:57.431233Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4902 +2024-09-22T00:44:57.444618Z INFO fork_choice_control::block_processor: Validating block with slot: 4903 +2024-09-22T00:44:57.445672Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5054cd6bfa608f2ec866681ec66543825e689416e2f38ee747956a67a116b077, slot: 4903 +2024-09-22T00:44:57.457066Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4903 +2024-09-22T00:44:57.457120Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4903 +2024-09-22T00:44:57.470811Z INFO fork_choice_control::block_processor: Validating block with slot: 4904 +2024-09-22T00:44:57.472176Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf8d2f7ce648bec2e8ede10fedac11512a6b080e85829740748fae57da717f779, slot: 4904 +2024-09-22T00:44:57.481434Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4904 +2024-09-22T00:44:57.481453Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4904 +2024-09-22T00:44:57.495735Z INFO fork_choice_control::block_processor: Validating block with slot: 4905 +2024-09-22T00:44:57.497330Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaaad9057a273f9ad81009bad035fd97900cec9dcf8d1e5548568aaf88fd41da0, slot: 4905 +2024-09-22T00:44:57.504522Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4905 +2024-09-22T00:44:57.504538Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4905 +2024-09-22T00:44:57.518989Z INFO fork_choice_control::block_processor: Validating block with slot: 4906 +2024-09-22T00:44:57.520785Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0abfd090e4b595366bbbb62947748ba9e213c54bf22bd3cf0c017cfa2fac1630, slot: 4906 +2024-09-22T00:44:57.528473Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4906 +2024-09-22T00:44:57.528495Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4906 +2024-09-22T00:44:57.542516Z INFO fork_choice_control::block_processor: Validating block with slot: 4907 +2024-09-22T00:44:57.543512Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x900b90a9e751234b9375f1fe6b1090039f939ce2d8dfb6d39fd577455408fc0a, slot: 4907 +2024-09-22T00:44:57.549197Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4907 +2024-09-22T00:44:57.549211Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4907 +2024-09-22T00:44:57.563415Z INFO fork_choice_control::block_processor: Validating block with slot: 4908 +2024-09-22T00:44:57.564823Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcbc7dbb4a6a54800712f98402086ea1140b731545a74fcb0f42fb683b68177a5, slot: 4908 +2024-09-22T00:44:57.571477Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4908 +2024-09-22T00:44:57.571491Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4908 +2024-09-22T00:44:57.585977Z INFO fork_choice_control::block_processor: Validating block with slot: 4909 +2024-09-22T00:44:57.587340Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x14c551ac814d75ee07add4d4c98641d17a85d999967d3dbacab2a503aac8daac, slot: 4909 +2024-09-22T00:44:57.594897Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4909 +2024-09-22T00:44:57.594916Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4909 +2024-09-22T00:44:57.609920Z INFO fork_choice_control::block_processor: Validating block with slot: 4910 +2024-09-22T00:44:57.610916Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5743ba0396d5ef2a94fb00b8bafa416b1f80ef1a4a4a02cb9b1dae613bb13500, slot: 4910 +2024-09-22T00:44:57.617693Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4910 +2024-09-22T00:44:57.617713Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4910 +2024-09-22T00:44:57.632006Z INFO fork_choice_control::block_processor: Validating block with slot: 4911 +2024-09-22T00:44:57.632992Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x95a647a82c8383febee7d3fee0a66bec86ae2c2cef1b906e6b3ce15fc089401a, slot: 4911 +2024-09-22T00:44:57.639189Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4911 +2024-09-22T00:44:57.639210Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4911 +2024-09-22T00:44:57.652773Z INFO fork_choice_control::block_processor: Validating block with slot: 4912 +2024-09-22T00:44:57.653775Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7441ab54abecb96efc796e755f914ac6c697b950ef23cb250e716b5973e6e0f0, slot: 4912 +2024-09-22T00:44:57.659876Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4912 +2024-09-22T00:44:57.659895Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4912 +2024-09-22T00:44:57.673165Z INFO fork_choice_control::block_processor: Validating block with slot: 7520 +2024-09-22T00:44:57.674000Z INFO fork_choice_control::block_processor: Validating block with slot: 4913 +2024-09-22T00:44:57.675594Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3a7d09e270b00e0841618389f1b711e3856365b900408c2c0f2edafeada867a6, slot: 4913 +2024-09-22T00:44:57.679002Z INFO fork_choice_control::block_processor: Validating block with slot: 7521 +2024-09-22T00:44:57.679043Z INFO fork_choice_control::block_processor: Validating block with slot: 7522 +2024-09-22T00:44:57.679427Z INFO fork_choice_control::block_processor: Validating block with slot: 7523 +2024-09-22T00:44:57.684062Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4913 +2024-09-22T00:44:57.684075Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4913 +2024-09-22T00:44:57.699291Z INFO fork_choice_control::block_processor: Validating block with slot: 4914 +2024-09-22T00:44:57.701387Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xffc51a6ba3d5372e665cb1c2cbfc73438be059d433d6e42427ebeeb82e031e59, slot: 4914 +2024-09-22T00:44:57.710584Z INFO fork_choice_control::block_processor: Validating block with slot: 7525 +2024-09-22T00:44:57.710596Z INFO fork_choice_control::block_processor: Validating block with slot: 7527 +2024-09-22T00:44:57.710574Z INFO fork_choice_control::block_processor: Validating block with slot: 7526 +2024-09-22T00:44:57.710599Z INFO fork_choice_control::block_processor: Validating block with slot: 7524 +2024-09-22T00:44:57.710620Z INFO fork_choice_control::block_processor: Validating block with slot: 7529 +2024-09-22T00:44:57.710661Z INFO fork_choice_control::block_processor: Validating block with slot: 7530 +2024-09-22T00:44:57.711334Z INFO fork_choice_control::block_processor: Validating block with slot: 7528 +2024-09-22T00:44:57.711836Z INFO fork_choice_control::block_processor: Validating block with slot: 7531 +2024-09-22T00:44:57.712301Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4914 +2024-09-22T00:44:57.712329Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4914 +2024-09-22T00:44:57.712673Z INFO fork_choice_control::block_processor: Validating block with slot: 7532 +2024-09-22T00:44:57.714390Z INFO fork_choice_control::block_processor: Validating block with slot: 7533 +2024-09-22T00:44:57.714413Z INFO fork_choice_control::block_processor: Validating block with slot: 7534 +2024-09-22T00:44:57.714525Z INFO fork_choice_control::block_processor: Validating block with slot: 7536 +2024-09-22T00:44:57.715427Z INFO fork_choice_control::block_processor: Validating block with slot: 7537 +2024-09-22T00:44:57.716184Z INFO fork_choice_control::block_processor: Validating block with slot: 7538 +2024-09-22T00:44:57.716295Z INFO fork_choice_control::block_processor: Validating block with slot: 7539 +2024-09-22T00:44:57.716583Z INFO fork_choice_control::block_processor: Validating block with slot: 7540 +2024-09-22T00:44:57.717429Z INFO fork_choice_control::block_processor: Validating block with slot: 7541 +2024-09-22T00:44:57.717891Z INFO fork_choice_control::block_processor: Validating block with slot: 7542 +2024-09-22T00:44:57.718044Z INFO fork_choice_control::block_processor: Validating block with slot: 7543 +2024-09-22T00:44:57.718520Z INFO fork_choice_control::block_processor: Validating block with slot: 7544 +2024-09-22T00:44:57.729997Z INFO fork_choice_control::block_processor: Validating block with slot: 4915 +2024-09-22T00:44:57.733804Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeebdbec6cc4d560803c316e284d40e34d0cb1029ca4814854cfb3608a5d7f6ad, slot: 4915 +2024-09-22T00:44:57.744103Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4915 +2024-09-22T00:44:57.744592Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4915 +2024-09-22T00:44:57.768216Z INFO fork_choice_control::block_processor: Validating block with slot: 4916 +2024-09-22T00:44:57.769349Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe386163a8fe758d88efe4cb9775016f078b8e00a6240ca803af21753f9ce1239, slot: 4916 +2024-09-22T00:44:57.778512Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4916 +2024-09-22T00:44:57.778535Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4916 +2024-09-22T00:44:57.804977Z INFO fork_choice_control::block_processor: Validating block with slot: 4917 +2024-09-22T00:44:57.810209Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3a6470bc1adfa79692820f1e0588f7786a3e893a87c092fbd3c3b8af0278d7c9, slot: 4917 +2024-09-22T00:44:57.823500Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4917 +2024-09-22T00:44:57.823525Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4917 +2024-09-22T00:44:57.847377Z INFO fork_choice_control::block_processor: Validating block with slot: 4918 +2024-09-22T00:44:57.849439Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x243ddcca304d0aeecc24ee6dd46c97dbb6d0466d55a5fabc902cb89d9d809443, slot: 4918 +2024-09-22T00:44:57.870845Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4918 +2024-09-22T00:44:57.870870Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4918 +2024-09-22T00:44:57.898632Z INFO fork_choice_control::block_processor: Validating block with slot: 4919 +2024-09-22T00:44:57.900692Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x406c8016c9c0e3dacc9ec7c78545783cfd684e2a4d40b44e784e08db224a7bb4, slot: 4919 +2024-09-22T00:44:57.917704Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4919 +2024-09-22T00:44:57.917756Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4919 +2024-09-22T00:44:57.949436Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 152, root: 0xf458175574d4fd18cdc6e98c737994b8a658c794f9f8dbb85574fb4c4a6e4eb1, head slot: 4919, head root: 0x406c8016c9c0e3dacc9ec7c78545783cfd684e2a4d40b44e784e08db224a7bb4) +2024-09-22T00:44:57.950568Z INFO fork_choice_control::block_processor: Validating block with slot: 4920 +2024-09-22T00:44:57.954472Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x641b5ed35328a55f7a00f555206d4d9c7d71b26b11daaa9de398e308d052f534, slot: 4920 +2024-09-22T00:44:57.970504Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4920 +2024-09-22T00:44:57.970531Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4920 +2024-09-22T00:44:58.001573Z INFO fork_choice_control::block_processor: Validating block with slot: 4921 +2024-09-22T00:44:58.003144Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd2092c2a74f2374967c1e7dee7fd51bfd05b2e77c37f560752ea5fe0cbffc9f1, slot: 4921 +2024-09-22T00:44:58.014962Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4921 +2024-09-22T00:44:58.014988Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4921 +2024-09-22T00:44:58.038063Z INFO fork_choice_control::block_processor: Validating block with slot: 4922 +2024-09-22T00:44:58.039127Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x26d05d7126ea79ad4f9363cd6a4e8ebba06e8a892c0a6e0e17c97b4fb6b3fce4, slot: 4922 +2024-09-22T00:44:58.047324Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4922 +2024-09-22T00:44:58.047346Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4922 +2024-09-22T00:44:58.066448Z INFO fork_choice_control::block_processor: Validating block with slot: 4923 +2024-09-22T00:44:58.067594Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x464a9d3f392b2cf164d8a5e6b1765ff68ecf929b2080dab9c390f33ab4f47745, slot: 4923 +2024-09-22T00:44:58.075138Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4923 +2024-09-22T00:44:58.075160Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4923 +2024-09-22T00:44:58.094554Z INFO fork_choice_control::block_processor: Validating block with slot: 4924 +2024-09-22T00:44:58.097281Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4f935e79444d7d0af8b031996365171d498ff5cca2e8108bc37b3f8cc315cc08, slot: 4924 +2024-09-22T00:44:58.108561Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4924 +2024-09-22T00:44:58.108584Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4924 +2024-09-22T00:44:58.112538Z INFO fork_choice_control::block_processor: Validating block with slot: 7545 +2024-09-22T00:44:58.112615Z INFO fork_choice_control::block_processor: Validating block with slot: 7548 +2024-09-22T00:44:58.112619Z INFO fork_choice_control::block_processor: Validating block with slot: 7550 +2024-09-22T00:44:58.112651Z INFO fork_choice_control::block_processor: Validating block with slot: 7549 +2024-09-22T00:44:58.112739Z INFO fork_choice_control::block_processor: Validating block with slot: 7546 +2024-09-22T00:44:58.112844Z INFO fork_choice_control::block_processor: Validating block with slot: 7547 +2024-09-22T00:44:58.113589Z INFO fork_choice_control::block_processor: Validating block with slot: 7552 +2024-09-22T00:44:58.113932Z INFO fork_choice_control::block_processor: Validating block with slot: 7553 +2024-09-22T00:44:58.114091Z INFO fork_choice_control::block_processor: Validating block with slot: 7551 +2024-09-22T00:44:58.115256Z INFO fork_choice_control::block_processor: Validating block with slot: 7554 +2024-09-22T00:44:58.115557Z INFO fork_choice_control::block_processor: Validating block with slot: 7712 +2024-09-22T00:44:58.116364Z INFO fork_choice_control::block_processor: Validating block with slot: 7555 +2024-09-22T00:44:58.116410Z INFO fork_choice_control::block_processor: Validating block with slot: 7713 +2024-09-22T00:44:58.116739Z INFO fork_choice_control::block_processor: Validating block with slot: 7556 +2024-09-22T00:44:58.117035Z INFO fork_choice_control::block_processor: Validating block with slot: 7714 +2024-09-22T00:44:58.118059Z INFO fork_choice_control::block_processor: Validating block with slot: 7557 +2024-09-22T00:44:58.119725Z INFO fork_choice_control::block_processor: Validating block with slot: 7715 +2024-09-22T00:44:58.119740Z INFO fork_choice_control::block_processor: Validating block with slot: 7716 +2024-09-22T00:44:58.119871Z INFO fork_choice_control::block_processor: Validating block with slot: 7560 +2024-09-22T00:44:58.119941Z INFO fork_choice_control::block_processor: Validating block with slot: 7559 +2024-09-22T00:44:58.119950Z INFO fork_choice_control::block_processor: Validating block with slot: 7558 +2024-09-22T00:44:58.120111Z INFO fork_choice_control::block_processor: Validating block with slot: 7717 +2024-09-22T00:44:58.120639Z INFO fork_choice_control::block_processor: Validating block with slot: 7561 +2024-09-22T00:44:58.121110Z INFO fork_choice_control::block_processor: Validating block with slot: 7718 +2024-09-22T00:44:58.121842Z INFO fork_choice_control::block_processor: Validating block with slot: 7562 +2024-09-22T00:44:58.122188Z INFO fork_choice_control::block_processor: Validating block with slot: 7719 +2024-09-22T00:44:58.123548Z INFO fork_choice_control::block_processor: Validating block with slot: 7564 +2024-09-22T00:44:58.123582Z INFO fork_choice_control::block_processor: Validating block with slot: 7721 +2024-09-22T00:44:58.124110Z INFO fork_choice_control::block_processor: Validating block with slot: 7722 +2024-09-22T00:44:58.124203Z INFO fork_choice_control::block_processor: Validating block with slot: 7566 +2024-09-22T00:44:58.124367Z INFO fork_choice_control::block_processor: Validating block with slot: 7720 +2024-09-22T00:44:58.124402Z INFO fork_choice_control::block_processor: Validating block with slot: 7567 +2024-09-22T00:44:58.124649Z INFO fork_choice_control::block_processor: Validating block with slot: 7568 +2024-09-22T00:44:58.125308Z INFO fork_choice_control::block_processor: Validating block with slot: 7569 +2024-09-22T00:44:58.125548Z INFO fork_choice_control::block_processor: Validating block with slot: 7570 +2024-09-22T00:44:58.126318Z INFO fork_choice_control::block_processor: Validating block with slot: 7571 +2024-09-22T00:44:58.126559Z INFO fork_choice_control::block_processor: Validating block with slot: 7572 +2024-09-22T00:44:58.126580Z INFO fork_choice_control::block_processor: Validating block with slot: 7573 +2024-09-22T00:44:58.127524Z INFO fork_choice_control::block_processor: Validating block with slot: 7574 +2024-09-22T00:44:58.127592Z INFO fork_choice_control::block_processor: Validating block with slot: 7575 +2024-09-22T00:44:58.127816Z INFO fork_choice_control::block_processor: Validating block with slot: 7723 +2024-09-22T00:44:58.128006Z INFO fork_choice_control::block_processor: Validating block with slot: 7576 +2024-09-22T00:44:58.128992Z INFO fork_choice_control::block_processor: Validating block with slot: 7584 +2024-09-22T00:44:58.129310Z INFO fork_choice_control::block_processor: Validating block with slot: 7577 +2024-09-22T00:44:58.129383Z INFO fork_choice_control::block_processor: Validating block with slot: 7585 +2024-09-22T00:44:58.129953Z INFO fork_choice_control::block_processor: Validating block with slot: 7565 +2024-09-22T00:44:58.130185Z INFO fork_choice_control::block_processor: Validating block with slot: 7725 +2024-09-22T00:44:58.130307Z INFO fork_choice_control::block_processor: Validating block with slot: 7724 +2024-09-22T00:44:58.130352Z INFO fork_choice_control::block_processor: Validating block with slot: 7726 +2024-09-22T00:44:58.130435Z INFO fork_choice_control::block_processor: Validating block with slot: 7727 +2024-09-22T00:44:58.131264Z INFO fork_choice_control::block_processor: Validating block with slot: 7578 +2024-09-22T00:44:58.131449Z INFO fork_choice_control::block_processor: Validating block with slot: 7586 +2024-09-22T00:44:58.132039Z INFO fork_choice_control::block_processor: Validating block with slot: 7729 +2024-09-22T00:44:58.132155Z INFO fork_choice_control::block_processor: Validating block with slot: 7579 +2024-09-22T00:44:58.132612Z INFO fork_choice_control::block_processor: Validating block with slot: 7730 +2024-09-22T00:44:58.132777Z INFO fork_choice_control::block_processor: Validating block with slot: 7587 +2024-09-22T00:44:58.133165Z INFO fork_choice_control::block_processor: Validating block with slot: 7580 +2024-09-22T00:44:58.133181Z INFO fork_choice_control::block_processor: Validating block with slot: 7588 +2024-09-22T00:44:58.133342Z INFO fork_choice_control::block_processor: Validating block with slot: 7731 +2024-09-22T00:44:58.133691Z INFO fork_choice_control::block_processor: Validating block with slot: 7581 +2024-09-22T00:44:58.134242Z INFO fork_choice_control::block_processor: Validating block with slot: 7589 +2024-09-22T00:44:58.135274Z INFO fork_choice_control::block_processor: Validating block with slot: 7732 +2024-09-22T00:44:58.135753Z INFO fork_choice_control::block_processor: Validating block with slot: 7591 +2024-09-22T00:44:58.135854Z INFO fork_choice_control::block_processor: Validating block with slot: 7592 +2024-09-22T00:44:58.135911Z INFO fork_choice_control::block_processor: Validating block with slot: 7593 +2024-09-22T00:44:58.135998Z INFO fork_choice_control::block_processor: Validating block with slot: 7590 +2024-09-22T00:44:58.136069Z INFO fork_choice_control::block_processor: Validating block with slot: 7582 +2024-09-22T00:44:58.136350Z INFO fork_choice_control::block_processor: Validating block with slot: 7594 +2024-09-22T00:44:58.137251Z INFO fork_choice_control::block_processor: Validating block with slot: 7733 +2024-09-22T00:44:58.137438Z INFO fork_choice_control::block_processor: Validating block with slot: 7734 +2024-09-22T00:44:58.137439Z INFO fork_choice_control::block_processor: Validating block with slot: 7736 +2024-09-22T00:44:58.139159Z INFO fork_choice_control::block_processor: Validating block with slot: 7737 +2024-09-22T00:44:58.139298Z INFO fork_choice_control::block_processor: Validating block with slot: 7741 +2024-09-22T00:44:58.139328Z INFO fork_choice_control::block_processor: Validating block with slot: 7742 +2024-09-22T00:44:58.139729Z INFO fork_choice_control::block_processor: Validating block with slot: 7743 +2024-09-22T00:44:58.139957Z INFO fork_choice_control::block_processor: Validating block with slot: 7738 +2024-09-22T00:44:58.140247Z INFO fork_choice_control::block_processor: Validating block with slot: 7739 +2024-09-22T00:44:58.140253Z INFO fork_choice_control::block_processor: Validating block with slot: 7740 +2024-09-22T00:44:58.140350Z INFO fork_choice_control::block_processor: Validating block with slot: 7595 +2024-09-22T00:44:58.140673Z INFO fork_choice_control::block_processor: Validating block with slot: 7596 +2024-09-22T00:44:58.140758Z INFO fork_choice_control::block_processor: Validating block with slot: 7597 +2024-09-22T00:44:58.142128Z INFO fork_choice_control::block_processor: Validating block with slot: 7598 +2024-09-22T00:44:58.142574Z INFO fork_choice_control::block_processor: Validating block with slot: 7599 +2024-09-22T00:44:58.142622Z INFO fork_choice_control::block_processor: Validating block with slot: 7603 +2024-09-22T00:44:58.143015Z INFO fork_choice_control::block_processor: Validating block with slot: 7600 +2024-09-22T00:44:58.143360Z INFO fork_choice_control::block_processor: Validating block with slot: 7744 +2024-09-22T00:44:58.143423Z INFO fork_choice_control::block_processor: Validating block with slot: 7745 +2024-09-22T00:44:58.143945Z INFO fork_choice_control::block_processor: Validating block with slot: 7602 +2024-09-22T00:44:58.144132Z INFO fork_choice_control::block_processor: Validating block with slot: 7601 +2024-09-22T00:44:58.144332Z INFO fork_choice_control::block_processor: Validating block with slot: 7747 +2024-09-22T00:44:58.144541Z INFO fork_choice_control::block_processor: Validating block with slot: 7748 +2024-09-22T00:44:58.144606Z INFO fork_choice_control::block_processor: Validating block with slot: 7746 +2024-09-22T00:44:58.144668Z INFO fork_choice_control::block_processor: Validating block with slot: 7749 +2024-09-22T00:44:58.145490Z INFO fork_choice_control::block_processor: Validating block with slot: 7750 +2024-09-22T00:44:58.145733Z INFO fork_choice_control::block_processor: Validating block with slot: 7751 +2024-09-22T00:44:58.146026Z INFO fork_choice_control::block_processor: Validating block with slot: 7604 +2024-09-22T00:44:58.146349Z INFO fork_choice_control::block_processor: Validating block with slot: 7605 +2024-09-22T00:44:58.146970Z INFO fork_choice_control::block_processor: Validating block with slot: 7606 +2024-09-22T00:44:58.147632Z INFO fork_choice_control::block_processor: Validating block with slot: 7607 +2024-09-22T00:44:58.147946Z INFO fork_choice_control::block_processor: Validating block with slot: 7610 +2024-09-22T00:44:58.148191Z INFO fork_choice_control::block_processor: Validating block with slot: 7611 +2024-09-22T00:44:58.148237Z INFO fork_choice_control::block_processor: Validating block with slot: 7752 +2024-09-22T00:44:58.148302Z INFO fork_choice_control::block_processor: Validating block with slot: 7753 +2024-09-22T00:44:58.148908Z INFO fork_choice_control::block_processor: Validating block with slot: 7608 +2024-09-22T00:44:58.149078Z INFO fork_choice_control::block_processor: Validating block with slot: 7754 +2024-09-22T00:44:58.149271Z INFO fork_choice_control::block_processor: Validating block with slot: 7755 +2024-09-22T00:44:58.149916Z INFO fork_choice_control::block_processor: Validating block with slot: 7756 +2024-09-22T00:44:58.150116Z INFO fork_choice_control::block_processor: Validating block with slot: 7757 +2024-09-22T00:44:58.150315Z INFO fork_choice_control::block_processor: Validating block with slot: 7758 +2024-09-22T00:44:58.150502Z INFO fork_choice_control::block_processor: Validating block with slot: 7759 +2024-09-22T00:44:58.151013Z INFO fork_choice_control::block_processor: Validating block with slot: 7609 +2024-09-22T00:44:58.151030Z INFO fork_choice_control::block_processor: Validating block with slot: 7612 +2024-09-22T00:44:58.151314Z INFO fork_choice_control::block_processor: Validating block with slot: 7613 +2024-09-22T00:44:58.151578Z INFO fork_choice_control::block_processor: Validating block with slot: 7614 +2024-09-22T00:44:58.151723Z INFO fork_choice_control::block_processor: Validating block with slot: 7615 +2024-09-22T00:44:58.152398Z INFO fork_choice_control::block_processor: Validating block with slot: 7616 +2024-09-22T00:44:58.152981Z INFO fork_choice_control::block_processor: Validating block with slot: 7617 +2024-09-22T00:44:58.153602Z INFO fork_choice_control::block_processor: Validating block with slot: 7618 +2024-09-22T00:44:58.153949Z INFO fork_choice_control::block_processor: Validating block with slot: 7619 +2024-09-22T00:44:58.153996Z INFO fork_choice_control::block_processor: Validating block with slot: 7760 +2024-09-22T00:44:58.154139Z INFO fork_choice_control::block_processor: Validating block with slot: 7761 +2024-09-22T00:44:58.154176Z INFO fork_choice_control::block_processor: Validating block with slot: 7620 +2024-09-22T00:44:58.154690Z INFO fork_choice_control::block_processor: Validating block with slot: 7762 +2024-09-22T00:44:58.154980Z INFO fork_choice_control::block_processor: Validating block with slot: 7763 +2024-09-22T00:44:58.155014Z INFO fork_choice_control::block_processor: Validating block with slot: 7764 +2024-09-22T00:44:58.155400Z INFO fork_choice_control::block_processor: Validating block with slot: 7765 +2024-09-22T00:44:58.155779Z INFO fork_choice_control::block_processor: Validating block with slot: 7766 +2024-09-22T00:44:58.156377Z INFO fork_choice_control::block_processor: Validating block with slot: 7767 +2024-09-22T00:44:58.156642Z INFO fork_choice_control::block_processor: Validating block with slot: 7768 +2024-09-22T00:44:58.157374Z INFO fork_choice_control::block_processor: Validating block with slot: 7583 +2024-09-22T00:44:58.157535Z INFO fork_choice_control::block_processor: Validating block with slot: 7621 +2024-09-22T00:44:58.157582Z INFO fork_choice_control::block_processor: Validating block with slot: 7622 +2024-09-22T00:44:58.157891Z INFO fork_choice_control::block_processor: Validating block with slot: 7623 +2024-09-22T00:44:58.158091Z INFO fork_choice_control::block_processor: Validating block with slot: 7624 +2024-09-22T00:44:58.158115Z INFO fork_choice_control::block_processor: Validating block with slot: 7625 +2024-09-22T00:44:58.159361Z INFO fork_choice_control::block_processor: Validating block with slot: 7770 +2024-09-22T00:44:58.159360Z INFO fork_choice_control::block_processor: Validating block with slot: 7626 +2024-09-22T00:44:58.159495Z INFO fork_choice_control::block_processor: Validating block with slot: 7769 +2024-09-22T00:44:58.159592Z INFO fork_choice_control::block_processor: Validating block with slot: 7627 +2024-09-22T00:44:58.159921Z INFO fork_choice_control::block_processor: Validating block with slot: 7628 +2024-09-22T00:44:58.160073Z INFO fork_choice_control::block_processor: Validating block with slot: 7629 +2024-09-22T00:44:58.160323Z INFO fork_choice_control::block_processor: Validating block with slot: 7772 +2024-09-22T00:44:58.160764Z INFO fork_choice_control::block_processor: Validating block with slot: 7773 +2024-09-22T00:44:58.161393Z INFO fork_choice_control::block_processor: Validating block with slot: 7774 +2024-09-22T00:44:58.161645Z INFO fork_choice_control::block_processor: Validating block with slot: 7775 +2024-09-22T00:44:58.162005Z INFO fork_choice_control::block_processor: Validating block with slot: 7630 +2024-09-22T00:44:58.162630Z INFO fork_choice_control::block_processor: Validating block with slot: 7631 +2024-09-22T00:44:58.162903Z INFO fork_choice_control::block_processor: Validating block with slot: 7632 +2024-09-22T00:44:58.162959Z INFO fork_choice_control::block_processor: Validating block with slot: 7633 +2024-09-22T00:44:58.163083Z INFO fork_choice_control::block_processor: Validating block with slot: 7634 +2024-09-22T00:44:58.163695Z INFO fork_choice_control::block_processor: Validating block with slot: 7635 +2024-09-22T00:44:58.164472Z INFO fork_choice_control::block_processor: Validating block with slot: 7636 +2024-09-22T00:44:58.164699Z INFO fork_choice_control::block_processor: Validating block with slot: 7639 +2024-09-22T00:44:58.164929Z INFO fork_choice_control::block_processor: Validating block with slot: 7640 +2024-09-22T00:44:58.164970Z INFO fork_choice_control::block_processor: Validating block with slot: 7641 +2024-09-22T00:44:58.165342Z INFO fork_choice_control::block_processor: Validating block with slot: 7643 +2024-09-22T00:44:58.165933Z INFO fork_choice_control::block_processor: Validating block with slot: 7644 +2024-09-22T00:44:58.166049Z INFO fork_choice_control::block_processor: Validating block with slot: 7645 +2024-09-22T00:44:58.166271Z INFO fork_choice_control::block_processor: Validating block with slot: 7637 +2024-09-22T00:44:58.166327Z INFO fork_choice_control::block_processor: Validating block with slot: 7646 +2024-09-22T00:44:58.167554Z INFO fork_choice_control::block_processor: Validating block with slot: 7647 +2024-09-22T00:44:58.168017Z INFO fork_choice_control::block_processor: Validating block with slot: 7638 +2024-09-22T00:44:58.168337Z INFO fork_choice_control::block_processor: Validating block with slot: 4925 +2024-09-22T00:44:58.169592Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x77e89d1028556363172c9458daf7a93988445fe2d10597cfcae4ebe50f71c589, slot: 4925 +2024-09-22T00:44:58.177074Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4925 +2024-09-22T00:44:58.177097Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4925 +2024-09-22T00:44:58.196503Z INFO fork_choice_control::block_processor: Validating block with slot: 4927 +2024-09-22T00:44:58.199401Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd7ae261362ae329fd07abf1101ff6011406a31eafde0413c7a5d746fa713276a, slot: 4927 +2024-09-22T00:44:58.212891Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4927 +2024-09-22T00:44:58.212911Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4927 +2024-09-22T00:44:58.232087Z INFO fork_choice_control::block_processor: Validating block with slot: 4928 +2024-09-22T00:44:58.233068Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb4064c51638d469809820727189b2e8de0e78a48461ca1c3866314761cb4a56b, slot: 4928 +2024-09-22T00:44:58.333242Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4928 +2024-09-22T00:44:58.333264Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4928 +2024-09-22T00:44:58.343879Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 4928) +2024-09-22T00:44:58.344051Z INFO fork_choice_control::block_processor: Validating block with slot: 4929 +2024-09-22T00:44:58.345146Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6c53237cbc103a3a9351a1acfc1711e51fac798a2987884c1a815c073c9da3a5, slot: 4929 +2024-09-22T00:44:58.423824Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4929 +2024-09-22T00:44:58.423845Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4929 +2024-09-22T00:44:58.435613Z INFO fork_choice_control::block_processor: Validating block with slot: 4930 +2024-09-22T00:44:58.436832Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8c7969e1dad957758fd12536c1f40fbad72421deeb36b38100786e1a851154ed, slot: 4930 +2024-09-22T00:44:58.444767Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4930 +2024-09-22T00:44:58.444783Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4930 +2024-09-22T00:44:58.457499Z INFO fork_choice_control::block_processor: Validating block with slot: 4931 +2024-09-22T00:44:58.459632Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1d25ddb48046574afcaf501d985e959de15fe4c6c096b617f68348522998620a, slot: 4931 +2024-09-22T00:44:58.473069Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4931 +2024-09-22T00:44:58.473095Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4931 +2024-09-22T00:44:58.485743Z INFO fork_choice_control::block_processor: Validating block with slot: 4932 +2024-09-22T00:44:58.489571Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8b6c5c2b6cde219f511e07cd76928cda32632ec5f9156d209b4ff6cde4a55125, slot: 4932 +2024-09-22T00:44:58.506302Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4932 +2024-09-22T00:44:58.506409Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4932 +2024-09-22T00:44:58.519865Z INFO fork_choice_control::block_processor: Validating block with slot: 4933 +2024-09-22T00:44:58.521309Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x853e30b5d5e7af3eb10372ac940682812390b4e6ea06c20579d2c915b8988450, slot: 4933 +2024-09-22T00:44:58.530154Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4933 +2024-09-22T00:44:58.530175Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4933 +2024-09-22T00:44:58.545044Z INFO fork_choice_control::block_processor: Validating block with slot: 4934 +2024-09-22T00:44:58.546515Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0fd189acd1137fd24998d057aec8680e07681c41ad3d07a4c172d001064501b0, slot: 4934 +2024-09-22T00:44:58.559887Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4934 +2024-09-22T00:44:58.559950Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4934 +2024-09-22T00:44:58.588693Z INFO fork_choice_control::block_processor: Validating block with slot: 4935 +2024-09-22T00:44:58.590068Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbf44b768bc479d21c0c43eca915cdd19d0dac05dc51fdbead65f9ad93ced9b12, slot: 4935 +2024-09-22T00:44:58.602566Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4935 +2024-09-22T00:44:58.602591Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4935 +2024-09-22T00:44:58.617770Z INFO fork_choice_control::block_processor: Validating block with slot: 4936 +2024-09-22T00:44:58.618916Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb959cfed8e7e4f03805eeb649127ed80ac782a70dd9c9cf0618ac06402a55bab, slot: 4936 +2024-09-22T00:44:58.626149Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4936 +2024-09-22T00:44:58.626174Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4936 +2024-09-22T00:44:58.640107Z INFO fork_choice_control::block_processor: Validating block with slot: 4937 +2024-09-22T00:44:58.641787Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x51ec08f0b34ac6567049497342d7fc973e18fe98a4aa166b99af1b1339271bc4, slot: 4937 +2024-09-22T00:44:58.649993Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4937 +2024-09-22T00:44:58.650009Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4937 +2024-09-22T00:44:58.663825Z INFO fork_choice_control::block_processor: Validating block with slot: 4938 +2024-09-22T00:44:58.665098Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x74c996181d33be8f443089dcf9f15f52f52695544e5ff8a36880f790499c0536, slot: 4938 +2024-09-22T00:44:58.672330Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4938 +2024-09-22T00:44:58.672354Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4938 +2024-09-22T00:44:58.682633Z INFO fork_choice_control::block_processor: Validating block with slot: 7904 +2024-09-22T00:44:58.686139Z INFO fork_choice_control::block_processor: Validating block with slot: 4939 +2024-09-22T00:44:58.687238Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xffbb67c99bfcc0e728ec2d6d8b8b62ded203e28916c6ced4b2dcbe529b86a423, slot: 4939 +2024-09-22T00:44:58.694481Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4939 +2024-09-22T00:44:58.694504Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4939 +2024-09-22T00:44:58.709028Z INFO fork_choice_control::block_processor: Validating block with slot: 4940 +2024-09-22T00:44:58.710691Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3ec657ff09b1c0d800a8b2768b100f1f6bff2c5d6d56543ae76adc0298c821d1, slot: 4940 +2024-09-22T00:44:58.720810Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4940 +2024-09-22T00:44:58.720829Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4940 +2024-09-22T00:44:58.736967Z INFO fork_choice_control::block_processor: Validating block with slot: 4941 +2024-09-22T00:44:58.738212Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7037b7f1d0a0b0f92d9a25d5f7817ac1c73b735a4b22fcbf2663e13c86708d44, slot: 4941 +2024-09-22T00:44:58.749000Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4941 +2024-09-22T00:44:58.749022Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4941 +2024-09-22T00:44:58.765049Z INFO fork_choice_control::block_processor: Validating block with slot: 4942 +2024-09-22T00:44:58.766339Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x032e2f86dc878ce3e8507393d0f21ffed7288d60551caffe99e2a2e287a5ea3e, slot: 4942 +2024-09-22T00:44:58.777041Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4942 +2024-09-22T00:44:58.777069Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4942 +2024-09-22T00:44:58.785234Z INFO fork_choice_control::block_processor: Validating block with slot: 7908 +2024-09-22T00:44:58.785253Z INFO fork_choice_control::block_processor: Validating block with slot: 7905 +2024-09-22T00:44:58.785279Z INFO fork_choice_control::block_processor: Validating block with slot: 7909 +2024-09-22T00:44:58.785285Z INFO fork_choice_control::block_processor: Validating block with slot: 7906 +2024-09-22T00:44:58.785349Z INFO fork_choice_control::block_processor: Validating block with slot: 7910 +2024-09-22T00:44:58.786033Z INFO fork_choice_control::block_processor: Validating block with slot: 7907 +2024-09-22T00:44:58.787493Z INFO fork_choice_control::block_processor: Validating block with slot: 7912 +2024-09-22T00:44:58.788268Z INFO fork_choice_control::block_processor: Validating block with slot: 7913 +2024-09-22T00:44:58.788647Z INFO fork_choice_control::block_processor: Validating block with slot: 7914 +2024-09-22T00:44:58.789292Z INFO fork_choice_control::block_processor: Validating block with slot: 7915 +2024-09-22T00:44:58.789308Z INFO fork_choice_control::block_processor: Validating block with slot: 7916 +2024-09-22T00:44:58.789802Z INFO fork_choice_control::block_processor: Validating block with slot: 7917 +2024-09-22T00:44:58.791106Z INFO fork_choice_control::block_processor: Validating block with slot: 7911 +2024-09-22T00:44:58.791426Z INFO fork_choice_control::block_processor: Validating block with slot: 7921 +2024-09-22T00:44:58.791532Z INFO fork_choice_control::block_processor: Validating block with slot: 7918 +2024-09-22T00:44:58.792216Z INFO fork_choice_control::block_processor: Validating block with slot: 7919 +2024-09-22T00:44:58.792306Z INFO fork_choice_control::block_processor: Validating block with slot: 7923 +2024-09-22T00:44:58.792315Z INFO fork_choice_control::block_processor: Validating block with slot: 7924 +2024-09-22T00:44:58.792503Z INFO fork_choice_control::block_processor: Validating block with slot: 7920 +2024-09-22T00:44:58.792738Z INFO fork_choice_control::block_processor: Validating block with slot: 7925 +2024-09-22T00:44:58.792879Z INFO fork_choice_control::block_processor: Validating block with slot: 7926 +2024-09-22T00:44:58.793099Z INFO fork_choice_control::block_processor: Validating block with slot: 7922 +2024-09-22T00:44:58.793333Z INFO fork_choice_control::block_processor: Validating block with slot: 7927 +2024-09-22T00:44:58.793335Z INFO fork_choice_control::block_processor: Validating block with slot: 7928 +2024-09-22T00:44:58.793889Z INFO fork_choice_control::block_processor: Validating block with slot: 7929 +2024-09-22T00:44:58.793896Z INFO fork_choice_control::block_processor: Validating block with slot: 7930 +2024-09-22T00:44:58.794639Z INFO fork_choice_control::block_processor: Validating block with slot: 7931 +2024-09-22T00:44:58.795549Z INFO fork_choice_control::block_processor: Validating block with slot: 7932 +2024-09-22T00:44:58.795710Z INFO fork_choice_control::block_processor: Validating block with slot: 7933 +2024-09-22T00:44:58.795866Z INFO fork_choice_control::block_processor: Validating block with slot: 7934 +2024-09-22T00:44:58.796062Z INFO fork_choice_control::block_processor: Validating block with slot: 7938 +2024-09-22T00:44:58.796120Z INFO fork_choice_control::block_processor: Validating block with slot: 7939 +2024-09-22T00:44:58.796079Z INFO fork_choice_control::block_processor: Validating block with slot: 7935 +2024-09-22T00:44:58.796816Z INFO fork_choice_control::block_processor: Validating block with slot: 7936 +2024-09-22T00:44:58.796849Z INFO fork_choice_control::block_processor: Validating block with slot: 7940 +2024-09-22T00:44:58.796868Z INFO fork_choice_control::block_processor: Validating block with slot: 7941 +2024-09-22T00:44:58.797260Z INFO fork_choice_control::block_processor: Validating block with slot: 7937 +2024-09-22T00:44:58.797518Z INFO fork_choice_control::block_processor: Validating block with slot: 7942 +2024-09-22T00:44:58.797859Z INFO fork_choice_control::block_processor: Validating block with slot: 7943 +2024-09-22T00:44:58.798026Z INFO fork_choice_control::block_processor: Validating block with slot: 7944 +2024-09-22T00:44:58.799076Z INFO fork_choice_control::block_processor: Validating block with slot: 7945 +2024-09-22T00:44:58.799140Z INFO fork_choice_control::block_processor: Validating block with slot: 7948 +2024-09-22T00:44:58.799627Z INFO fork_choice_control::block_processor: Validating block with slot: 7946 +2024-09-22T00:44:58.800098Z INFO fork_choice_control::block_processor: Validating block with slot: 7947 +2024-09-22T00:44:58.800557Z INFO fork_choice_control::block_processor: Validating block with slot: 7950 +2024-09-22T00:44:58.800566Z INFO fork_choice_control::block_processor: Validating block with slot: 7949 +2024-09-22T00:44:58.801170Z INFO fork_choice_control::block_processor: Validating block with slot: 7951 +2024-09-22T00:44:58.801363Z INFO fork_choice_control::block_processor: Validating block with slot: 7952 +2024-09-22T00:44:58.802108Z INFO fork_choice_control::block_processor: Validating block with slot: 7953 +2024-09-22T00:44:58.802324Z INFO fork_choice_control::block_processor: Validating block with slot: 7954 +2024-09-22T00:44:58.802961Z INFO fork_choice_control::block_processor: Validating block with slot: 7955 +2024-09-22T00:44:58.803177Z INFO fork_choice_control::block_processor: Validating block with slot: 7959 +2024-09-22T00:44:58.803388Z INFO fork_choice_control::block_processor: Validating block with slot: 7956 +2024-09-22T00:44:58.803477Z INFO fork_choice_control::block_processor: Validating block with slot: 7960 +2024-09-22T00:44:58.803599Z INFO fork_choice_control::block_processor: Validating block with slot: 7961 +2024-09-22T00:44:58.803948Z INFO fork_choice_control::block_processor: Validating block with slot: 7962 +2024-09-22T00:44:58.804485Z INFO fork_choice_control::block_processor: Validating block with slot: 7963 +2024-09-22T00:44:58.804629Z INFO fork_choice_control::block_processor: Validating block with slot: 7964 +2024-09-22T00:44:58.804958Z INFO fork_choice_control::block_processor: Validating block with slot: 7965 +2024-09-22T00:44:58.806076Z INFO fork_choice_control::block_processor: Validating block with slot: 7966 +2024-09-22T00:44:58.806248Z INFO fork_choice_control::block_processor: Validating block with slot: 4944 +2024-09-22T00:44:58.807065Z INFO fork_choice_control::block_processor: Validating block with slot: 7957 +2024-09-22T00:44:58.807612Z INFO fork_choice_control::block_processor: Validating block with slot: 7958 +2024-09-22T00:44:58.809379Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd97fc6f0dbf3766627ab7dd6202a908cccb821af8ed55b043f4d8936c41a5263, slot: 4944 +2024-09-22T00:44:58.820067Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4944 +2024-09-22T00:44:58.820086Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4944 +2024-09-22T00:44:58.836322Z INFO fork_choice_control::block_processor: Validating block with slot: 4945 +2024-09-22T00:44:58.837605Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe9b3bcb0d09b27b7e8b35ab5a040b2019db7101b4bc1a7c46bba103b29476179, slot: 4945 +2024-09-22T00:44:58.845331Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4945 +2024-09-22T00:44:58.845349Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4945 +2024-09-22T00:44:58.861905Z INFO fork_choice_control::block_processor: Validating block with slot: 4946 +2024-09-22T00:44:58.863690Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x515008218157c7935743d218b4bc49c4cd5407b869ef9e51824f7e89118f7f03, slot: 4946 +2024-09-22T00:44:58.873446Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4946 +2024-09-22T00:44:58.873470Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4946 +2024-09-22T00:44:58.883639Z INFO fork_choice_control::block_processor: Validating block with slot: 7967 +2024-09-22T00:44:58.890183Z INFO fork_choice_control::block_processor: Validating block with slot: 4947 +2024-09-22T00:44:58.893279Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xde5c1ab8a06d3716c6f28ce4e073c6216fdac8605869c04384c5e829f594ac69, slot: 4947 +2024-09-22T00:44:58.911433Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4947 +2024-09-22T00:44:58.911486Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4947 +2024-09-22T00:44:58.932924Z INFO fork_choice_control::block_processor: Validating block with slot: 4948 +2024-09-22T00:44:58.933974Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1b815a35e824ffb4f3b96d63832bd713a9b33e9e670297bf4f1010b6f90c4649, slot: 4948 +2024-09-22T00:44:58.948839Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4948 +2024-09-22T00:44:58.948864Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4948 +2024-09-22T00:44:58.968213Z INFO fork_choice_control::block_processor: Validating block with slot: 4949 +2024-09-22T00:44:58.970037Z INFO fork_choice_control::block_processor: Validating block with slot: 7776 +2024-09-22T00:44:58.970086Z INFO fork_choice_control::block_processor: Validating block with slot: 7777 +2024-09-22T00:44:58.970110Z INFO fork_choice_control::block_processor: Validating block with slot: 7781 +2024-09-22T00:44:58.970126Z INFO fork_choice_control::block_processor: Validating block with slot: 7782 +2024-09-22T00:44:58.971129Z INFO fork_choice_control::block_processor: Validating block with slot: 7779 +2024-09-22T00:44:58.971222Z INFO fork_choice_control::block_processor: Validating block with slot: 7783 +2024-09-22T00:44:58.971287Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x51a89363624636628d64813ae996ebe731fc082d9f137a2746a20467676a6339, slot: 4949 +2024-09-22T00:44:58.972265Z INFO fork_choice_control::block_processor: Validating block with slot: 7968 +2024-09-22T00:44:58.975334Z INFO fork_choice_control::block_processor: Validating block with slot: 7972 +2024-09-22T00:44:58.975334Z INFO fork_choice_control::block_processor: Validating block with slot: 7969 +2024-09-22T00:44:58.975441Z INFO fork_choice_control::block_processor: Validating block with slot: 7971 +2024-09-22T00:44:58.977252Z INFO fork_choice_control::block_processor: Validating block with slot: 7973 +2024-09-22T00:44:58.977579Z INFO fork_choice_control::block_processor: Validating block with slot: 7974 +2024-09-22T00:44:58.978274Z INFO fork_choice_control::block_processor: Validating block with slot: 7975 +2024-09-22T00:44:58.978576Z INFO fork_choice_control::block_processor: Validating block with slot: 7976 +2024-09-22T00:44:58.983157Z INFO fork_choice_control::block_processor: Validating block with slot: 7979 +2024-09-22T00:44:58.984587Z INFO fork_choice_control::block_processor: Validating block with slot: 7977 +2024-09-22T00:44:58.984931Z INFO fork_choice_control::block_processor: Validating block with slot: 7978 +2024-09-22T00:44:58.986030Z INFO fork_choice_control::block_processor: Validating block with slot: 7778 +2024-09-22T00:44:58.986198Z INFO fork_choice_control::block_processor: Validating block with slot: 7785 +2024-09-22T00:44:58.986445Z INFO fork_choice_control::block_processor: Validating block with slot: 7980 +2024-09-22T00:44:58.987362Z INFO fork_choice_control::block_processor: Validating block with slot: 7786 +2024-09-22T00:44:58.987761Z INFO fork_choice_control::block_processor: Validating block with slot: 7787 +2024-09-22T00:44:58.988381Z INFO fork_choice_control::block_processor: Validating block with slot: 7788 +2024-09-22T00:44:58.988777Z INFO fork_choice_control::block_processor: Validating block with slot: 7789 +2024-09-22T00:44:58.991936Z INFO fork_choice_control::block_processor: Validating block with slot: 7790 +2024-09-22T00:44:58.992503Z INFO fork_choice_control::block_processor: Validating block with slot: 7780 +2024-09-22T00:44:58.993957Z INFO fork_choice_control::block_processor: Validating block with slot: 7791 +2024-09-22T00:44:58.994977Z INFO fork_choice_control::block_processor: Validating block with slot: 7794 +2024-09-22T00:44:58.996255Z INFO fork_choice_control::block_processor: Validating block with slot: 7970 +2024-09-22T00:44:58.997451Z INFO fork_choice_control::block_processor: Validating block with slot: 7784 +2024-09-22T00:44:58.997674Z INFO fork_choice_control::block_processor: Validating block with slot: 7792 +2024-09-22T00:44:58.998226Z INFO fork_choice_control::block_processor: Validating block with slot: 7793 +2024-09-22T00:44:58.999234Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4949 +2024-09-22T00:44:58.999262Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4949 +2024-09-22T00:44:59.019594Z INFO fork_choice_control::block_processor: Validating block with slot: 4950 +2024-09-22T00:44:59.020786Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa2cd1ed3198cfe04f0b7336cff94209b9021343bbf7acf5d54127e170120db07, slot: 4950 +2024-09-22T00:44:59.030060Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4950 +2024-09-22T00:44:59.030083Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4950 +2024-09-22T00:44:59.051417Z INFO fork_choice_control::block_processor: Validating block with slot: 4951 +2024-09-22T00:44:59.052867Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8b72e8121f3b98728b2d94d67c67f60e12b499be4c5bd367f514115f8fb18f34, slot: 4951 +2024-09-22T00:44:59.061963Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4951 +2024-09-22T00:44:59.061986Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4951 +2024-09-22T00:44:59.093347Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 153, root: 0x5b904ac29b67928adbb0db1b68f1107e516dae13af860a248028b29a5316c1b6, head slot: 4951, head root: 0x8b72e8121f3b98728b2d94d67c67f60e12b499be4c5bd367f514115f8fb18f34) +2024-09-22T00:44:59.093360Z INFO fork_choice_control::block_processor: Validating block with slot: 4952 +2024-09-22T00:44:59.095492Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x53f3d3bb12c2f717034ed16de1ef02da911a5c9414ecc46b24806efa69044351, slot: 4952 +2024-09-22T00:44:59.110077Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4952 +2024-09-22T00:44:59.110164Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4952 +2024-09-22T00:44:59.133853Z INFO fork_choice_control::block_processor: Validating block with slot: 4953 +2024-09-22T00:44:59.135165Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcd07baeeec53ab30d3f44857b0d15556561468e941a9dff0d224465e90615d71, slot: 4953 +2024-09-22T00:44:59.145171Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4953 +2024-09-22T00:44:59.145221Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4953 +2024-09-22T00:44:59.165453Z INFO fork_choice_control::block_processor: Validating block with slot: 7799 +2024-09-22T00:44:59.165445Z INFO fork_choice_control::block_processor: Validating block with slot: 7796 +2024-09-22T00:44:59.165470Z INFO fork_choice_control::block_processor: Validating block with slot: 7798 +2024-09-22T00:44:59.165484Z INFO fork_choice_control::block_processor: Validating block with slot: 7797 +2024-09-22T00:44:59.165491Z INFO fork_choice_control::block_processor: Validating block with slot: 7795 +2024-09-22T00:44:59.165990Z INFO fork_choice_control::block_processor: Validating block with slot: 7800 +2024-09-22T00:44:59.166537Z INFO fork_choice_control::block_processor: Validating block with slot: 4954 +2024-09-22T00:44:59.167489Z INFO fork_choice_control::block_processor: Validating block with slot: 7801 +2024-09-22T00:44:59.167673Z INFO fork_choice_control::block_processor: Validating block with slot: 7802 +2024-09-22T00:44:59.168341Z INFO fork_choice_control::block_processor: Validating block with slot: 7981 +2024-09-22T00:44:59.168711Z INFO fork_choice_control::block_processor: Validating block with slot: 7982 +2024-09-22T00:44:59.168803Z INFO fork_choice_control::block_processor: Validating block with slot: 7983 +2024-09-22T00:44:59.168934Z INFO fork_choice_control::block_processor: Validating block with slot: 7984 +2024-09-22T00:44:59.169580Z INFO fork_choice_control::block_processor: Validating block with slot: 7985 +2024-09-22T00:44:59.169924Z INFO fork_choice_control::block_processor: Validating block with slot: 7986 +2024-09-22T00:44:59.170355Z INFO fork_choice_control::block_processor: Validating block with slot: 7987 +2024-09-22T00:44:59.170871Z INFO fork_choice_control::block_processor: Validating block with slot: 7988 +2024-09-22T00:44:59.170944Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x10330a4eff21455d149e82ffc669db4ffe1cf889df4a840f31d23290774c075c, slot: 4954 +2024-09-22T00:44:59.171742Z INFO fork_choice_control::block_processor: Validating block with slot: 7989 +2024-09-22T00:44:59.171886Z INFO fork_choice_control::block_processor: Validating block with slot: 7803 +2024-09-22T00:44:59.173110Z INFO fork_choice_control::block_processor: Validating block with slot: 7804 +2024-09-22T00:44:59.173227Z INFO fork_choice_control::block_processor: Validating block with slot: 7805 +2024-09-22T00:44:59.173280Z INFO fork_choice_control::block_processor: Validating block with slot: 7806 +2024-09-22T00:44:59.173584Z INFO fork_choice_control::block_processor: Validating block with slot: 7807 +2024-09-22T00:44:59.173947Z INFO fork_choice_control::block_processor: Validating block with slot: 7808 +2024-09-22T00:44:59.174423Z INFO fork_choice_control::block_processor: Validating block with slot: 7809 +2024-09-22T00:44:59.175173Z INFO fork_choice_control::block_processor: Validating block with slot: 7810 +2024-09-22T00:44:59.175412Z INFO fork_choice_control::block_processor: Validating block with slot: 7811 +2024-09-22T00:44:59.175767Z INFO fork_choice_control::block_processor: Validating block with slot: 7990 +2024-09-22T00:44:59.176513Z INFO fork_choice_control::block_processor: Validating block with slot: 7991 +2024-09-22T00:44:59.176969Z INFO fork_choice_control::block_processor: Validating block with slot: 7994 +2024-09-22T00:44:59.178193Z INFO fork_choice_control::block_processor: Validating block with slot: 7995 +2024-09-22T00:44:59.178335Z INFO fork_choice_control::block_processor: Validating block with slot: 7996 +2024-09-22T00:44:59.179218Z INFO fork_choice_control::block_processor: Validating block with slot: 7997 +2024-09-22T00:44:59.179577Z INFO fork_choice_control::block_processor: Validating block with slot: 7998 +2024-09-22T00:44:59.179733Z INFO fork_choice_control::block_processor: Validating block with slot: 7999 +2024-09-22T00:44:59.180010Z INFO fork_choice_control::block_processor: Validating block with slot: 7812 +2024-09-22T00:44:59.180099Z INFO fork_choice_control::block_processor: Validating block with slot: 8000 +2024-09-22T00:44:59.181240Z INFO fork_choice_control::block_processor: Validating block with slot: 7813 +2024-09-22T00:44:59.181601Z INFO fork_choice_control::block_processor: Validating block with slot: 7814 +2024-09-22T00:44:59.185263Z INFO fork_choice_control::block_processor: Validating block with slot: 7815 +2024-09-22T00:44:59.187510Z INFO fork_choice_control::block_processor: Validating block with slot: 7816 +2024-09-22T00:44:59.188740Z INFO fork_choice_control::block_processor: Validating block with slot: 7817 +2024-09-22T00:44:59.190520Z INFO fork_choice_control::block_processor: Validating block with slot: 7818 +2024-09-22T00:44:59.191600Z INFO fork_choice_control::block_processor: Validating block with slot: 8001 +2024-09-22T00:44:59.193603Z INFO fork_choice_control::block_processor: Validating block with slot: 8002 +2024-09-22T00:44:59.194398Z INFO fork_choice_control::block_processor: Validating block with slot: 8003 +2024-09-22T00:44:59.194921Z INFO fork_choice_control::block_processor: Validating block with slot: 8004 +2024-09-22T00:44:59.196294Z INFO fork_choice_control::block_processor: Validating block with slot: 8005 +2024-09-22T00:44:59.197209Z INFO fork_choice_control::block_processor: Validating block with slot: 7820 +2024-09-22T00:44:59.197396Z INFO fork_choice_control::block_processor: Validating block with slot: 7821 +2024-09-22T00:44:59.197713Z INFO fork_choice_control::block_processor: Validating block with slot: 7822 +2024-09-22T00:44:59.198262Z INFO fork_choice_control::block_processor: Validating block with slot: 7823 +2024-09-22T00:44:59.198499Z INFO fork_choice_control::block_processor: Validating block with slot: 7824 +2024-09-22T00:44:59.199922Z INFO fork_choice_control::block_processor: Validating block with slot: 7825 +2024-09-22T00:44:59.201274Z INFO fork_choice_control::block_processor: Validating block with slot: 7826 +2024-09-22T00:44:59.201297Z INFO fork_choice_control::block_processor: Validating block with slot: 7827 +2024-09-22T00:44:59.201650Z INFO fork_choice_control::block_processor: Validating block with slot: 8006 +2024-09-22T00:44:59.205089Z INFO fork_choice_control::block_processor: Validating block with slot: 8008 +2024-09-22T00:44:59.205141Z INFO fork_choice_control::block_processor: Validating block with slot: 8007 +2024-09-22T00:44:59.206917Z INFO fork_choice_control::block_processor: Validating block with slot: 8009 +2024-09-22T00:44:59.207602Z INFO fork_choice_control::block_processor: Validating block with slot: 8010 +2024-09-22T00:44:59.208143Z INFO fork_choice_control::block_processor: Validating block with slot: 8011 +2024-09-22T00:44:59.208648Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4954 +2024-09-22T00:44:59.208692Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4954 +2024-09-22T00:44:59.209741Z INFO fork_choice_control::block_processor: Validating block with slot: 8013 +2024-09-22T00:44:59.210447Z INFO fork_choice_control::block_processor: Validating block with slot: 8014 +2024-09-22T00:44:59.210480Z INFO fork_choice_control::block_processor: Validating block with slot: 8015 +2024-09-22T00:44:59.211340Z INFO fork_choice_control::block_processor: Validating block with slot: 7828 +2024-09-22T00:44:59.211976Z INFO fork_choice_control::block_processor: Validating block with slot: 7829 +2024-09-22T00:44:59.212444Z INFO fork_choice_control::block_processor: Validating block with slot: 7830 +2024-09-22T00:44:59.212847Z INFO fork_choice_control::block_processor: Validating block with slot: 7831 +2024-09-22T00:44:59.213780Z INFO fork_choice_control::block_processor: Validating block with slot: 7833 +2024-09-22T00:44:59.213811Z INFO fork_choice_control::block_processor: Validating block with slot: 7834 +2024-09-22T00:44:59.214774Z INFO fork_choice_control::block_processor: Validating block with slot: 7835 +2024-09-22T00:44:59.216116Z INFO fork_choice_control::block_processor: Validating block with slot: 7836 +2024-09-22T00:44:59.216511Z INFO fork_choice_control::block_processor: Validating block with slot: 8016 +2024-09-22T00:44:59.216722Z INFO fork_choice_control::block_processor: Validating block with slot: 8017 +2024-09-22T00:44:59.217135Z INFO fork_choice_control::block_processor: Validating block with slot: 8018 +2024-09-22T00:44:59.217415Z INFO fork_choice_control::block_processor: Validating block with slot: 8019 +2024-09-22T00:44:59.218609Z INFO fork_choice_control::block_processor: Validating block with slot: 8020 +2024-09-22T00:44:59.218884Z INFO fork_choice_control::block_processor: Validating block with slot: 8021 +2024-09-22T00:44:59.219438Z INFO fork_choice_control::block_processor: Validating block with slot: 8022 +2024-09-22T00:44:59.220627Z INFO fork_choice_control::block_processor: Validating block with slot: 7837 +2024-09-22T00:44:59.220673Z INFO fork_choice_control::block_processor: Validating block with slot: 7838 +2024-09-22T00:44:59.232633Z INFO fork_choice_control::block_processor: Validating block with slot: 4955 +2024-09-22T00:44:59.233770Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3e04eb2d0a5175b9f9439025eed0fe16aba3e388c9ec62f017a070e6c0d9554d, slot: 4955 +2024-09-22T00:44:59.243818Z INFO fork_choice_control::block_processor: Validating block with slot: 8023 +2024-09-22T00:44:59.244134Z INFO fork_choice_control::block_processor: Validating block with slot: 8025 +2024-09-22T00:44:59.244507Z INFO fork_choice_control::block_processor: Validating block with slot: 8024 +2024-09-22T00:44:59.244621Z INFO fork_choice_control::block_processor: Validating block with slot: 8026 +2024-09-22T00:44:59.245100Z INFO fork_choice_control::block_processor: Validating block with slot: 8027 +2024-09-22T00:44:59.246961Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4955 +2024-09-22T00:44:59.246981Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4955 +2024-09-22T00:44:59.250586Z INFO fork_choice_control::block_processor: Validating block with slot: 8028 +2024-09-22T00:44:59.252183Z INFO fork_choice_control::block_processor: Validating block with slot: 8029 +2024-09-22T00:44:59.255383Z INFO fork_choice_control::block_processor: Validating block with slot: 8030 +2024-09-22T00:44:59.255912Z INFO fork_choice_control::block_processor: Validating block with slot: 8031 +2024-09-22T00:44:59.275519Z INFO fork_choice_control::block_processor: Validating block with slot: 4956 +2024-09-22T00:44:59.277916Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf13dc86bad4eb1cb0ea814579252ab827d40d079e9271138b236bbd74bbfd479, slot: 4956 +2024-09-22T00:44:59.291888Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4956 +2024-09-22T00:44:59.291913Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4956 +2024-09-22T00:44:59.314087Z INFO fork_choice_control::block_processor: Validating block with slot: 4957 +2024-09-22T00:44:59.316824Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x55c3047b4384cfdf798b04d25e292a5ede6aab9f78ce2641fe079e1eac019e4b, slot: 4957 +2024-09-22T00:44:59.325729Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4957 +2024-09-22T00:44:59.325774Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4957 +2024-09-22T00:44:59.348386Z INFO fork_choice_control::block_processor: Validating block with slot: 4958 +2024-09-22T00:44:59.349526Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb9f7460d130b5fb59678c7760b8ec67d1cb357ac270b79ce9b0d387359373077, slot: 4958 +2024-09-22T00:44:59.360858Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4958 +2024-09-22T00:44:59.360884Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4958 +2024-09-22T00:44:59.383475Z INFO fork_choice_control::block_processor: Validating block with slot: 4959 +2024-09-22T00:44:59.385567Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xadd9aaee466dac166622082a6158365e65deb5d2b9b4a6770655539a213a04f5, slot: 4959 +2024-09-22T00:44:59.397133Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 4896 +2024-09-22T00:44:59.407084Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4959 +2024-09-22T00:44:59.407111Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4959 +2024-09-22T00:44:59.429157Z INFO fork_choice_control::block_processor: Validating block with slot: 4960 +2024-09-22T00:44:59.431001Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3fc4443988eaf89fa14526b68f7435ab3ef1d3a9100f5d85e27fd0ab3cb5ddc3, slot: 4960 +2024-09-22T00:44:59.557531Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4960 +2024-09-22T00:44:59.557555Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4960 +2024-09-22T00:44:59.569037Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 4960) +2024-09-22T00:44:59.569209Z INFO fork_choice_control::block_processor: Validating block with slot: 4961 +2024-09-22T00:44:59.591070Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb4b25e673e03d81a10fa7b8d8c9635d5c70f38dc349ffbbd2400c0b5d97ff531, slot: 4961 +2024-09-22T00:44:59.689760Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4961 +2024-09-22T00:44:59.689782Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4961 +2024-09-22T00:44:59.701368Z INFO fork_choice_control::block_processor: Validating block with slot: 4962 +2024-09-22T00:44:59.703048Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb148e47c02a3cf384dede6657940d27f22901b4b2b201eabbf851f8a2c70e3f0, slot: 4962 +2024-09-22T00:44:59.712462Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4962 +2024-09-22T00:44:59.712485Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4962 +2024-09-22T00:44:59.724533Z INFO fork_choice_control::block_processor: Validating block with slot: 4963 +2024-09-22T00:44:59.725607Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xea35030b2ab7fed4189a8e03b6acba196fc4d35e3d260c6be288ac3057d7e946, slot: 4963 +2024-09-22T00:44:59.732358Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4963 +2024-09-22T00:44:59.732379Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4963 +2024-09-22T00:44:59.744285Z INFO fork_choice_control::block_processor: Validating block with slot: 4964 +2024-09-22T00:44:59.745364Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5ebc4cadbd6405082db723c7ad67bdfbe38709442616e459ced4474858958ed7, slot: 4964 +2024-09-22T00:44:59.751567Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4964 +2024-09-22T00:44:59.751581Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4964 +2024-09-22T00:44:59.763228Z INFO fork_choice_control::block_processor: Validating block with slot: 4965 +2024-09-22T00:44:59.767240Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd486dd6ff947f458a2e28d80896014782427f1670711e22d51df50214da722b1, slot: 4965 +2024-09-22T00:44:59.785739Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4965 +2024-09-22T00:44:59.785765Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4965 +2024-09-22T00:44:59.798731Z INFO fork_choice_control::block_processor: Validating block with slot: 4966 +2024-09-22T00:44:59.799732Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8d1de207f4a4cd966c0ef2d9654e8b9325dfb6dbbaf8a32faa924fa540d08780, slot: 4966 +2024-09-22T00:44:59.806429Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4966 +2024-09-22T00:44:59.806453Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4966 +2024-09-22T00:44:59.819099Z INFO fork_choice_control::block_processor: Validating block with slot: 4967 +2024-09-22T00:44:59.820279Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x141e8e848a96e670c1339d0223ba04862c13784ee14beb15418cafe35599374e, slot: 4967 +2024-09-22T00:44:59.830100Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4967 +2024-09-22T00:44:59.830126Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4967 +2024-09-22T00:44:59.844253Z INFO fork_choice_control::block_processor: Validating block with slot: 4968 +2024-09-22T00:44:59.845607Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x16a6265036e636053510386db946c4a4b2846bf6fe2bc44f7d0b8b437ac3884f, slot: 4968 +2024-09-22T00:44:59.852826Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4968 +2024-09-22T00:44:59.852851Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4968 +2024-09-22T00:44:59.866358Z INFO fork_choice_control::block_processor: Validating block with slot: 4969 +2024-09-22T00:44:59.868034Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x37e063d0577b6eb6ff89ec0ebaea06fafa1d5638edfbfef2d983f664e0333221, slot: 4969 +2024-09-22T00:44:59.875709Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4969 +2024-09-22T00:44:59.875734Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4969 +2024-09-22T00:44:59.888725Z INFO fork_choice_control::block_processor: Validating block with slot: 4970 +2024-09-22T00:44:59.889732Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb188bb566fb2faa67f9b4fc7c20ebe549c94558b5a0407acb456d51f7720da93, slot: 4970 +2024-09-22T00:44:59.895614Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4970 +2024-09-22T00:44:59.895633Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4970 +2024-09-22T00:44:59.908824Z INFO fork_choice_control::block_processor: Validating block with slot: 4971 +2024-09-22T00:44:59.910334Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x70042e4b858aca8d527ff64452fa5d3b88aab84c55b3d9a97b9c3a093926e699, slot: 4971 +2024-09-22T00:44:59.916861Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4971 +2024-09-22T00:44:59.916883Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4971 +2024-09-22T00:44:59.929665Z INFO fork_choice_control::block_processor: Validating block with slot: 4972 +2024-09-22T00:44:59.931075Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x46178a85a9c29871a37adfc7d182dbd99bbf04f31560d6af677595b9e279c3b4, slot: 4972 +2024-09-22T00:44:59.937827Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4972 +2024-09-22T00:44:59.937847Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4972 +2024-09-22T00:44:59.951101Z INFO fork_choice_control::block_processor: Validating block with slot: 4973 +2024-09-22T00:44:59.952307Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x15305dd37f91b9b2ec0d7cca4334dae49f10a51501ecd885ffdb748770639fe7, slot: 4973 +2024-09-22T00:44:59.960731Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4973 +2024-09-22T00:44:59.960751Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4973 +2024-09-22T00:44:59.965844Z INFO fork_choice_control::block_processor: Validating block with slot: 8224 +2024-09-22T00:44:59.975909Z INFO fork_choice_control::block_processor: Validating block with slot: 4974 +2024-09-22T00:44:59.977413Z INFO fork_choice_control::block_processor: Validating block with slot: 8225 +2024-09-22T00:44:59.977640Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaee62f026fcd1504502ac1013ac006d1bd997ba17090ab5444b26c5b35a42062, slot: 4974 +2024-09-22T00:44:59.983325Z INFO fork_choice_control::block_processor: Validating block with slot: 8226 +2024-09-22T00:44:59.984147Z INFO fork_choice_control::block_processor: Validating block with slot: 8227 +2024-09-22T00:44:59.985346Z INFO fork_choice_control::block_processor: Validating block with slot: 8228 +2024-09-22T00:45:00.001817Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4974 +2024-09-22T00:45:00.001842Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4974 +2024-09-22T00:45:00.025659Z INFO fork_choice_control::block_processor: Validating block with slot: 4975 +2024-09-22T00:45:00.027082Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x45079c5806aadbc6b2d1763f86c9edc3bbe959746741b9de43a94de625c04903, slot: 4975 +2024-09-22T00:45:00.044220Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4975 +2024-09-22T00:45:00.044250Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4975 +2024-09-22T00:45:00.067469Z INFO fork_choice_control::block_processor: Validating block with slot: 4976 +2024-09-22T00:45:00.069360Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9e0a7b42c7afeb5694e2f1317e639be38b4f83ff3566c478e9f4605786961daa, slot: 4976 +2024-09-22T00:45:00.082413Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4976 +2024-09-22T00:45:00.082474Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4976 +2024-09-22T00:45:00.107612Z INFO fork_choice_control::block_processor: Validating block with slot: 4977 +2024-09-22T00:45:00.112342Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7ebf48e63e6dd81ea7e8c28be8d3baff35694f3bc82dcab083c632fb36c26338, slot: 4977 +2024-09-22T00:45:00.138609Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4977 +2024-09-22T00:45:00.138675Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4977 +2024-09-22T00:45:00.140268Z INFO fork_choice_control::block_processor: Validating block with slot: 8229 +2024-09-22T00:45:00.140338Z INFO fork_choice_control::block_processor: Validating block with slot: 8230 +2024-09-22T00:45:00.140673Z INFO fork_choice_control::block_processor: Validating block with slot: 8231 +2024-09-22T00:45:00.140713Z INFO fork_choice_control::block_processor: Validating block with slot: 8232 +2024-09-22T00:45:00.142043Z INFO fork_choice_control::block_processor: Validating block with slot: 8233 +2024-09-22T00:45:00.142264Z INFO fork_choice_control::block_processor: Validating block with slot: 8234 +2024-09-22T00:45:00.143160Z INFO fork_choice_control::block_processor: Validating block with slot: 8237 +2024-09-22T00:45:00.143182Z INFO fork_choice_control::block_processor: Validating block with slot: 8238 +2024-09-22T00:45:00.143355Z INFO fork_choice_control::block_processor: Validating block with slot: 8235 +2024-09-22T00:45:00.146400Z INFO fork_choice_control::block_processor: Validating block with slot: 8239 +2024-09-22T00:45:00.147141Z INFO fork_choice_control::block_processor: Validating block with slot: 8245 +2024-09-22T00:45:00.147919Z INFO fork_choice_control::block_processor: Validating block with slot: 8246 +2024-09-22T00:45:00.147926Z INFO fork_choice_control::block_processor: Validating block with slot: 8240 +2024-09-22T00:45:00.148500Z INFO fork_choice_control::block_processor: Validating block with slot: 8243 +2024-09-22T00:45:00.149101Z INFO fork_choice_control::block_processor: Validating block with slot: 8247 +2024-09-22T00:45:00.150238Z INFO fork_choice_control::block_processor: Validating block with slot: 8248 +2024-09-22T00:45:00.150665Z INFO fork_choice_control::block_processor: Validating block with slot: 8249 +2024-09-22T00:45:00.152770Z INFO fork_choice_control::block_processor: Validating block with slot: 8250 +2024-09-22T00:45:00.153514Z INFO fork_choice_control::block_processor: Validating block with slot: 8252 +2024-09-22T00:45:00.154159Z INFO fork_choice_control::block_processor: Validating block with slot: 8236 +2024-09-22T00:45:00.154187Z INFO fork_choice_control::block_processor: Validating block with slot: 8253 +2024-09-22T00:45:00.154932Z INFO fork_choice_control::block_processor: Validating block with slot: 8254 +2024-09-22T00:45:00.155757Z INFO fork_choice_control::block_processor: Validating block with slot: 8255 +2024-09-22T00:45:00.155845Z INFO fork_choice_control::block_processor: Validating block with slot: 8244 +2024-09-22T00:45:00.157243Z INFO fork_choice_control::block_processor: Validating block with slot: 8258 +2024-09-22T00:45:00.157289Z INFO fork_choice_control::block_processor: Validating block with slot: 8242 +2024-09-22T00:45:00.159303Z INFO fork_choice_control::block_processor: Validating block with slot: 8259 +2024-09-22T00:45:00.159899Z INFO fork_choice_control::block_processor: Validating block with slot: 8260 +2024-09-22T00:45:00.161444Z INFO fork_choice_control::block_processor: Validating block with slot: 8261 +2024-09-22T00:45:00.163548Z INFO fork_choice_control::block_processor: Validating block with slot: 8264 +2024-09-22T00:45:00.163721Z INFO fork_choice_control::block_processor: Validating block with slot: 8262 +2024-09-22T00:45:00.165331Z INFO fork_choice_control::block_processor: Validating block with slot: 8265 +2024-09-22T00:45:00.165806Z INFO fork_choice_control::block_processor: Validating block with slot: 8251 +2024-09-22T00:45:00.168192Z INFO fork_choice_control::block_processor: Validating block with slot: 8269 +2024-09-22T00:45:00.168570Z INFO fork_choice_control::block_processor: Validating block with slot: 8270 +2024-09-22T00:45:00.168968Z INFO fork_choice_control::block_processor: Validating block with slot: 8266 +2024-09-22T00:45:00.169761Z INFO fork_choice_control::block_processor: Validating block with slot: 8271 +2024-09-22T00:45:00.169768Z INFO fork_choice_control::block_processor: Validating block with slot: 8272 +2024-09-22T00:45:00.169813Z INFO fork_choice_control::block_processor: Validating block with slot: 8267 +2024-09-22T00:45:00.171000Z INFO fork_choice_control::block_processor: Validating block with slot: 8273 +2024-09-22T00:45:00.172735Z INFO fork_choice_control::block_processor: Validating block with slot: 8277 +2024-09-22T00:45:00.173248Z INFO fork_choice_control::block_processor: Validating block with slot: 8268 +2024-09-22T00:45:00.173258Z INFO fork_choice_control::block_processor: Validating block with slot: 8274 +2024-09-22T00:45:00.173570Z INFO fork_choice_control::block_processor: Validating block with slot: 8275 +2024-09-22T00:45:00.173840Z INFO fork_choice_control::block_processor: Validating block with slot: 8278 +2024-09-22T00:45:00.175166Z INFO fork_choice_control::block_processor: Validating block with slot: 8279 +2024-09-22T00:45:00.175395Z INFO fork_choice_control::block_processor: Validating block with slot: 8280 +2024-09-22T00:45:00.177609Z INFO fork_choice_control::block_processor: Validating block with slot: 8281 +2024-09-22T00:45:00.177872Z INFO fork_choice_control::block_processor: Validating block with slot: 8283 +2024-09-22T00:45:00.177903Z INFO fork_choice_control::block_processor: Validating block with slot: 8284 +2024-09-22T00:45:00.177912Z INFO fork_choice_control::block_processor: Validating block with slot: 8263 +2024-09-22T00:45:00.178851Z INFO fork_choice_control::block_processor: Validating block with slot: 8282 +2024-09-22T00:45:00.179115Z INFO fork_choice_control::block_processor: Validating block with slot: 8285 +2024-09-22T00:45:00.179199Z INFO fork_choice_control::block_processor: Validating block with slot: 8286 +2024-09-22T00:45:00.179318Z INFO fork_choice_control::block_processor: Validating block with slot: 8033 +2024-09-22T00:45:00.179936Z INFO fork_choice_control::block_processor: Validating block with slot: 8276 +2024-09-22T00:45:00.180370Z INFO fork_choice_control::block_processor: Validating block with slot: 8034 +2024-09-22T00:45:00.181637Z INFO fork_choice_control::block_processor: Validating block with slot: 8035 +2024-09-22T00:45:00.181936Z INFO fork_choice_control::block_processor: Validating block with slot: 8039 +2024-09-22T00:45:00.181936Z INFO fork_choice_control::block_processor: Validating block with slot: 8036 +2024-09-22T00:45:00.182879Z INFO fork_choice_control::block_processor: Validating block with slot: 8041 +2024-09-22T00:45:00.183174Z INFO fork_choice_control::block_processor: Validating block with slot: 8042 +2024-09-22T00:45:00.183563Z INFO fork_choice_control::block_processor: Validating block with slot: 8043 +2024-09-22T00:45:00.184869Z INFO fork_choice_control::block_processor: Validating block with slot: 8044 +2024-09-22T00:45:00.185603Z INFO fork_choice_control::block_processor: Validating block with slot: 8037 +2024-09-22T00:45:00.185600Z INFO fork_choice_control::block_processor: Validating block with slot: 8160 +2024-09-22T00:45:00.186599Z INFO fork_choice_control::block_processor: Validating block with slot: 8257 +2024-09-22T00:45:00.186962Z INFO fork_choice_control::block_processor: Validating block with slot: 8161 +2024-09-22T00:45:00.187259Z INFO fork_choice_control::block_processor: Validating block with slot: 8046 +2024-09-22T00:45:00.188198Z INFO fork_choice_control::block_processor: Validating block with slot: 8047 +2024-09-22T00:45:00.188342Z INFO fork_choice_control::block_processor: Validating block with slot: 8163 +2024-09-22T00:45:00.189357Z INFO fork_choice_control::block_processor: Validating block with slot: 8164 +2024-09-22T00:45:00.190092Z INFO fork_choice_control::block_processor: Validating block with slot: 8165 +2024-09-22T00:45:00.191029Z INFO fork_choice_control::block_processor: Validating block with slot: 8166 +2024-09-22T00:45:00.192046Z INFO fork_choice_control::block_processor: Validating block with slot: 8167 +2024-09-22T00:45:00.192280Z INFO fork_choice_control::block_processor: Validating block with slot: 8169 +2024-09-22T00:45:00.192784Z INFO fork_choice_control::block_processor: Validating block with slot: 8170 +2024-09-22T00:45:00.193210Z INFO fork_choice_control::block_processor: Validating block with slot: 8171 +2024-09-22T00:45:00.193840Z INFO fork_choice_control::block_processor: Validating block with slot: 8172 +2024-09-22T00:45:00.193870Z INFO fork_choice_control::block_processor: Validating block with slot: 8173 +2024-09-22T00:45:00.194533Z INFO fork_choice_control::block_processor: Validating block with slot: 8256 +2024-09-22T00:45:00.194551Z INFO fork_choice_control::block_processor: Validating block with slot: 8038 +2024-09-22T00:45:00.194571Z INFO fork_choice_control::block_processor: Validating block with slot: 8045 +2024-09-22T00:45:00.194716Z INFO fork_choice_control::block_processor: Validating block with slot: 8048 +2024-09-22T00:45:00.197409Z INFO fork_choice_control::block_processor: Validating block with slot: 4978 +2024-09-22T00:45:00.197959Z INFO fork_choice_control::block_processor: Validating block with slot: 8051 +2024-09-22T00:45:00.198641Z INFO fork_choice_control::block_processor: Validating block with slot: 8050 +2024-09-22T00:45:00.198634Z INFO fork_choice_control::block_processor: Validating block with slot: 8049 +2024-09-22T00:45:00.198653Z INFO fork_choice_control::block_processor: Validating block with slot: 8168 +2024-09-22T00:45:00.199440Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x90f27faf82e576f6620c95624facfcc0631284d6b66dda69548c290e5059915a, slot: 4978 +2024-09-22T00:45:00.205037Z INFO fork_choice_control::block_processor: Validating block with slot: 8052 +2024-09-22T00:45:00.205318Z INFO fork_choice_control::block_processor: Validating block with slot: 8054 +2024-09-22T00:45:00.205344Z INFO fork_choice_control::block_processor: Validating block with slot: 8053 +2024-09-22T00:45:00.205855Z INFO fork_choice_control::block_processor: Validating block with slot: 8055 +2024-09-22T00:45:00.207699Z INFO fork_choice_control::block_processor: Validating block with slot: 8174 +2024-09-22T00:45:00.207730Z INFO fork_choice_control::block_processor: Validating block with slot: 8175 +2024-09-22T00:45:00.208167Z INFO fork_choice_control::block_processor: Validating block with slot: 8176 +2024-09-22T00:45:00.210623Z INFO fork_choice_control::block_processor: Validating block with slot: 8177 +2024-09-22T00:45:00.214325Z INFO fork_choice_control::block_processor: Validating block with slot: 8178 +2024-09-22T00:45:00.214503Z INFO fork_choice_control::block_processor: Validating block with slot: 8179 +2024-09-22T00:45:00.214570Z INFO fork_choice_control::block_processor: Validating block with slot: 8180 +2024-09-22T00:45:00.218285Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4978 +2024-09-22T00:45:00.218347Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4978 +2024-09-22T00:45:00.236172Z INFO fork_choice_control::block_processor: Validating block with slot: 4979 +2024-09-22T00:45:00.237450Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe5669896c3d12c3ad430735ea9e3de297e8e38627a47f5f1e0957e3e28eae4a9, slot: 4979 +2024-09-22T00:45:00.245634Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4979 +2024-09-22T00:45:00.245661Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4979 +2024-09-22T00:45:00.251861Z INFO fork_choice_control::block_processor: Validating block with slot: 8056 +2024-09-22T00:45:00.251897Z INFO fork_choice_control::block_processor: Validating block with slot: 8057 +2024-09-22T00:45:00.251906Z INFO fork_choice_control::block_processor: Validating block with slot: 8059 +2024-09-22T00:45:00.252061Z INFO fork_choice_control::block_processor: Validating block with slot: 8060 +2024-09-22T00:45:00.252173Z INFO fork_choice_control::block_processor: Validating block with slot: 8061 +2024-09-22T00:45:00.252838Z INFO fork_choice_control::block_processor: Validating block with slot: 8062 +2024-09-22T00:45:00.255373Z INFO fork_choice_control::block_processor: Validating block with slot: 8063 +2024-09-22T00:45:00.258286Z INFO fork_choice_control::block_processor: Validating block with slot: 8064 +2024-09-22T00:45:00.258299Z INFO fork_choice_control::block_processor: Validating block with slot: 8181 +2024-09-22T00:45:00.258427Z INFO fork_choice_control::block_processor: Validating block with slot: 8182 +2024-09-22T00:45:00.259038Z INFO fork_choice_control::block_processor: Validating block with slot: 8183 +2024-09-22T00:45:00.259655Z INFO fork_choice_control::block_processor: Validating block with slot: 8184 +2024-09-22T00:45:00.260569Z INFO fork_choice_control::block_processor: Validating block with slot: 8065 +2024-09-22T00:45:00.265807Z INFO fork_choice_control::block_processor: Validating block with slot: 4980 +2024-09-22T00:45:00.268542Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x19a1147d7751ad985a34338e4fed68ad1d400e7733366f7e2bb7f0fa02370f54, slot: 4980 +2024-09-22T00:45:00.284420Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4980 +2024-09-22T00:45:00.284444Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4980 +2024-09-22T00:45:00.302694Z INFO fork_choice_control::block_processor: Validating block with slot: 4981 +2024-09-22T00:45:00.303893Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0676b4b7669822e21e98ff86726b7e84f3c9899b1e205a0e4885da585a4b6650, slot: 4981 +2024-09-22T00:45:00.313945Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4981 +2024-09-22T00:45:00.313968Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4981 +2024-09-22T00:45:00.334875Z INFO fork_choice_control::block_processor: Validating block with slot: 4982 +2024-09-22T00:45:00.336507Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x138dcd2afe1c35a0c20d0a887d850f3e4d76def2cb71f934cfb3e2bd2d567f39, slot: 4982 +2024-09-22T00:45:00.348923Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4982 +2024-09-22T00:45:00.348947Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4982 +2024-09-22T00:45:00.364910Z INFO fork_choice_control::block_processor: Validating block with slot: 8069 +2024-09-22T00:45:00.364929Z INFO fork_choice_control::block_processor: Validating block with slot: 8066 +2024-09-22T00:45:00.364988Z INFO fork_choice_control::block_processor: Validating block with slot: 8072 +2024-09-22T00:45:00.364991Z INFO fork_choice_control::block_processor: Validating block with slot: 8068 +2024-09-22T00:45:00.364981Z INFO fork_choice_control::block_processor: Validating block with slot: 8071 +2024-09-22T00:45:00.365203Z INFO fork_choice_control::block_processor: Validating block with slot: 8067 +2024-09-22T00:45:00.366654Z INFO fork_choice_control::block_processor: Validating block with slot: 8073 +2024-09-22T00:45:00.366748Z INFO fork_choice_control::block_processor: Validating block with slot: 8287 +2024-09-22T00:45:00.366788Z INFO fork_choice_control::block_processor: Validating block with slot: 8185 +2024-09-22T00:45:00.366798Z INFO fork_choice_control::block_processor: Validating block with slot: 8070 +2024-09-22T00:45:00.368026Z INFO fork_choice_control::block_processor: Validating block with slot: 8186 +2024-09-22T00:45:00.368136Z INFO fork_choice_control::block_processor: Validating block with slot: 8187 +2024-09-22T00:45:00.368569Z INFO fork_choice_control::block_processor: Validating block with slot: 8189 +2024-09-22T00:45:00.368664Z INFO fork_choice_control::block_processor: Validating block with slot: 8190 +2024-09-22T00:45:00.369426Z INFO fork_choice_control::block_processor: Validating block with slot: 8191 +2024-09-22T00:45:00.369536Z INFO fork_choice_control::block_processor: Validating block with slot: 8192 +2024-09-22T00:45:00.369646Z INFO fork_choice_control::block_processor: Validating block with slot: 8193 +2024-09-22T00:45:00.370510Z INFO fork_choice_control::block_processor: Validating block with slot: 8194 +2024-09-22T00:45:00.370629Z INFO fork_choice_control::block_processor: Validating block with slot: 8074 +2024-09-22T00:45:00.370771Z INFO fork_choice_control::block_processor: Validating block with slot: 8076 +2024-09-22T00:45:00.370776Z INFO fork_choice_control::block_processor: Validating block with slot: 8075 +2024-09-22T00:45:00.371321Z INFO fork_choice_control::block_processor: Validating block with slot: 8077 +2024-09-22T00:45:00.371716Z INFO fork_choice_control::block_processor: Validating block with slot: 8078 +2024-09-22T00:45:00.372012Z INFO fork_choice_control::block_processor: Validating block with slot: 8079 +2024-09-22T00:45:00.372184Z INFO fork_choice_control::block_processor: Validating block with slot: 8080 +2024-09-22T00:45:00.373034Z INFO fork_choice_control::block_processor: Validating block with slot: 8081 +2024-09-22T00:45:00.373094Z INFO fork_choice_control::block_processor: Validating block with slot: 8082 +2024-09-22T00:45:00.373277Z INFO fork_choice_control::block_processor: Validating block with slot: 8083 +2024-09-22T00:45:00.374535Z INFO fork_choice_control::block_processor: Validating block with slot: 8196 +2024-09-22T00:45:00.374697Z INFO fork_choice_control::block_processor: Validating block with slot: 8195 +2024-09-22T00:45:00.374770Z INFO fork_choice_control::block_processor: Validating block with slot: 8198 +2024-09-22T00:45:00.374946Z INFO fork_choice_control::block_processor: Validating block with slot: 8199 +2024-09-22T00:45:00.375169Z INFO fork_choice_control::block_processor: Validating block with slot: 8200 +2024-09-22T00:45:00.375589Z INFO fork_choice_control::block_processor: Validating block with slot: 8201 +2024-09-22T00:45:00.376172Z INFO fork_choice_control::block_processor: Validating block with slot: 8197 +2024-09-22T00:45:00.376350Z INFO fork_choice_control::block_processor: Validating block with slot: 8202 +2024-09-22T00:45:00.376482Z INFO fork_choice_control::block_processor: Validating block with slot: 8203 +2024-09-22T00:45:00.376988Z INFO fork_choice_control::block_processor: Validating block with slot: 8084 +2024-09-22T00:45:00.377231Z INFO fork_choice_control::block_processor: Validating block with slot: 8085 +2024-09-22T00:45:00.377339Z INFO fork_choice_control::block_processor: Validating block with slot: 8086 +2024-09-22T00:45:00.377434Z INFO fork_choice_control::block_processor: Validating block with slot: 8087 +2024-09-22T00:45:00.378728Z INFO fork_choice_control::block_processor: Validating block with slot: 8091 +2024-09-22T00:45:00.378724Z INFO fork_choice_control::block_processor: Validating block with slot: 8088 +2024-09-22T00:45:00.378746Z INFO fork_choice_control::block_processor: Validating block with slot: 8204 +2024-09-22T00:45:00.379061Z INFO fork_choice_control::block_processor: Validating block with slot: 8205 +2024-09-22T00:45:00.379064Z INFO fork_choice_control::block_processor: Validating block with slot: 8089 +2024-09-22T00:45:00.379812Z INFO fork_choice_control::block_processor: Validating block with slot: 8206 +2024-09-22T00:45:00.379982Z INFO fork_choice_control::block_processor: Validating block with slot: 8207 +2024-09-22T00:45:00.380294Z INFO fork_choice_control::block_processor: Validating block with slot: 8208 +2024-09-22T00:45:00.380380Z INFO fork_choice_control::block_processor: Validating block with slot: 8092 +2024-09-22T00:45:00.380469Z INFO fork_choice_control::block_processor: Validating block with slot: 8209 +2024-09-22T00:45:00.381623Z INFO fork_choice_control::block_processor: Validating block with slot: 8090 +2024-09-22T00:45:00.382026Z INFO fork_choice_control::block_processor: Validating block with slot: 8211 +2024-09-22T00:45:00.382253Z INFO fork_choice_control::block_processor: Validating block with slot: 8095 +2024-09-22T00:45:00.382415Z INFO fork_choice_control::block_processor: Validating block with slot: 8093 +2024-09-22T00:45:00.382621Z INFO fork_choice_control::block_processor: Validating block with slot: 8212 +2024-09-22T00:45:00.383261Z INFO fork_choice_control::block_processor: Validating block with slot: 8213 +2024-09-22T00:45:00.383335Z INFO fork_choice_control::block_processor: Validating block with slot: 4983 +2024-09-22T00:45:00.384023Z INFO fork_choice_control::block_processor: Validating block with slot: 8210 +2024-09-22T00:45:00.384248Z INFO fork_choice_control::block_processor: Validating block with slot: 8094 +2024-09-22T00:45:00.386401Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x32d6d142dd57f4a5f4faa88d65287ac36bdc1cc76c808318e52762e5f7b8a18a, slot: 4983 +2024-09-22T00:45:00.400283Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4983 +2024-09-22T00:45:00.400306Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4983 +2024-09-22T00:45:00.409989Z INFO fork_choice_control::block_processor: Validating block with slot: 8217 +2024-09-22T00:45:00.409972Z INFO fork_choice_control::block_processor: Validating block with slot: 8216 +2024-09-22T00:45:00.410020Z INFO fork_choice_control::block_processor: Validating block with slot: 8219 +2024-09-22T00:45:00.410044Z INFO fork_choice_control::block_processor: Validating block with slot: 8214 +2024-09-22T00:45:00.410041Z INFO fork_choice_control::block_processor: Validating block with slot: 8215 +2024-09-22T00:45:00.410320Z INFO fork_choice_control::block_processor: Validating block with slot: 8218 +2024-09-22T00:45:00.411437Z INFO fork_choice_control::block_processor: Validating block with slot: 8220 +2024-09-22T00:45:00.419161Z INFO fork_choice_control::block_processor: Validating block with slot: 8221 +2024-09-22T00:45:00.419168Z INFO fork_choice_control::block_processor: Validating block with slot: 8222 +2024-09-22T00:45:00.419176Z INFO fork_choice_control::block_processor: Validating block with slot: 8223 +2024-09-22T00:45:00.428756Z INFO fork_choice_control::block_processor: Validating block with slot: 4984 +2024-09-22T00:45:00.428758Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 154, root: 0xb4064c51638d469809820727189b2e8de0e78a48461ca1c3866314761cb4a56b, head slot: 4983, head root: 0x32d6d142dd57f4a5f4faa88d65287ac36bdc1cc76c808318e52762e5f7b8a18a) +2024-09-22T00:45:00.429833Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb737a9006d26024f2da160c90f0b2150b05199fcdd7ec0262f5a591631f86d59, slot: 4984 +2024-09-22T00:45:00.437551Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4984 +2024-09-22T00:45:00.437627Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4984 +2024-09-22T00:45:00.460713Z INFO fork_choice_control::block_processor: Validating block with slot: 4985 +2024-09-22T00:45:00.463348Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8270254cb78a8e7adfc073edb716147d908ae0aaca8275870b8dab1856305ce7, slot: 4985 +2024-09-22T00:45:00.478083Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4985 +2024-09-22T00:45:00.478110Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4985 +2024-09-22T00:45:00.500789Z INFO fork_choice_control::block_processor: Validating block with slot: 4986 +2024-09-22T00:45:00.502326Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb9202af612db43c74e4dc2df3ed94931cc8e5172ad22e6f6f2e3aecc73dbaa07, slot: 4986 +2024-09-22T00:45:00.515129Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4986 +2024-09-22T00:45:00.515148Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4986 +2024-09-22T00:45:00.535058Z INFO fork_choice_control::block_processor: Validating block with slot: 4987 +2024-09-22T00:45:00.536205Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4bca946172d7e55dbd3f44d647736882cd8e8ccceac315125211367f2d9bff91, slot: 4987 +2024-09-22T00:45:00.544002Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4987 +2024-09-22T00:45:00.544022Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4987 +2024-09-22T00:45:00.563012Z INFO fork_choice_control::block_processor: Validating block with slot: 4988 +2024-09-22T00:45:00.564056Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x428567594a76d49093884dddf039cfd07ac623d7452acc0b163d48765cbe2550, slot: 4988 +2024-09-22T00:45:00.571477Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4988 +2024-09-22T00:45:00.571496Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4988 +2024-09-22T00:45:00.589822Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 4928 +2024-09-22T00:45:00.590422Z INFO fork_choice_control::block_processor: Validating block with slot: 4989 +2024-09-22T00:45:00.591468Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6e986cc769b11ad48c845ebb7adb9050401c0239e145df91fbd296ea1fb83e2d, slot: 4989 +2024-09-22T00:45:00.599341Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4989 +2024-09-22T00:45:00.599361Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4989 +2024-09-22T00:45:00.618530Z INFO fork_choice_control::block_processor: Validating block with slot: 4990 +2024-09-22T00:45:00.619819Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf396238ec7bc35d3c1769229222aa36427667e69bf07ad2be1f1974d86dc8325, slot: 4990 +2024-09-22T00:45:00.629790Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4990 +2024-09-22T00:45:00.629815Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4990 +2024-09-22T00:45:00.650552Z INFO fork_choice_control::block_processor: Validating block with slot: 4991 +2024-09-22T00:45:00.651907Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6688d7188a05730d0816e731e24ecc1fdc124ee359bf39a70663c89d92aa4839, slot: 4991 +2024-09-22T00:45:00.659799Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4991 +2024-09-22T00:45:00.659821Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4991 +2024-09-22T00:45:00.678999Z INFO fork_choice_control::block_processor: Validating block with slot: 4992 +2024-09-22T00:45:00.680368Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9e8a731c1f509be2bd624bb7c2ed6432878b85e1eb084262b0f6284751e86671, slot: 4992 +2024-09-22T00:45:00.791556Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4992 +2024-09-22T00:45:00.791580Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4992 +2024-09-22T00:45:00.802665Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 4992) +2024-09-22T00:45:00.802926Z INFO fork_choice_control::block_processor: Validating block with slot: 4993 +2024-09-22T00:45:00.804279Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x53ea6a29dc561568c45066d13779ac2e7be76422bba037b4953f7ce3f4450801, slot: 4993 +2024-09-22T00:45:00.884675Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4993 +2024-09-22T00:45:00.884697Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4993 +2024-09-22T00:45:00.896421Z INFO fork_choice_control::block_processor: Validating block with slot: 4994 +2024-09-22T00:45:00.903240Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x146740d7b1546d988b3fadb358b134d3d28ac92a05febbc37a7c94523bcc77da, slot: 4994 +2024-09-22T00:45:00.929666Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4994 +2024-09-22T00:45:00.929688Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4994 +2024-09-22T00:45:00.943026Z INFO fork_choice_control::block_processor: Validating block with slot: 4995 +2024-09-22T00:45:00.944136Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x07a9a2ae83a69b497a94a5aa8763a23a69d7b05783d3a1835da82b9fe2a150b1, slot: 4995 +2024-09-22T00:45:00.951032Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4995 +2024-09-22T00:45:00.951045Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4995 +2024-09-22T00:45:00.964884Z INFO fork_choice_control::block_processor: Validating block with slot: 4996 +2024-09-22T00:45:00.966562Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x572c21566e4e8009e26b2d48ba841cbbf69f4a7c80270e7af648bd6f6ebae35c, slot: 4996 +2024-09-22T00:45:00.974858Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4996 +2024-09-22T00:45:00.974882Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4996 +2024-09-22T00:45:00.988539Z INFO fork_choice_control::block_processor: Validating block with slot: 4997 +2024-09-22T00:45:00.990059Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf9077795d861afb50d1f54858d8fbd92aca66be99bb27745a823655faa20e52f, slot: 4997 +2024-09-22T00:45:00.998107Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4997 +2024-09-22T00:45:00.998129Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4997 +2024-09-22T00:45:01.012066Z INFO fork_choice_control::block_processor: Validating block with slot: 4998 +2024-09-22T00:45:01.013127Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x80bac817a071b085a8502da5b181fb7d737cc5a983788b1870a0807d6a36141a, slot: 4998 +2024-09-22T00:45:01.023999Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4998 +2024-09-22T00:45:01.024022Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4998 +2024-09-22T00:45:01.039433Z INFO fork_choice_control::block_processor: Validating block with slot: 4999 +2024-09-22T00:45:01.042545Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8fd338554e4d2b38270e6cafd3538b9d0c36f0a0c0c2957b196f28658d250569, slot: 4999 +2024-09-22T00:45:01.059075Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 4999 +2024-09-22T00:45:01.059100Z INFO fork_choice_control::block_processor: Block validation completed for slot: 4999 +2024-09-22T00:45:01.074600Z INFO fork_choice_control::block_processor: Validating block with slot: 5000 +2024-09-22T00:45:01.075744Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x192b85b0fb0efc7c957df92e6ddd0a18a4d92c4c5e80c85b4c79007f3efc305b, slot: 5000 +2024-09-22T00:45:01.082370Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5000 +2024-09-22T00:45:01.082389Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5000 +2024-09-22T00:45:01.097311Z INFO fork_choice_control::block_processor: Validating block with slot: 5001 +2024-09-22T00:45:01.101874Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x057d11e1ba6f503c0f4c7f8e240d8f238834bb8275891bfb39d61e9bb4513e83, slot: 5001 +2024-09-22T00:45:01.119033Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5001 +2024-09-22T00:45:01.119057Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5001 +2024-09-22T00:45:01.123732Z INFO fork_choice_control::block_processor: Validating block with slot: 8352 +2024-09-22T00:45:01.127188Z INFO fork_choice_control::block_processor: Validating block with slot: 8353 +2024-09-22T00:45:01.131775Z INFO fork_choice_control::block_processor: Validating block with slot: 8355 +2024-09-22T00:45:01.131797Z INFO fork_choice_control::block_processor: Validating block with slot: 8354 +2024-09-22T00:45:01.133295Z INFO fork_choice_control::block_processor: Validating block with slot: 8356 +2024-09-22T00:45:01.135011Z INFO fork_choice_control::block_processor: Validating block with slot: 5002 +2024-09-22T00:45:01.136314Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x933077e6a5b0177dd723c1003d676451898c01ab746c11cb9acbd89bbfd46b8c, slot: 5002 +2024-09-22T00:45:01.141557Z INFO fork_choice_control::block_processor: Validating block with slot: 8357 +2024-09-22T00:45:01.141572Z INFO fork_choice_control::block_processor: Validating block with slot: 8358 +2024-09-22T00:45:01.141722Z INFO fork_choice_control::block_processor: Validating block with slot: 8359 +2024-09-22T00:45:01.150953Z INFO fork_choice_control::block_processor: Validating block with slot: 8360 +2024-09-22T00:45:01.151012Z INFO fork_choice_control::block_processor: Validating block with slot: 8361 +2024-09-22T00:45:01.151227Z INFO fork_choice_control::block_processor: Validating block with slot: 8362 +2024-09-22T00:45:01.151577Z INFO fork_choice_control::block_processor: Validating block with slot: 8363 +2024-09-22T00:45:01.155790Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5002 +2024-09-22T00:45:01.155830Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5002 +2024-09-22T00:45:01.173052Z INFO fork_choice_control::block_processor: Validating block with slot: 5003 +2024-09-22T00:45:01.174694Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdd1b195433d0eb34afe8a690816cbf133b6bd705401d6eed7e9ab3120f3db396, slot: 5003 +2024-09-22T00:45:01.181567Z INFO fork_choice_control::block_processor: Validating block with slot: 8364 +2024-09-22T00:45:01.181579Z INFO fork_choice_control::block_processor: Validating block with slot: 8365 +2024-09-22T00:45:01.181641Z INFO fork_choice_control::block_processor: Validating block with slot: 8366 +2024-09-22T00:45:01.181721Z INFO fork_choice_control::block_processor: Validating block with slot: 8367 +2024-09-22T00:45:01.183272Z INFO fork_choice_control::block_processor: Validating block with slot: 8368 +2024-09-22T00:45:01.184572Z INFO fork_choice_control::block_processor: Validating block with slot: 8369 +2024-09-22T00:45:01.185452Z INFO fork_choice_control::block_processor: Validating block with slot: 8370 +2024-09-22T00:45:01.186455Z INFO fork_choice_control::block_processor: Validating block with slot: 8371 +2024-09-22T00:45:01.189798Z INFO fork_choice_control::block_processor: Validating block with slot: 8377 +2024-09-22T00:45:01.189707Z INFO fork_choice_control::block_processor: Validating block with slot: 8372 +2024-09-22T00:45:01.190151Z INFO fork_choice_control::block_processor: Validating block with slot: 8373 +2024-09-22T00:45:01.191145Z INFO fork_choice_control::block_processor: Validating block with slot: 8375 +2024-09-22T00:45:01.191197Z INFO fork_choice_control::block_processor: Validating block with slot: 8378 +2024-09-22T00:45:01.194023Z INFO fork_choice_control::block_processor: Validating block with slot: 8376 +2024-09-22T00:45:01.194142Z INFO fork_choice_control::block_processor: Validating block with slot: 8379 +2024-09-22T00:45:01.194267Z INFO fork_choice_control::block_processor: Validating block with slot: 8381 +2024-09-22T00:45:01.194574Z INFO fork_choice_control::block_processor: Validating block with slot: 8382 +2024-09-22T00:45:01.195174Z INFO fork_choice_control::block_processor: Validating block with slot: 8383 +2024-09-22T00:45:01.195198Z INFO fork_choice_control::block_processor: Validating block with slot: 8384 +2024-09-22T00:45:01.195920Z INFO fork_choice_control::block_processor: Validating block with slot: 8385 +2024-09-22T00:45:01.197082Z INFO fork_choice_control::block_processor: Validating block with slot: 8386 +2024-09-22T00:45:01.197184Z INFO fork_choice_control::block_processor: Validating block with slot: 8380 +2024-09-22T00:45:01.203755Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5003 +2024-09-22T00:45:01.203801Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5003 +2024-09-22T00:45:01.220613Z INFO fork_choice_control::block_processor: Validating block with slot: 5004 +2024-09-22T00:45:01.225508Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xde439555dd0a2bcfc0c32958e424af359380861b33ae97425b4802c649910672, slot: 5004 +2024-09-22T00:45:01.255810Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5004 +2024-09-22T00:45:01.255842Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5004 +2024-09-22T00:45:01.273584Z INFO fork_choice_control::block_processor: Validating block with slot: 5005 +2024-09-22T00:45:01.275671Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x815c5181cd53283be198cf44d4fb6363eb1eee9005ba73d2f9564d2e2cc7867e, slot: 5005 +2024-09-22T00:45:01.288202Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5005 +2024-09-22T00:45:01.288221Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5005 +2024-09-22T00:45:01.306213Z INFO fork_choice_control::block_processor: Validating block with slot: 5006 +2024-09-22T00:45:01.307941Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc4dc6273161077537213c7ccc1eafa02c18512b4b842948c2bcd0cc01d18c556, slot: 5006 +2024-09-22T00:45:01.311380Z INFO fork_choice_control::block_processor: Validating block with slot: 8387 +2024-09-22T00:45:01.312254Z INFO fork_choice_control::block_processor: Validating block with slot: 8388 +2024-09-22T00:45:01.314820Z INFO fork_choice_control::block_processor: Validating block with slot: 8389 +2024-09-22T00:45:01.317798Z INFO fork_choice_control::block_processor: Validating block with slot: 8390 +2024-09-22T00:45:01.318476Z INFO fork_choice_control::block_processor: Validating block with slot: 8288 +2024-09-22T00:45:01.318706Z INFO fork_choice_control::block_processor: Validating block with slot: 8289 +2024-09-22T00:45:01.319197Z INFO fork_choice_control::block_processor: Validating block with slot: 8392 +2024-09-22T00:45:01.319237Z INFO fork_choice_control::block_processor: Validating block with slot: 8393 +2024-09-22T00:45:01.319245Z INFO fork_choice_control::block_processor: Validating block with slot: 8391 +2024-09-22T00:45:01.319632Z INFO fork_choice_control::block_processor: Validating block with slot: 8395 +2024-09-22T00:45:01.320129Z INFO fork_choice_control::block_processor: Validating block with slot: 8394 +2024-09-22T00:45:01.320225Z INFO fork_choice_control::block_processor: Validating block with slot: 8290 +2024-09-22T00:45:01.320416Z INFO fork_choice_control::block_processor: Validating block with slot: 8396 +2024-09-22T00:45:01.321321Z INFO fork_choice_control::block_processor: Validating block with slot: 8291 +2024-09-22T00:45:01.321754Z INFO fork_choice_control::block_processor: Validating block with slot: 8397 +2024-09-22T00:45:01.322632Z INFO fork_choice_control::block_processor: Validating block with slot: 8293 +2024-09-22T00:45:01.322736Z INFO fork_choice_control::block_processor: Validating block with slot: 8292 +2024-09-22T00:45:01.323204Z INFO fork_choice_control::block_processor: Validating block with slot: 8399 +2024-09-22T00:45:01.323686Z INFO fork_choice_control::block_processor: Validating block with slot: 8294 +2024-09-22T00:45:01.323805Z INFO fork_choice_control::block_processor: Validating block with slot: 8400 +2024-09-22T00:45:01.323893Z INFO fork_choice_control::block_processor: Validating block with slot: 8398 +2024-09-22T00:45:01.324101Z INFO fork_choice_control::block_processor: Validating block with slot: 8295 +2024-09-22T00:45:01.324335Z INFO fork_choice_control::block_processor: Validating block with slot: 8401 +2024-09-22T00:45:01.324934Z INFO fork_choice_control::block_processor: Validating block with slot: 8296 +2024-09-22T00:45:01.325046Z INFO fork_choice_control::block_processor: Validating block with slot: 8402 +2024-09-22T00:45:01.325339Z INFO fork_choice_control::block_processor: Validating block with slot: 8297 +2024-09-22T00:45:01.325735Z INFO fork_choice_control::block_processor: Validating block with slot: 8403 +2024-09-22T00:45:01.326443Z INFO fork_choice_control::block_processor: Validating block with slot: 8298 +2024-09-22T00:45:01.327875Z INFO fork_choice_control::block_processor: Validating block with slot: 8404 +2024-09-22T00:45:01.328109Z INFO fork_choice_control::block_processor: Validating block with slot: 8408 +2024-09-22T00:45:01.328689Z INFO fork_choice_control::block_processor: Validating block with slot: 8409 +2024-09-22T00:45:01.329320Z INFO fork_choice_control::block_processor: Validating block with slot: 8299 +2024-09-22T00:45:01.329338Z INFO fork_choice_control::block_processor: Validating block with slot: 8405 +2024-09-22T00:45:01.329365Z INFO fork_choice_control::block_processor: Validating block with slot: 8410 +2024-09-22T00:45:01.329777Z INFO fork_choice_control::block_processor: Validating block with slot: 8411 +2024-09-22T00:45:01.330454Z INFO fork_choice_control::block_processor: Validating block with slot: 8412 +2024-09-22T00:45:01.330569Z INFO fork_choice_control::block_processor: Validating block with slot: 8413 +2024-09-22T00:45:01.330802Z INFO fork_choice_control::block_processor: Validating block with slot: 8414 +2024-09-22T00:45:01.332383Z INFO fork_choice_control::block_processor: Validating block with slot: 8302 +2024-09-22T00:45:01.332374Z INFO fork_choice_control::block_processor: Validating block with slot: 8300 +2024-09-22T00:45:01.332777Z INFO fork_choice_control::block_processor: Validating block with slot: 8406 +2024-09-22T00:45:01.332791Z INFO fork_choice_control::block_processor: Validating block with slot: 8301 +2024-09-22T00:45:01.332866Z INFO fork_choice_control::block_processor: Validating block with slot: 8303 +2024-09-22T00:45:01.333467Z INFO fork_choice_control::block_processor: Validating block with slot: 8304 +2024-09-22T00:45:01.333501Z INFO fork_choice_control::block_processor: Validating block with slot: 8305 +2024-09-22T00:45:01.334105Z INFO fork_choice_control::block_processor: Validating block with slot: 8306 +2024-09-22T00:45:01.334585Z INFO fork_choice_control::block_processor: Validating block with slot: 8308 +2024-09-22T00:45:01.335385Z INFO fork_choice_control::block_processor: Validating block with slot: 8309 +2024-09-22T00:45:01.335830Z INFO fork_choice_control::block_processor: Validating block with slot: 8416 +2024-09-22T00:45:01.336237Z INFO fork_choice_control::block_processor: Validating block with slot: 8311 +2024-09-22T00:45:01.336348Z INFO fork_choice_control::block_processor: Validating block with slot: 8407 +2024-09-22T00:45:01.336792Z INFO fork_choice_control::block_processor: Validating block with slot: 8417 +2024-09-22T00:45:01.337875Z INFO fork_choice_control::block_processor: Validating block with slot: 8312 +2024-09-22T00:45:01.338018Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5006 +2024-09-22T00:45:01.338058Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5006 +2024-09-22T00:45:01.338219Z INFO fork_choice_control::block_processor: Validating block with slot: 8313 +2024-09-22T00:45:01.338573Z INFO fork_choice_control::block_processor: Validating block with slot: 8419 +2024-09-22T00:45:01.339135Z INFO fork_choice_control::block_processor: Validating block with slot: 8314 +2024-09-22T00:45:01.340830Z INFO fork_choice_control::block_processor: Validating block with slot: 8420 +2024-09-22T00:45:01.340874Z INFO fork_choice_control::block_processor: Validating block with slot: 8316 +2024-09-22T00:45:01.340980Z INFO fork_choice_control::block_processor: Validating block with slot: 8315 +2024-09-22T00:45:01.341154Z INFO fork_choice_control::block_processor: Validating block with slot: 8310 +2024-09-22T00:45:01.341307Z INFO fork_choice_control::block_processor: Validating block with slot: 8422 +2024-09-22T00:45:01.342172Z INFO fork_choice_control::block_processor: Validating block with slot: 8317 +2024-09-22T00:45:01.342400Z INFO fork_choice_control::block_processor: Validating block with slot: 8423 +2024-09-22T00:45:01.343510Z INFO fork_choice_control::block_processor: Validating block with slot: 8424 +2024-09-22T00:45:01.343703Z INFO fork_choice_control::block_processor: Validating block with slot: 8425 +2024-09-22T00:45:01.344638Z INFO fork_choice_control::block_processor: Validating block with slot: 8426 +2024-09-22T00:45:01.345669Z INFO fork_choice_control::block_processor: Validating block with slot: 8427 +2024-09-22T00:45:01.345818Z INFO fork_choice_control::block_processor: Validating block with slot: 8321 +2024-09-22T00:45:01.346136Z INFO fork_choice_control::block_processor: Validating block with slot: 8418 +2024-09-22T00:45:01.346268Z INFO fork_choice_control::block_processor: Validating block with slot: 8318 +2024-09-22T00:45:01.347278Z INFO fork_choice_control::block_processor: Validating block with slot: 8319 +2024-09-22T00:45:01.347505Z INFO fork_choice_control::block_processor: Validating block with slot: 8428 +2024-09-22T00:45:01.349529Z INFO fork_choice_control::block_processor: Validating block with slot: 8421 +2024-09-22T00:45:01.349680Z INFO fork_choice_control::block_processor: Validating block with slot: 8320 +2024-09-22T00:45:01.360067Z INFO fork_choice_control::block_processor: Validating block with slot: 5007 +2024-09-22T00:45:01.361793Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa2a1dba03ee11bfb8a9b3ef68f7312aa285e73f91044a6959e1640e7a1a9c00b, slot: 5007 +2024-09-22T00:45:01.372446Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5007 +2024-09-22T00:45:01.372472Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5007 +2024-09-22T00:45:01.393072Z INFO fork_choice_control::block_processor: Validating block with slot: 5008 +2024-09-22T00:45:01.394809Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3c8eff4423489665d8a579ce38eba1521d603d1202887c4f24b94a220a5f20fb, slot: 5008 +2024-09-22T00:45:01.403475Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5008 +2024-09-22T00:45:01.403498Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5008 +2024-09-22T00:45:01.422380Z INFO fork_choice_control::block_processor: Validating block with slot: 5009 +2024-09-22T00:45:01.424701Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x398ea2b6d20b5636f74ca418816367bfd7c8f5fe298f9360b76a0fddb17a46a7, slot: 5009 +2024-09-22T00:45:01.426961Z INFO fork_choice_control::block_processor: Validating block with slot: 8429 +2024-09-22T00:45:01.426968Z INFO fork_choice_control::block_processor: Validating block with slot: 8322 +2024-09-22T00:45:01.426978Z INFO fork_choice_control::block_processor: Validating block with slot: 8430 +2024-09-22T00:45:01.428338Z INFO fork_choice_control::block_processor: Validating block with slot: 8323 +2024-09-22T00:45:01.429474Z INFO fork_choice_control::block_processor: Validating block with slot: 8431 +2024-09-22T00:45:01.431700Z INFO fork_choice_control::block_processor: Validating block with slot: 8432 +2024-09-22T00:45:01.432144Z INFO fork_choice_control::block_processor: Validating block with slot: 8433 +2024-09-22T00:45:01.433383Z INFO fork_choice_control::block_processor: Validating block with slot: 8324 +2024-09-22T00:45:01.434014Z INFO fork_choice_control::block_processor: Validating block with slot: 8434 +2024-09-22T00:45:01.434854Z INFO fork_choice_control::block_processor: Validating block with slot: 8435 +2024-09-22T00:45:01.434975Z INFO fork_choice_control::block_processor: Validating block with slot: 8436 +2024-09-22T00:45:01.435631Z INFO fork_choice_control::block_processor: Validating block with slot: 8437 +2024-09-22T00:45:01.436098Z INFO fork_choice_control::block_processor: Validating block with slot: 8438 +2024-09-22T00:45:01.436389Z INFO fork_choice_control::block_processor: Validating block with slot: 8325 +2024-09-22T00:45:01.437086Z INFO fork_choice_control::block_processor: Validating block with slot: 8439 +2024-09-22T00:45:01.437654Z INFO fork_choice_control::block_processor: Validating block with slot: 8326 +2024-09-22T00:45:01.438738Z INFO fork_choice_control::block_processor: Validating block with slot: 8440 +2024-09-22T00:45:01.439487Z INFO fork_choice_control::block_processor: Validating block with slot: 8327 +2024-09-22T00:45:01.440484Z INFO fork_choice_control::block_processor: Validating block with slot: 8441 +2024-09-22T00:45:01.440610Z INFO fork_choice_control::block_processor: Validating block with slot: 8328 +2024-09-22T00:45:01.441011Z INFO fork_choice_control::block_processor: Validating block with slot: 8442 +2024-09-22T00:45:01.441785Z INFO fork_choice_control::block_processor: Validating block with slot: 8443 +2024-09-22T00:45:01.441826Z INFO fork_choice_control::block_processor: Validating block with slot: 8329 +2024-09-22T00:45:01.442193Z INFO fork_choice_control::block_processor: Validating block with slot: 8444 +2024-09-22T00:45:01.443227Z INFO fork_choice_control::block_processor: Validating block with slot: 8445 +2024-09-22T00:45:01.443313Z INFO fork_choice_control::block_processor: Validating block with slot: 8446 +2024-09-22T00:45:01.444048Z INFO fork_choice_control::block_processor: Validating block with slot: 8332 +2024-09-22T00:45:01.443092Z INFO fork_choice_control::block_processor: Validating block with slot: 8330 +2024-09-22T00:45:01.444870Z INFO fork_choice_control::block_processor: Validating block with slot: 8333 +2024-09-22T00:45:01.444918Z INFO fork_choice_control::block_processor: Validating block with slot: 8334 +2024-09-22T00:45:01.444971Z INFO fork_choice_control::block_processor: Validating block with slot: 8335 +2024-09-22T00:45:01.445492Z INFO fork_choice_control::block_processor: Validating block with slot: 8336 +2024-09-22T00:45:01.446158Z INFO fork_choice_control::block_processor: Validating block with slot: 8337 +2024-09-22T00:45:01.446258Z INFO fork_choice_control::block_processor: Validating block with slot: 8338 +2024-09-22T00:45:01.446267Z INFO fork_choice_control::block_processor: Validating block with slot: 8339 +2024-09-22T00:45:01.446578Z INFO fork_choice_control::block_processor: Validating block with slot: 8340 +2024-09-22T00:45:01.447241Z INFO fork_choice_control::block_processor: Validating block with slot: 8341 +2024-09-22T00:45:01.447663Z INFO fork_choice_control::block_processor: Validating block with slot: 8447 +2024-09-22T00:45:01.447666Z INFO fork_choice_control::block_processor: Validating block with slot: 8448 +2024-09-22T00:45:01.448642Z INFO fork_choice_control::block_processor: Validating block with slot: 8415 +2024-09-22T00:45:01.448911Z INFO fork_choice_control::block_processor: Validating block with slot: 8449 +2024-09-22T00:45:01.449136Z INFO fork_choice_control::block_processor: Validating block with slot: 8450 +2024-09-22T00:45:01.449813Z INFO fork_choice_control::block_processor: Validating block with slot: 8451 +2024-09-22T00:45:01.450015Z INFO fork_choice_control::block_processor: Validating block with slot: 8452 +2024-09-22T00:45:01.450066Z INFO fork_choice_control::block_processor: Validating block with slot: 8454 +2024-09-22T00:45:01.450287Z INFO fork_choice_control::block_processor: Validating block with slot: 8342 +2024-09-22T00:45:01.450589Z INFO fork_choice_control::block_processor: Validating block with slot: 8453 +2024-09-22T00:45:01.451373Z INFO fork_choice_control::block_processor: Validating block with slot: 8343 +2024-09-22T00:45:01.457831Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5009 +2024-09-22T00:45:01.457854Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5009 +2024-09-22T00:45:01.462673Z INFO fork_choice_control::block_processor: Validating block with slot: 8345 +2024-09-22T00:45:01.462720Z INFO fork_choice_control::block_processor: Validating block with slot: 8347 +2024-09-22T00:45:01.462934Z INFO fork_choice_control::block_processor: Validating block with slot: 8346 +2024-09-22T00:45:01.463230Z INFO fork_choice_control::block_processor: Validating block with slot: 8344 +2024-09-22T00:45:01.463392Z INFO fork_choice_control::block_processor: Validating block with slot: 8348 +2024-09-22T00:45:01.463452Z INFO fork_choice_control::block_processor: Validating block with slot: 8349 +2024-09-22T00:45:01.463786Z INFO fork_choice_control::block_processor: Validating block with slot: 8351 +2024-09-22T00:45:01.464284Z INFO fork_choice_control::block_processor: Validating block with slot: 8455 +2024-09-22T00:45:01.465373Z INFO fork_choice_control::block_processor: Validating block with slot: 8456 +2024-09-22T00:45:01.465999Z INFO fork_choice_control::block_processor: Validating block with slot: 8457 +2024-09-22T00:45:01.466613Z INFO fork_choice_control::block_processor: Validating block with slot: 8458 +2024-09-22T00:45:01.466981Z INFO fork_choice_control::block_processor: Validating block with slot: 8459 +2024-09-22T00:45:01.467236Z INFO fork_choice_control::block_processor: Validating block with slot: 8460 +2024-09-22T00:45:01.467854Z INFO fork_choice_control::block_processor: Validating block with slot: 8461 +2024-09-22T00:45:01.468637Z INFO fork_choice_control::block_processor: Validating block with slot: 8463 +2024-09-22T00:45:01.468754Z INFO fork_choice_control::block_processor: Validating block with slot: 8462 +2024-09-22T00:45:01.469004Z INFO fork_choice_control::block_processor: Validating block with slot: 8350 +2024-09-22T00:45:01.476545Z INFO fork_choice_control::block_processor: Validating block with slot: 5010 +2024-09-22T00:45:01.477659Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4e82b191874e067ae73c2b408d2b9195022715af7453467958b482bf72d13211, slot: 5010 +2024-09-22T00:45:01.484355Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5010 +2024-09-22T00:45:01.484369Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5010 +2024-09-22T00:45:01.486388Z INFO fork_choice_control::block_processor: Validating block with slot: 8464 +2024-09-22T00:45:01.486390Z INFO fork_choice_control::block_processor: Validating block with slot: 8465 +2024-09-22T00:45:01.486406Z INFO fork_choice_control::block_processor: Validating block with slot: 8466 +2024-09-22T00:45:01.486528Z INFO fork_choice_control::block_processor: Validating block with slot: 8468 +2024-09-22T00:45:01.486620Z INFO fork_choice_control::block_processor: Validating block with slot: 8467 +2024-09-22T00:45:01.486780Z INFO fork_choice_control::block_processor: Validating block with slot: 8469 +2024-09-22T00:45:01.487503Z INFO fork_choice_control::block_processor: Validating block with slot: 8470 +2024-09-22T00:45:01.487850Z INFO fork_choice_control::block_processor: Validating block with slot: 8471 +2024-09-22T00:45:01.488027Z INFO fork_choice_control::block_processor: Validating block with slot: 8473 +2024-09-22T00:45:01.488796Z INFO fork_choice_control::block_processor: Validating block with slot: 8474 +2024-09-22T00:45:01.488935Z INFO fork_choice_control::block_processor: Validating block with slot: 8475 +2024-09-22T00:45:01.489141Z INFO fork_choice_control::block_processor: Validating block with slot: 8476 +2024-09-22T00:45:01.489245Z INFO fork_choice_control::block_processor: Validating block with slot: 8477 +2024-09-22T00:45:01.506704Z INFO fork_choice_control::block_processor: Validating block with slot: 5011 +2024-09-22T00:45:01.508536Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x50859f95aa434e0a667f2408693aa8d8af973c01f1f06e1d8471a282d3cf6f5e, slot: 5011 +2024-09-22T00:45:01.516715Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5011 +2024-09-22T00:45:01.516733Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5011 +2024-09-22T00:45:01.540649Z INFO fork_choice_control::block_processor: Validating block with slot: 5012 +2024-09-22T00:45:01.541801Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x23b143f44332f36304a459dcda4bcc99afc43af2bd311101829f7ef6b100ffec, slot: 5012 +2024-09-22T00:45:01.551847Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5012 +2024-09-22T00:45:01.551870Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5012 +2024-09-22T00:45:01.572082Z INFO fork_choice_control::block_processor: Validating block with slot: 5013 +2024-09-22T00:45:01.573859Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5137c5ee1b51e0b978968132bb9dd25728a6f81c2b518adc13b56442d0e869d5, slot: 5013 +2024-09-22T00:45:01.574266Z INFO fork_choice_control::block_processor: Validating block with slot: 8478 +2024-09-22T00:45:01.574476Z INFO fork_choice_control::block_processor: Validating block with slot: 8479 +2024-09-22T00:45:01.582016Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5013 +2024-09-22T00:45:01.582031Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5013 +2024-09-22T00:45:01.600208Z INFO fork_choice_control::block_processor: Validating block with slot: 5014 +2024-09-22T00:45:01.601569Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb78dce7f8e61216cf258863baff9cc03e3c174f7791597dd27d7aff5fe6555fb, slot: 5014 +2024-09-22T00:45:01.608803Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5014 +2024-09-22T00:45:01.608825Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5014 +2024-09-22T00:45:01.626763Z INFO fork_choice_control::block_processor: Validating block with slot: 5015 +2024-09-22T00:45:01.628270Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd02256cca1ba412a61572029132fcb933c6db9fb72bf0ee7efc35fb63f935959, slot: 5015 +2024-09-22T00:45:01.635040Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5015 +2024-09-22T00:45:01.635054Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5015 +2024-09-22T00:45:01.659870Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 155, root: 0x3fc4443988eaf89fa14526b68f7435ab3ef1d3a9100f5d85e27fd0ab3cb5ddc3, head slot: 5015, head root: 0xd02256cca1ba412a61572029132fcb933c6db9fb72bf0ee7efc35fb63f935959) +2024-09-22T00:45:01.659882Z INFO fork_choice_control::block_processor: Validating block with slot: 5016 +2024-09-22T00:45:01.661466Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4b144ae98358434e6228c5fa6e80508b75ed320c631223094d6de9fa5b1a4d3a, slot: 5016 +2024-09-22T00:45:01.669359Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5016 +2024-09-22T00:45:01.669385Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5016 +2024-09-22T00:45:01.688576Z INFO fork_choice_control::block_processor: Validating block with slot: 5017 +2024-09-22T00:45:01.689707Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x862b6c8b9227ea0d64d790a3dfcffe3618e41f6435fef9f53968ad36ef2d662a, slot: 5017 +2024-09-22T00:45:01.696711Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5017 +2024-09-22T00:45:01.696727Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5017 +2024-09-22T00:45:01.715269Z INFO fork_choice_control::block_processor: Validating block with slot: 5018 +2024-09-22T00:45:01.716631Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x67bc282bf30efce6efea22fe616d27e706d1d52eee04f09e75fb424d6df1e6d6, slot: 5018 +2024-09-22T00:45:01.723874Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5018 +2024-09-22T00:45:01.723893Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5018 +2024-09-22T00:45:01.743407Z INFO fork_choice_control::block_processor: Validating block with slot: 5019 +2024-09-22T00:45:01.745016Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd58a218b956790a0f76809a9dc98e036f2cbf7f12ffe96e164faac9de1031764, slot: 5019 +2024-09-22T00:45:01.753067Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5019 +2024-09-22T00:45:01.753082Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5019 +2024-09-22T00:45:01.773422Z INFO fork_choice_control::block_processor: Validating block with slot: 5020 +2024-09-22T00:45:01.774865Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd44fe95a66209960b891a3428fa3bcc0e66db8b503888ae6cd1fb783f64edcbc, slot: 5020 +2024-09-22T00:45:01.782028Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5020 +2024-09-22T00:45:01.782043Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5020 +2024-09-22T00:45:01.799804Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 4960 +2024-09-22T00:45:01.801902Z INFO fork_choice_control::block_processor: Validating block with slot: 5021 +2024-09-22T00:45:01.802979Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa4d7c459fd56bc6b982356bbb8e456d8d5084a1d3916da91ed2931e6ba7f09f9, slot: 5021 +2024-09-22T00:45:01.810215Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5021 +2024-09-22T00:45:01.810235Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5021 +2024-09-22T00:45:01.828703Z INFO fork_choice_control::block_processor: Validating block with slot: 5022 +2024-09-22T00:45:01.830207Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x680f65c68870457f5d3e43c424d8e89ab11ff18b4843bfbeb54754f8b7fc0b0e, slot: 5022 +2024-09-22T00:45:01.837320Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5022 +2024-09-22T00:45:01.837336Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5022 +2024-09-22T00:45:01.857437Z INFO fork_choice_control::block_processor: Validating block with slot: 5023 +2024-09-22T00:45:01.858497Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe06fe064e70d367160ff914a862c2bab41731a1109fe6c527cfa662b34317bbc, slot: 5023 +2024-09-22T00:45:01.864801Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5023 +2024-09-22T00:45:01.864818Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5023 +2024-09-22T00:45:01.885181Z INFO fork_choice_control::block_processor: Validating block with slot: 5024 +2024-09-22T00:45:01.886560Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0175d5cb1c03fed7bd3a21e3d4a65473691b78682e96df533a3865402196170f, slot: 5024 +2024-09-22T00:45:01.997268Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5024 +2024-09-22T00:45:01.997295Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5024 +2024-09-22T00:45:02.008587Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5024) +2024-09-22T00:45:02.008775Z INFO fork_choice_control::block_processor: Validating block with slot: 5025 +2024-09-22T00:45:02.011206Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x95ce6c284ba06a43d886643b087e1c0b0bed60dc073a8f4d3a4eed3f2aa9aed5, slot: 5025 +2024-09-22T00:45:02.090503Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5025 +2024-09-22T00:45:02.090524Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5025 +2024-09-22T00:45:02.102197Z INFO fork_choice_control::block_processor: Validating block with slot: 5026 +2024-09-22T00:45:02.103449Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaba7eda563a59812f4cf6794c098638baf3695783d8a2293b5885bd9376b4ef4, slot: 5026 +2024-09-22T00:45:02.110702Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5026 +2024-09-22T00:45:02.110720Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5026 +2024-09-22T00:45:02.123268Z INFO fork_choice_control::block_processor: Validating block with slot: 5027 +2024-09-22T00:45:02.124579Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8546998cf25ffcb3cd9c9361b8a9f4481d582cfffd78e9334967cd2109e3ec91, slot: 5027 +2024-09-22T00:45:02.131485Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5027 +2024-09-22T00:45:02.131499Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5027 +2024-09-22T00:45:02.144719Z INFO fork_choice_control::block_processor: Validating block with slot: 5028 +2024-09-22T00:45:02.146245Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x362d95cdbc775d0a186cd6b42176d118fb68f78e6c771959b591795b1f67ef2b, slot: 5028 +2024-09-22T00:45:02.153299Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5028 +2024-09-22T00:45:02.153310Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5028 +2024-09-22T00:45:02.166872Z INFO fork_choice_control::block_processor: Validating block with slot: 5029 +2024-09-22T00:45:02.168535Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdb17174c98ec71e8cc890f2a20aea91eafc2d1241fc6c10bd06acd5554f6d31d, slot: 5029 +2024-09-22T00:45:02.177695Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5029 +2024-09-22T00:45:02.177714Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5029 +2024-09-22T00:45:02.191714Z INFO fork_choice_control::block_processor: Validating block with slot: 5030 +2024-09-22T00:45:02.192808Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x346902ef4c1b3599c9f6d3b0777c312507ad564dc5860fca639a24f8750bdadc, slot: 5030 +2024-09-22T00:45:02.200837Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5030 +2024-09-22T00:45:02.200852Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5030 +2024-09-22T00:45:02.215180Z INFO fork_choice_control::block_processor: Validating block with slot: 5031 +2024-09-22T00:45:02.217146Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7ba8a41981963e876a52caa86311d1860be15253aac70a09bcaba054c0a5025a, slot: 5031 +2024-09-22T00:45:02.228057Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5031 +2024-09-22T00:45:02.228079Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5031 +2024-09-22T00:45:02.242868Z INFO fork_choice_control::block_processor: Validating block with slot: 5032 +2024-09-22T00:45:02.244092Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x96aa0e10fea72924d4996a2bf5928eaa9f60a923f7918dc43df3af76296afb31, slot: 5032 +2024-09-22T00:45:02.252196Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5032 +2024-09-22T00:45:02.252210Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5032 +2024-09-22T00:45:02.266496Z INFO fork_choice_control::block_processor: Validating block with slot: 5033 +2024-09-22T00:45:02.267614Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6ac40c0827d9c09d555a178b5b1978cefdebe1a2c6a71f6b322112999740370a, slot: 5033 +2024-09-22T00:45:02.274013Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5033 +2024-09-22T00:45:02.274033Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5033 +2024-09-22T00:45:02.282704Z INFO fork_choice_control::block_processor: Validating block with slot: 8544 +2024-09-22T00:45:02.288189Z INFO fork_choice_control::block_processor: Validating block with slot: 5034 +2024-09-22T00:45:02.289280Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5080461e4a637dee97cfe9ed5b68056572e4fad63c3cf9d3db11feaad5b2b87a, slot: 5034 +2024-09-22T00:45:02.297319Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5034 +2024-09-22T00:45:02.297341Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5034 +2024-09-22T00:45:02.312568Z INFO fork_choice_control::block_processor: Validating block with slot: 5035 +2024-09-22T00:45:02.314375Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x72970c3a4fbb26177e9356e5da6b0ab887f405dffe1573f3fce40ac4955e8c0a, slot: 5035 +2024-09-22T00:45:02.324951Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5035 +2024-09-22T00:45:02.324975Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5035 +2024-09-22T00:45:02.340560Z INFO fork_choice_control::block_processor: Validating block with slot: 5037 +2024-09-22T00:45:02.342971Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5e4b7d64d91a4476182c3c6faddde0ad999870f5ce4b643fea1c2ba9568b6bdc, slot: 5037 +2024-09-22T00:45:02.355728Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5037 +2024-09-22T00:45:02.355756Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5037 +2024-09-22T00:45:02.371639Z INFO fork_choice_control::block_processor: Validating block with slot: 5038 +2024-09-22T00:45:02.372831Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6a32f6044b179df20de29193e44530bab2ea93711f0d188279173faf2aacfe0b, slot: 5038 +2024-09-22T00:45:02.379602Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5038 +2024-09-22T00:45:02.379622Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5038 +2024-09-22T00:45:02.395174Z INFO fork_choice_control::block_processor: Validating block with slot: 5039 +2024-09-22T00:45:02.397459Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x660ac60622f7e6d8807ff3cfba193ea794367fc8412770fc1998716ba62f81f8, slot: 5039 +2024-09-22T00:45:02.410215Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5039 +2024-09-22T00:45:02.410238Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5039 +2024-09-22T00:45:02.427548Z INFO fork_choice_control::block_processor: Validating block with slot: 5040 +2024-09-22T00:45:02.428996Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4490a8a9a6fed269becefbbb8889b97c4d157b045a940ac7d88b00e35e759cb0, slot: 5040 +2024-09-22T00:45:02.435825Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5040 +2024-09-22T00:45:02.435841Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5040 +2024-09-22T00:45:02.453398Z INFO fork_choice_control::block_processor: Validating block with slot: 5041 +2024-09-22T00:45:02.454469Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7d614e16b0c3b0be239642d0962d94a2147cc8f877030c08e7df41c6590ae0e1, slot: 5041 +2024-09-22T00:45:02.461047Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5041 +2024-09-22T00:45:02.461067Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5041 +2024-09-22T00:45:02.478826Z INFO fork_choice_control::block_processor: Validating block with slot: 5042 +2024-09-22T00:45:02.479993Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1c91b364c094ccb2c5757aa8b39d1297f20ccf5548118a38e85d5623cd77df7f, slot: 5042 +2024-09-22T00:45:02.490371Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5042 +2024-09-22T00:45:02.490394Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5042 +2024-09-22T00:45:02.507962Z INFO fork_choice_control::block_processor: Validating block with slot: 5043 +2024-09-22T00:45:02.509209Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2f369160f07079da51b99d6c244f9b53f84b840ac51292697fba7d50c3eb521d, slot: 5043 +2024-09-22T00:45:02.517623Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5043 +2024-09-22T00:45:02.517639Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5043 +2024-09-22T00:45:02.535090Z INFO fork_choice_control::block_processor: Validating block with slot: 5044 +2024-09-22T00:45:02.536145Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcc71aa888463b2e2f8e3f38c8b31a34744cfc5830a1f9764a620249c46d8282d, slot: 5044 +2024-09-22T00:45:02.544892Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5044 +2024-09-22T00:45:02.544915Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5044 +2024-09-22T00:45:02.562611Z INFO fork_choice_control::block_processor: Validating block with slot: 5045 +2024-09-22T00:45:02.564660Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe898ab3ec0477a167a1a349f0330f44cbc8ee11b6aedb0292e046ee738b6ee56, slot: 5045 +2024-09-22T00:45:02.576560Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5045 +2024-09-22T00:45:02.576588Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5045 +2024-09-22T00:45:02.583418Z INFO fork_choice_control::block_processor: Validating block with slot: 8545 +2024-09-22T00:45:02.583466Z INFO fork_choice_control::block_processor: Validating block with slot: 8546 +2024-09-22T00:45:02.583603Z INFO fork_choice_control::block_processor: Validating block with slot: 8547 +2024-09-22T00:45:02.583689Z INFO fork_choice_control::block_processor: Validating block with slot: 8549 +2024-09-22T00:45:02.583879Z INFO fork_choice_control::block_processor: Validating block with slot: 8550 +2024-09-22T00:45:02.584933Z INFO fork_choice_control::block_processor: Validating block with slot: 8551 +2024-09-22T00:45:02.586856Z INFO fork_choice_control::block_processor: Validating block with slot: 8552 +2024-09-22T00:45:02.588017Z INFO fork_choice_control::block_processor: Validating block with slot: 8553 +2024-09-22T00:45:02.589059Z INFO fork_choice_control::block_processor: Validating block with slot: 8554 +2024-09-22T00:45:02.589579Z INFO fork_choice_control::block_processor: Validating block with slot: 8555 +2024-09-22T00:45:02.590384Z INFO fork_choice_control::block_processor: Validating block with slot: 8559 +2024-09-22T00:45:02.590407Z INFO fork_choice_control::block_processor: Validating block with slot: 8556 +2024-09-22T00:45:02.591019Z INFO fork_choice_control::block_processor: Validating block with slot: 8560 +2024-09-22T00:45:02.592010Z INFO fork_choice_control::block_processor: Validating block with slot: 8561 +2024-09-22T00:45:02.592473Z INFO fork_choice_control::block_processor: Validating block with slot: 8562 +2024-09-22T00:45:02.592699Z INFO fork_choice_control::block_processor: Validating block with slot: 8563 +2024-09-22T00:45:02.593420Z INFO fork_choice_control::block_processor: Validating block with slot: 8564 +2024-09-22T00:45:02.594341Z INFO fork_choice_control::block_processor: Validating block with slot: 8565 +2024-09-22T00:45:02.594508Z INFO fork_choice_control::block_processor: Validating block with slot: 8566 +2024-09-22T00:45:02.595163Z INFO fork_choice_control::block_processor: Validating block with slot: 8567 +2024-09-22T00:45:02.596327Z INFO fork_choice_control::block_processor: Validating block with slot: 8568 +2024-09-22T00:45:02.596583Z INFO fork_choice_control::block_processor: Validating block with slot: 8569 +2024-09-22T00:45:02.596891Z INFO fork_choice_control::block_processor: Validating block with slot: 8557 +2024-09-22T00:45:02.597192Z INFO fork_choice_control::block_processor: Validating block with slot: 8570 +2024-09-22T00:45:02.597218Z INFO fork_choice_control::block_processor: Validating block with slot: 8558 +2024-09-22T00:45:02.597821Z INFO fork_choice_control::block_processor: Validating block with slot: 8571 +2024-09-22T00:45:02.598915Z INFO fork_choice_control::block_processor: Validating block with slot: 8572 +2024-09-22T00:45:02.599710Z INFO fork_choice_control::block_processor: Validating block with slot: 8573 +2024-09-22T00:45:02.600576Z INFO fork_choice_control::block_processor: Validating block with slot: 8574 +2024-09-22T00:45:02.601274Z INFO fork_choice_control::block_processor: Validating block with slot: 8575 +2024-09-22T00:45:02.602413Z INFO fork_choice_control::block_processor: Validating block with slot: 8578 +2024-09-22T00:45:02.602571Z INFO fork_choice_control::block_processor: Validating block with slot: 8579 +2024-09-22T00:45:02.602922Z INFO fork_choice_control::block_processor: Validating block with slot: 8580 +2024-09-22T00:45:02.603013Z INFO fork_choice_control::block_processor: Validating block with slot: 8581 +2024-09-22T00:45:02.603812Z INFO fork_choice_control::block_processor: Validating block with slot: 8582 +2024-09-22T00:45:02.604078Z INFO fork_choice_control::block_processor: Validating block with slot: 8583 +2024-09-22T00:45:02.604103Z INFO fork_choice_control::block_processor: Validating block with slot: 8584 +2024-09-22T00:45:02.604146Z INFO fork_choice_control::block_processor: Validating block with slot: 8577 +2024-09-22T00:45:02.604291Z INFO fork_choice_control::block_processor: Validating block with slot: 8585 +2024-09-22T00:45:02.605983Z INFO fork_choice_control::block_processor: Validating block with slot: 8586 +2024-09-22T00:45:02.606132Z INFO fork_choice_control::block_processor: Validating block with slot: 8591 +2024-09-22T00:45:02.606798Z INFO fork_choice_control::block_processor: Validating block with slot: 8587 +2024-09-22T00:45:02.607152Z INFO fork_choice_control::block_processor: Validating block with slot: 8592 +2024-09-22T00:45:02.608314Z INFO fork_choice_control::block_processor: Validating block with slot: 8593 +2024-09-22T00:45:02.608318Z INFO fork_choice_control::block_processor: Validating block with slot: 8594 +2024-09-22T00:45:02.609168Z INFO fork_choice_control::block_processor: Validating block with slot: 8595 +2024-09-22T00:45:02.609436Z INFO fork_choice_control::block_processor: Validating block with slot: 8588 +2024-09-22T00:45:02.609513Z INFO fork_choice_control::block_processor: Validating block with slot: 8596 +2024-09-22T00:45:02.610494Z INFO fork_choice_control::block_processor: Validating block with slot: 8598 +2024-09-22T00:45:02.610592Z INFO fork_choice_control::block_processor: Validating block with slot: 8599 +2024-09-22T00:45:02.612955Z INFO fork_choice_control::block_processor: Validating block with slot: 8603 +2024-09-22T00:45:02.613199Z INFO fork_choice_control::block_processor: Validating block with slot: 8589 +2024-09-22T00:45:02.613941Z INFO fork_choice_control::block_processor: Validating block with slot: 8590 +2024-09-22T00:45:02.614044Z INFO fork_choice_control::block_processor: Validating block with slot: 8604 +2024-09-22T00:45:02.614737Z INFO fork_choice_control::block_processor: Validating block with slot: 8605 +2024-09-22T00:45:02.615598Z INFO fork_choice_control::block_processor: Validating block with slot: 8606 +2024-09-22T00:45:02.616119Z INFO fork_choice_control::block_processor: Validating block with slot: 8608 +2024-09-22T00:45:02.616678Z INFO fork_choice_control::block_processor: Validating block with slot: 8609 +2024-09-22T00:45:02.617090Z INFO fork_choice_control::block_processor: Validating block with slot: 8610 +2024-09-22T00:45:02.618040Z INFO fork_choice_control::block_processor: Validating block with slot: 8611 +2024-09-22T00:45:02.618080Z INFO fork_choice_control::block_processor: Validating block with slot: 8612 +2024-09-22T00:45:02.618063Z INFO fork_choice_control::block_processor: Validating block with slot: 8600 +2024-09-22T00:45:02.618750Z INFO fork_choice_control::block_processor: Validating block with slot: 8613 +2024-09-22T00:45:02.619089Z INFO fork_choice_control::block_processor: Validating block with slot: 8614 +2024-09-22T00:45:02.619289Z INFO fork_choice_control::block_processor: Validating block with slot: 8615 +2024-09-22T00:45:02.619480Z INFO fork_choice_control::block_processor: Validating block with slot: 8672 +2024-09-22T00:45:02.619695Z INFO fork_choice_control::block_processor: Validating block with slot: 8602 +2024-09-22T00:45:02.620559Z INFO fork_choice_control::block_processor: Validating block with slot: 8616 +2024-09-22T00:45:02.623918Z INFO fork_choice_control::block_processor: Validating block with slot: 8601 +2024-09-22T00:45:02.623884Z INFO fork_choice_control::block_processor: Validating block with slot: 8617 +2024-09-22T00:45:02.624046Z INFO fork_choice_control::block_processor: Validating block with slot: 8674 +2024-09-22T00:45:02.624452Z INFO fork_choice_control::block_processor: Validating block with slot: 8675 +2024-09-22T00:45:02.625505Z INFO fork_choice_control::block_processor: Validating block with slot: 8676 +2024-09-22T00:45:02.625583Z INFO fork_choice_control::block_processor: Validating block with slot: 8618 +2024-09-22T00:45:02.625855Z INFO fork_choice_control::block_processor: Validating block with slot: 8677 +2024-09-22T00:45:02.626939Z INFO fork_choice_control::block_processor: Validating block with slot: 8678 +2024-09-22T00:45:02.627126Z INFO fork_choice_control::block_processor: Validating block with slot: 8619 +2024-09-22T00:45:02.628357Z INFO fork_choice_control::block_processor: Validating block with slot: 8620 +2024-09-22T00:45:02.628703Z INFO fork_choice_control::block_processor: Validating block with slot: 8621 +2024-09-22T00:45:02.628751Z INFO fork_choice_control::block_processor: Validating block with slot: 8622 +2024-09-22T00:45:02.629555Z INFO fork_choice_control::block_processor: Validating block with slot: 8624 +2024-09-22T00:45:02.629782Z INFO fork_choice_control::block_processor: Validating block with slot: 8625 +2024-09-22T00:45:02.629908Z INFO fork_choice_control::block_processor: Validating block with slot: 8679 +2024-09-22T00:45:02.630621Z INFO fork_choice_control::block_processor: Validating block with slot: 8680 +2024-09-22T00:45:02.631642Z INFO fork_choice_control::block_processor: Validating block with slot: 8681 +2024-09-22T00:45:02.631856Z INFO fork_choice_control::block_processor: Validating block with slot: 8682 +2024-09-22T00:45:02.631986Z INFO fork_choice_control::block_processor: Validating block with slot: 8683 +2024-09-22T00:45:02.632110Z INFO fork_choice_control::block_processor: Validating block with slot: 8626 +2024-09-22T00:45:02.633071Z INFO fork_choice_control::block_processor: Validating block with slot: 8627 +2024-09-22T00:45:02.633193Z INFO fork_choice_control::block_processor: Validating block with slot: 8628 +2024-09-22T00:45:02.634313Z INFO fork_choice_control::block_processor: Validating block with slot: 8684 +2024-09-22T00:45:02.635747Z INFO fork_choice_control::block_processor: Validating block with slot: 8673 +2024-09-22T00:45:02.636475Z INFO fork_choice_control::block_processor: Validating block with slot: 8629 +2024-09-22T00:45:02.636499Z INFO fork_choice_control::block_processor: Validating block with slot: 8685 +2024-09-22T00:45:02.637580Z INFO fork_choice_control::block_processor: Validating block with slot: 8630 +2024-09-22T00:45:02.637984Z INFO fork_choice_control::block_processor: Validating block with slot: 8686 +2024-09-22T00:45:02.638003Z INFO fork_choice_control::block_processor: Validating block with slot: 8632 +2024-09-22T00:45:02.638817Z INFO fork_choice_control::block_processor: Validating block with slot: 8687 +2024-09-22T00:45:02.639542Z INFO fork_choice_control::block_processor: Validating block with slot: 8633 +2024-09-22T00:45:02.640220Z INFO fork_choice_control::block_processor: Validating block with slot: 8688 +2024-09-22T00:45:02.641213Z INFO fork_choice_control::block_processor: Validating block with slot: 8689 +2024-09-22T00:45:02.641365Z INFO fork_choice_control::block_processor: Validating block with slot: 8634 +2024-09-22T00:45:02.641714Z INFO fork_choice_control::block_processor: Validating block with slot: 8607 +2024-09-22T00:45:02.642296Z INFO fork_choice_control::block_processor: Validating block with slot: 8635 +2024-09-22T00:45:02.643379Z INFO fork_choice_control::block_processor: Validating block with slot: 8636 +2024-09-22T00:45:02.644506Z INFO fork_choice_control::block_processor: Validating block with slot: 8637 +2024-09-22T00:45:02.646068Z INFO fork_choice_control::block_processor: Validating block with slot: 8638 +2024-09-22T00:45:02.646126Z INFO fork_choice_control::block_processor: Validating block with slot: 8639 +2024-09-22T00:45:02.646311Z INFO fork_choice_control::block_processor: Validating block with slot: 8690 +2024-09-22T00:45:02.647926Z INFO fork_choice_control::block_processor: Validating block with slot: 8692 +2024-09-22T00:45:02.647960Z INFO fork_choice_control::block_processor: Validating block with slot: 8693 +2024-09-22T00:45:02.649167Z INFO fork_choice_control::block_processor: Validating block with slot: 8694 +2024-09-22T00:45:02.649361Z INFO fork_choice_control::block_processor: Validating block with slot: 8695 +2024-09-22T00:45:02.649500Z INFO fork_choice_control::block_processor: Validating block with slot: 8696 +2024-09-22T00:45:02.649724Z INFO fork_choice_control::block_processor: Validating block with slot: 8697 +2024-09-22T00:45:02.649738Z INFO fork_choice_control::block_processor: Validating block with slot: 8691 +2024-09-22T00:45:02.651571Z INFO fork_choice_control::block_processor: Validating block with slot: 8640 +2024-09-22T00:45:02.652209Z INFO fork_choice_control::block_processor: Validating block with slot: 8641 +2024-09-22T00:45:02.652260Z INFO fork_choice_control::block_processor: Validating block with slot: 8698 +2024-09-22T00:45:02.652579Z INFO fork_choice_control::block_processor: Validating block with slot: 8642 +2024-09-22T00:45:02.652966Z INFO fork_choice_control::block_processor: Validating block with slot: 8644 +2024-09-22T00:45:02.653166Z INFO fork_choice_control::block_processor: Validating block with slot: 8645 +2024-09-22T00:45:02.653200Z INFO fork_choice_control::block_processor: Validating block with slot: 8646 +2024-09-22T00:45:02.653346Z INFO fork_choice_control::block_processor: Validating block with slot: 8699 +2024-09-22T00:45:02.654308Z INFO fork_choice_control::block_processor: Validating block with slot: 8700 +2024-09-22T00:45:02.656254Z INFO fork_choice_control::block_processor: Validating block with slot: 8701 +2024-09-22T00:45:02.657009Z INFO fork_choice_control::block_processor: Validating block with slot: 8703 +2024-09-22T00:45:02.657209Z INFO fork_choice_control::block_processor: Validating block with slot: 8704 +2024-09-22T00:45:02.657359Z INFO fork_choice_control::block_processor: Validating block with slot: 5047 +2024-09-22T00:45:02.660418Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd6e94f3ee94b4f5799acaf59dd5fef539457a9f22eb03027f3130c6d848a29ba, slot: 5047 +2024-09-22T00:45:02.675985Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5047 +2024-09-22T00:45:02.676007Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5047 +2024-09-22T00:45:02.695650Z INFO fork_choice_control::block_processor: Validating block with slot: 8647 +2024-09-22T00:45:02.697589Z INFO fork_choice_control::block_processor: Validating block with slot: 8648 +2024-09-22T00:45:02.698840Z INFO fork_choice_control::block_processor: Validating block with slot: 8649 +2024-09-22T00:45:02.700746Z INFO fork_choice_control::block_processor: Validating block with slot: 8650 +2024-09-22T00:45:02.704616Z INFO fork_choice_control::block_processor: Validating block with slot: 8705 +2024-09-22T00:45:02.706381Z INFO fork_choice_control::block_processor: Validating block with slot: 8651 +2024-09-22T00:45:02.707801Z INFO fork_choice_control::block_processor: Validating block with slot: 8706 +2024-09-22T00:45:02.714781Z INFO fork_choice_control::block_processor: Validating block with slot: 8652 +2024-09-22T00:45:02.717355Z INFO fork_choice_control::block_processor: Validating block with slot: 8709 +2024-09-22T00:45:02.717372Z INFO fork_choice_control::block_processor: Validating block with slot: 8707 +2024-09-22T00:45:02.717398Z INFO fork_choice_control::block_processor: Validating block with slot: 8710 +2024-09-22T00:45:02.717478Z INFO fork_choice_control::block_processor: Validating block with slot: 8708 +2024-09-22T00:45:02.717540Z INFO fork_choice_control::block_processor: Validating block with slot: 8711 +2024-09-22T00:45:02.718362Z INFO fork_choice_control::block_processor: Validating block with slot: 8654 +2024-09-22T00:45:02.719149Z INFO fork_choice_control::block_processor: Validating block with slot: 8656 +2024-09-22T00:45:02.720591Z INFO fork_choice_control::block_processor: Validating block with slot: 8657 +2024-09-22T00:45:02.720755Z INFO fork_choice_control::block_processor: Validating block with slot: 8658 +2024-09-22T00:45:02.721042Z INFO fork_choice_control::block_processor: Validating block with slot: 8712 +2024-09-22T00:45:02.722228Z INFO fork_choice_control::block_processor: Validating block with slot: 8659 +2024-09-22T00:45:02.722446Z INFO fork_choice_control::block_processor: Validating block with slot: 8713 +2024-09-22T00:45:02.722645Z INFO fork_choice_control::block_processor: Validating block with slot: 8660 +2024-09-22T00:45:02.723887Z INFO fork_choice_control::block_processor: Validating block with slot: 8714 +2024-09-22T00:45:02.724368Z INFO fork_choice_control::block_processor: Validating block with slot: 8715 +2024-09-22T00:45:02.724563Z INFO fork_choice_control::block_processor: Validating block with slot: 8716 +2024-09-22T00:45:02.725105Z INFO fork_choice_control::block_processor: Validating block with slot: 8717 +2024-09-22T00:45:02.725799Z INFO fork_choice_control::block_processor: Validating block with slot: 8718 +2024-09-22T00:45:02.726510Z INFO fork_choice_control::block_processor: Validating block with slot: 8719 +2024-09-22T00:45:02.727695Z INFO fork_choice_control::block_processor: Validating block with slot: 8720 +2024-09-22T00:45:02.727750Z INFO fork_choice_control::block_processor: Validating block with slot: 8721 +2024-09-22T00:45:02.728462Z INFO fork_choice_control::block_processor: Validating block with slot: 8653 +2024-09-22T00:45:02.728954Z INFO fork_choice_control::block_processor: Validating block with slot: 8661 +2024-09-22T00:45:02.729090Z INFO fork_choice_control::block_processor: Validating block with slot: 8662 +2024-09-22T00:45:02.729548Z INFO fork_choice_control::block_processor: Validating block with slot: 8663 +2024-09-22T00:45:02.731737Z INFO fork_choice_control::block_processor: Validating block with slot: 8664 +2024-09-22T00:45:02.732896Z INFO fork_choice_control::block_processor: Validating block with slot: 8665 +2024-09-22T00:45:02.734448Z INFO fork_choice_control::block_processor: Validating block with slot: 8666 +2024-09-22T00:45:02.735860Z INFO fork_choice_control::block_processor: Validating block with slot: 8667 +2024-09-22T00:45:02.742720Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 156, root: 0x9e8a731c1f509be2bd624bb7c2ed6432878b85e1eb084262b0f6284751e86671, head slot: 5047, head root: 0xd6e94f3ee94b4f5799acaf59dd5fef539457a9f22eb03027f3130c6d848a29ba) +2024-09-22T00:45:02.743155Z INFO fork_choice_control::block_processor: Validating block with slot: 8668 +2024-09-22T00:45:02.743314Z INFO fork_choice_control::block_processor: Validating block with slot: 8669 +2024-09-22T00:45:02.743514Z INFO fork_choice_control::block_processor: Validating block with slot: 5048 +2024-09-22T00:45:02.745712Z INFO fork_choice_control::block_processor: Validating block with slot: 8670 +2024-09-22T00:45:02.745806Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaa32b1fb36a61e4463fea5e8b11d9bc55b6d5ba8eacb2ccc34a904b8c9afe03d, slot: 5048 +2024-09-22T00:45:02.754895Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5048 +2024-09-22T00:45:02.755247Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5048 +2024-09-22T00:45:02.776416Z INFO fork_choice_control::block_processor: Validating block with slot: 5049 +2024-09-22T00:45:02.777646Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x56e96063c7119cad19808f53fa227b38f80df8163fdc3615b582c76cdcb66b2e, slot: 5049 +2024-09-22T00:45:02.784630Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5049 +2024-09-22T00:45:02.784646Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5049 +2024-09-22T00:45:02.801479Z INFO fork_choice_control::block_processor: Validating block with slot: 8723 +2024-09-22T00:45:02.801483Z INFO fork_choice_control::block_processor: Validating block with slot: 8671 +2024-09-22T00:45:02.802281Z INFO fork_choice_control::block_processor: Validating block with slot: 8724 +2024-09-22T00:45:02.802378Z INFO fork_choice_control::block_processor: Validating block with slot: 8725 +2024-09-22T00:45:02.802437Z INFO fork_choice_control::block_processor: Validating block with slot: 8726 +2024-09-22T00:45:02.804148Z INFO fork_choice_control::block_processor: Validating block with slot: 8727 +2024-09-22T00:45:02.804898Z INFO fork_choice_control::block_processor: Validating block with slot: 8728 +2024-09-22T00:45:02.805558Z INFO fork_choice_control::block_processor: Validating block with slot: 8729 +2024-09-22T00:45:02.805812Z INFO fork_choice_control::block_processor: Validating block with slot: 8730 +2024-09-22T00:45:02.806145Z INFO fork_choice_control::block_processor: Validating block with slot: 8731 +2024-09-22T00:45:02.808922Z INFO fork_choice_control::block_processor: Validating block with slot: 8732 +2024-09-22T00:45:02.809170Z INFO fork_choice_control::block_processor: Validating block with slot: 8733 +2024-09-22T00:45:02.810724Z INFO fork_choice_control::block_processor: Validating block with slot: 8734 +2024-09-22T00:45:02.811448Z INFO fork_choice_control::block_processor: Validating block with slot: 8735 +2024-09-22T00:45:02.811809Z INFO fork_choice_control::block_processor: Validating block with slot: 5050 +2024-09-22T00:45:02.818354Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfaeefbc111ed7959524b4b7436fffd4467468200f7c9a3e3b28e1dcb956d1b1c, slot: 5050 +2024-09-22T00:45:02.828847Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5050 +2024-09-22T00:45:02.828868Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5050 +2024-09-22T00:45:02.848767Z INFO fork_choice_control::block_processor: Validating block with slot: 5051 +2024-09-22T00:45:02.849826Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x132a7f4bc98a05afcadd2674802c516991c7078fe3df9f9542cc11765ae3a994, slot: 5051 +2024-09-22T00:45:02.856528Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5051 +2024-09-22T00:45:02.856548Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5051 +2024-09-22T00:45:02.876465Z INFO fork_choice_control::block_processor: Validating block with slot: 5052 +2024-09-22T00:45:02.877970Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x885595203d0caea9e0185a221e43c6a60c18564c748646fbdb1f531a8d95c1da, slot: 5052 +2024-09-22T00:45:02.885694Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5052 +2024-09-22T00:45:02.885709Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5052 +2024-09-22T00:45:02.905465Z INFO fork_choice_control::block_processor: Validating block with slot: 5053 +2024-09-22T00:45:02.906590Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x21582edd5ad15052afe6bdb1d74656e01a683c43554a5a5c55a27383e5a977d0, slot: 5053 +2024-09-22T00:45:02.908634Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 4992 +2024-09-22T00:45:02.914409Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5053 +2024-09-22T00:45:02.914430Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5053 +2024-09-22T00:45:02.933899Z INFO fork_choice_control::block_processor: Validating block with slot: 5054 +2024-09-22T00:45:02.936338Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x18e837c5842ce8a4be434b47a5519b8b39cb64331d2623997473f4e92f06720d, slot: 5054 +2024-09-22T00:45:02.945912Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5054 +2024-09-22T00:45:02.945934Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5054 +2024-09-22T00:45:02.965568Z INFO fork_choice_control::block_processor: Validating block with slot: 5056 +2024-09-22T00:45:02.967383Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe56497a7737a02657ae3fffb96d5dbb3d172157e19ddf186389380d77a6652aa, slot: 5056 +2024-09-22T00:45:03.079196Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5056 +2024-09-22T00:45:03.079221Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5056 +2024-09-22T00:45:03.091290Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5056) +2024-09-22T00:45:03.091401Z INFO fork_choice_control::block_processor: Validating block with slot: 5057 +2024-09-22T00:45:03.092596Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x926fe983fe92f64f947e954d0f137e58172ea4f03b80c2061e250d7fbdf083e6, slot: 5057 +2024-09-22T00:45:03.171322Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5057 +2024-09-22T00:45:03.171342Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5057 +2024-09-22T00:45:03.181854Z INFO fork_choice_control::block_processor: Validating block with slot: 5058 +2024-09-22T00:45:03.182996Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x930db720b95d9cec11a46b33f43cfc79ea742954066707c96042505a7ba2f163, slot: 5058 +2024-09-22T00:45:03.189833Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5058 +2024-09-22T00:45:03.189855Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5058 +2024-09-22T00:45:03.200495Z INFO fork_choice_control::block_processor: Validating block with slot: 5059 +2024-09-22T00:45:03.201479Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x57b34713e16f0eb877b5944a3b7dcd928a2865a0353be882013e89c11fe262ac, slot: 5059 +2024-09-22T00:45:03.209583Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5059 +2024-09-22T00:45:03.209602Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5059 +2024-09-22T00:45:03.220143Z INFO fork_choice_control::block_processor: Validating block with slot: 5060 +2024-09-22T00:45:03.221223Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb64f2cb18d2df65daac101662fa314ee5091992dfe1c644deebc7bd0e86655b3, slot: 5060 +2024-09-22T00:45:03.228999Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5060 +2024-09-22T00:45:03.229019Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5060 +2024-09-22T00:45:03.240717Z INFO fork_choice_control::block_processor: Validating block with slot: 5061 +2024-09-22T00:45:03.242990Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd994e4db4617b32ea70d45776351e5b7be3d27e254b29b9324fe9b43d9f4c703, slot: 5061 +2024-09-22T00:45:03.254571Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5061 +2024-09-22T00:45:03.254590Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5061 +2024-09-22T00:45:03.266890Z INFO fork_choice_control::block_processor: Validating block with slot: 5062 +2024-09-22T00:45:03.268391Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7573890f305f080c349ea0c9d45dd45aa4c5aef5ea4771991fe3ebabb29a3163, slot: 5062 +2024-09-22T00:45:03.275303Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5062 +2024-09-22T00:45:03.275322Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5062 +2024-09-22T00:45:03.287367Z INFO fork_choice_control::block_processor: Validating block with slot: 5063 +2024-09-22T00:45:03.288348Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa11a8e698deb86eb21c6637e457659532d1dd1c35eed73402c1c7c6ccc8f0d6e, slot: 5063 +2024-09-22T00:45:03.294444Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5063 +2024-09-22T00:45:03.294465Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5063 +2024-09-22T00:45:03.306213Z INFO fork_choice_control::block_processor: Validating block with slot: 5064 +2024-09-22T00:45:03.308968Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x31745ccbe88ff4ac36a0ab1fb0f7dc7029c11a2ea3db08f430b54dc2b7747e83, slot: 5064 +2024-09-22T00:45:03.319156Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5064 +2024-09-22T00:45:03.319172Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5064 +2024-09-22T00:45:03.331530Z INFO fork_choice_control::block_processor: Validating block with slot: 5065 +2024-09-22T00:45:03.332534Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xde81a9ca293493192c6a08e2c6ca06551f8118f6b79c2c5cf15d44a1984ca093, slot: 5065 +2024-09-22T00:45:03.338427Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5065 +2024-09-22T00:45:03.338449Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5065 +2024-09-22T00:45:03.351086Z INFO fork_choice_control::block_processor: Validating block with slot: 5066 +2024-09-22T00:45:03.353188Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x02463a6f7f1fde427547dc0523e15f15f35aaab413a5afeb8f6d8e4cc144e55c, slot: 5066 +2024-09-22T00:45:03.361590Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5066 +2024-09-22T00:45:03.361610Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5066 +2024-09-22T00:45:03.374462Z INFO fork_choice_control::block_processor: Validating block with slot: 5067 +2024-09-22T00:45:03.375564Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xddbad59a2096d1e8f0be536fde2daa8fe1505d9a40c36a6b798faf9e21577021, slot: 5067 +2024-09-22T00:45:03.382584Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5067 +2024-09-22T00:45:03.382603Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5067 +2024-09-22T00:45:03.395963Z INFO fork_choice_control::block_processor: Validating block with slot: 5068 +2024-09-22T00:45:03.397413Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x892e2169437c332427f227a83329cf6e5d9ed701ce85150e295c0c74cea4a523, slot: 5068 +2024-09-22T00:45:03.405342Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5068 +2024-09-22T00:45:03.405364Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5068 +2024-09-22T00:45:03.419589Z INFO fork_choice_control::block_processor: Validating block with slot: 5070 +2024-09-22T00:45:03.421313Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb6e95c36f58702cd00d6fe4e00a66906adf802c81e5c387ee6bc659342346714, slot: 5070 +2024-09-22T00:45:03.431917Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5070 +2024-09-22T00:45:03.431938Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5070 +2024-09-22T00:45:03.445656Z INFO fork_choice_control::block_processor: Validating block with slot: 5071 +2024-09-22T00:45:03.446643Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x653924a1c0ef26e3d8dffc97180d42f83febc911eaa05f7dd1f51f36b13a0e8d, slot: 5071 +2024-09-22T00:45:03.452708Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5071 +2024-09-22T00:45:03.452722Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5071 +2024-09-22T00:45:03.467314Z INFO fork_choice_control::block_processor: Validating block with slot: 5072 +2024-09-22T00:45:03.468439Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xafc4798fe98014500995cb578a8022a1eb958592e3c89662330892f178a23dbc, slot: 5072 +2024-09-22T00:45:03.475603Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5072 +2024-09-22T00:45:03.475624Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5072 +2024-09-22T00:45:03.490024Z INFO fork_choice_control::block_processor: Validating block with slot: 5073 +2024-09-22T00:45:03.492359Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6d8e41f1a7d4f881c695c50848c203e35fa9a95bc4b1faf43055d23a35dbd7e8, slot: 5073 +2024-09-22T00:45:03.501895Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5073 +2024-09-22T00:45:03.501909Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5073 +2024-09-22T00:45:03.517570Z INFO fork_choice_control::block_processor: Validating block with slot: 5074 +2024-09-22T00:45:03.518919Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa4801d238144594d5bcd088664d3d18e01dc1044e0725b9ebeb8a129e491f6f3, slot: 5074 +2024-09-22T00:45:03.526802Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5074 +2024-09-22T00:45:03.526825Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5074 +2024-09-22T00:45:03.541936Z INFO fork_choice_control::block_processor: Validating block with slot: 5075 +2024-09-22T00:45:03.542898Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb9bad48bb9078c8accdc40c8688c85b6e3f2d437bd72f4ef55ab0d1f6332286c, slot: 5075 +2024-09-22T00:45:03.552939Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5075 +2024-09-22T00:45:03.552958Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5075 +2024-09-22T00:45:03.568488Z INFO fork_choice_control::block_processor: Validating block with slot: 5076 +2024-09-22T00:45:03.569855Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbaad2ee00a18030af985f097ba82754da62383accf8f2a6c37490a8f87d1d328, slot: 5076 +2024-09-22T00:45:03.577796Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5076 +2024-09-22T00:45:03.577818Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5076 +2024-09-22T00:45:03.593025Z INFO fork_choice_control::block_processor: Validating block with slot: 5077 +2024-09-22T00:45:03.596075Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9da165611bb1780cfe51ceb80e00335aa8c7b16d94f572c110196927cf40c2ab, slot: 5077 +2024-09-22T00:45:03.608202Z INFO fork_choice_control::block_processor: Validating block with slot: 8993 +2024-09-22T00:45:03.608274Z INFO fork_choice_control::block_processor: Validating block with slot: 8994 +2024-09-22T00:45:03.608394Z INFO fork_choice_control::block_processor: Validating block with slot: 8992 +2024-09-22T00:45:03.608496Z INFO fork_choice_control::block_processor: Validating block with slot: 8995 +2024-09-22T00:45:03.608600Z INFO fork_choice_control::block_processor: Validating block with slot: 8996 +2024-09-22T00:45:03.608676Z INFO fork_choice_control::block_processor: Validating block with slot: 8997 +2024-09-22T00:45:03.611510Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5077 +2024-09-22T00:45:03.611610Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5077 +2024-09-22T00:45:03.627402Z INFO fork_choice_control::block_processor: Validating block with slot: 5078 +2024-09-22T00:45:03.628797Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdd7ae7e7b2907d93d62471b659a98454d836bddf6369e0584e0e08872482902d, slot: 5078 +2024-09-22T00:45:03.636114Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5078 +2024-09-22T00:45:03.636129Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5078 +2024-09-22T00:45:03.639595Z INFO fork_choice_control::block_processor: Validating block with slot: 8998 +2024-09-22T00:45:03.639616Z INFO fork_choice_control::block_processor: Validating block with slot: 8999 +2024-09-22T00:45:03.639634Z INFO fork_choice_control::block_processor: Validating block with slot: 9000 +2024-09-22T00:45:03.639674Z INFO fork_choice_control::block_processor: Validating block with slot: 9001 +2024-09-22T00:45:03.652950Z INFO fork_choice_control::block_processor: Validating block with slot: 5079 +2024-09-22T00:45:03.654126Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7a0a5f36f97616509a9c9d4ed30c5784d37d542be1540bd793dd77cd7440dc86, slot: 5079 +2024-09-22T00:45:03.659457Z INFO fork_choice_control::block_processor: Validating block with slot: 9004 +2024-09-22T00:45:03.659472Z INFO fork_choice_control::block_processor: Validating block with slot: 9002 +2024-09-22T00:45:03.659487Z INFO fork_choice_control::block_processor: Validating block with slot: 9003 +2024-09-22T00:45:03.659495Z INFO fork_choice_control::block_processor: Validating block with slot: 9007 +2024-09-22T00:45:03.659526Z INFO fork_choice_control::block_processor: Validating block with slot: 9008 +2024-09-22T00:45:03.660104Z INFO fork_choice_control::block_processor: Validating block with slot: 9005 +2024-09-22T00:45:03.660199Z INFO fork_choice_control::block_processor: Validating block with slot: 9006 +2024-09-22T00:45:03.660488Z INFO fork_choice_control::block_processor: Validating block with slot: 9009 +2024-09-22T00:45:03.661369Z INFO fork_choice_control::block_processor: Validating block with slot: 9010 +2024-09-22T00:45:03.664742Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5079 +2024-09-22T00:45:03.664752Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5079 +2024-09-22T00:45:03.687927Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 157, root: 0x0175d5cb1c03fed7bd3a21e3d4a65473691b78682e96df533a3865402196170f, head slot: 5079, head root: 0x7a0a5f36f97616509a9c9d4ed30c5784d37d542be1540bd793dd77cd7440dc86) +2024-09-22T00:45:03.687944Z INFO fork_choice_control::block_processor: Validating block with slot: 5080 +2024-09-22T00:45:03.689977Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x12f86ff932592a25ddae71f45cee53574eb6066f85a5d8ac6450d4b8657ec40c, slot: 5080 +2024-09-22T00:45:03.699272Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5080 +2024-09-22T00:45:03.699290Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5080 +2024-09-22T00:45:03.717309Z INFO fork_choice_control::block_processor: Validating block with slot: 5081 +2024-09-22T00:45:03.719551Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4c57193bf897a34f97a4b5e23ef406bcef00448688f4b46648aa9e06392fd26e, slot: 5081 +2024-09-22T00:45:03.720859Z INFO fork_choice_control::block_processor: Validating block with slot: 8864 +2024-09-22T00:45:03.721018Z INFO fork_choice_control::block_processor: Validating block with slot: 9011 +2024-09-22T00:45:03.721329Z INFO fork_choice_control::block_processor: Validating block with slot: 8865 +2024-09-22T00:45:03.721556Z INFO fork_choice_control::block_processor: Validating block with slot: 9012 +2024-09-22T00:45:03.723205Z INFO fork_choice_control::block_processor: Validating block with slot: 8866 +2024-09-22T00:45:03.724470Z INFO fork_choice_control::block_processor: Validating block with slot: 9013 +2024-09-22T00:45:03.725282Z INFO fork_choice_control::block_processor: Validating block with slot: 8867 +2024-09-22T00:45:03.725297Z INFO fork_choice_control::block_processor: Validating block with slot: 9014 +2024-09-22T00:45:03.730101Z INFO fork_choice_control::block_processor: Validating block with slot: 8872 +2024-09-22T00:45:03.731186Z INFO fork_choice_control::block_processor: Validating block with slot: 8868 +2024-09-22T00:45:03.731226Z INFO fork_choice_control::block_processor: Validating block with slot: 9015 +2024-09-22T00:45:03.734266Z INFO fork_choice_control::block_processor: Validating block with slot: 8873 +2024-09-22T00:45:03.734833Z INFO fork_choice_control::block_processor: Validating block with slot: 8874 +2024-09-22T00:45:03.735092Z INFO fork_choice_control::block_processor: Validating block with slot: 9016 +2024-09-22T00:45:03.735938Z INFO fork_choice_control::block_processor: Validating block with slot: 8869 +2024-09-22T00:45:03.736133Z INFO fork_choice_control::block_processor: Validating block with slot: 8870 +2024-09-22T00:45:03.739554Z INFO fork_choice_control::block_processor: Validating block with slot: 8871 +2024-09-22T00:45:03.746563Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5081 +2024-09-22T00:45:03.746651Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5081 +2024-09-22T00:45:03.766353Z INFO fork_choice_control::block_processor: Validating block with slot: 5082 +2024-09-22T00:45:03.767621Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x131f1a4f58fe36999e039cfb7f9a878ae8debebfc350b59203e990ff5faeeb20, slot: 5082 +2024-09-22T00:45:03.777369Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5082 +2024-09-22T00:45:03.777392Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5082 +2024-09-22T00:45:03.796880Z INFO fork_choice_control::block_processor: Validating block with slot: 5083 +2024-09-22T00:45:03.798351Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x52a5250831c8995554e8d08db4a56a36e96f077bca8f5efcf6a661e99527189a, slot: 5083 +2024-09-22T00:45:03.814478Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5083 +2024-09-22T00:45:03.814525Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5083 +2024-09-22T00:45:03.837490Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 5024 +2024-09-22T00:45:03.839887Z INFO fork_choice_control::block_processor: Validating block with slot: 5084 +2024-09-22T00:45:03.843995Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x060c896f2a94457ab6ed06722827171da45848365d06c704411d16d38d738112, slot: 5084 +2024-09-22T00:45:03.864765Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5084 +2024-09-22T00:45:03.864789Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5084 +2024-09-22T00:45:03.885349Z INFO fork_choice_control::block_processor: Validating block with slot: 5085 +2024-09-22T00:45:03.887449Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7c820cac38078d41033df8065add6f966f50f0b96fcc9368c84be7cd6f85f619, slot: 5085 +2024-09-22T00:45:03.900322Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5085 +2024-09-22T00:45:03.900347Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5085 +2024-09-22T00:45:03.906402Z INFO fork_choice_control::block_processor: Validating block with slot: 8875 +2024-09-22T00:45:03.906413Z INFO fork_choice_control::block_processor: Validating block with slot: 9017 +2024-09-22T00:45:03.906460Z INFO fork_choice_control::block_processor: Validating block with slot: 9019 +2024-09-22T00:45:03.906484Z INFO fork_choice_control::block_processor: Validating block with slot: 8876 +2024-09-22T00:45:03.906424Z INFO fork_choice_control::block_processor: Validating block with slot: 9018 +2024-09-22T00:45:03.907896Z INFO fork_choice_control::block_processor: Validating block with slot: 9021 +2024-09-22T00:45:03.907892Z INFO fork_choice_control::block_processor: Validating block with slot: 9020 +2024-09-22T00:45:03.908674Z INFO fork_choice_control::block_processor: Validating block with slot: 8877 +2024-09-22T00:45:03.909417Z INFO fork_choice_control::block_processor: Validating block with slot: 9022 +2024-09-22T00:45:03.910491Z INFO fork_choice_control::block_processor: Validating block with slot: 8878 +2024-09-22T00:45:03.910838Z INFO fork_choice_control::block_processor: Validating block with slot: 8879 +2024-09-22T00:45:03.911269Z INFO fork_choice_control::block_processor: Validating block with slot: 8880 +2024-09-22T00:45:03.913351Z INFO fork_choice_control::block_processor: Validating block with slot: 9025 +2024-09-22T00:45:03.913397Z INFO fork_choice_control::block_processor: Validating block with slot: 9023 +2024-09-22T00:45:03.913715Z INFO fork_choice_control::block_processor: Validating block with slot: 9024 +2024-09-22T00:45:03.913793Z INFO fork_choice_control::block_processor: Validating block with slot: 8881 +2024-09-22T00:45:03.914592Z INFO fork_choice_control::block_processor: Validating block with slot: 8882 +2024-09-22T00:45:03.915754Z INFO fork_choice_control::block_processor: Validating block with slot: 9026 +2024-09-22T00:45:03.916711Z INFO fork_choice_control::block_processor: Validating block with slot: 8883 +2024-09-22T00:45:03.916751Z INFO fork_choice_control::block_processor: Validating block with slot: 9027 +2024-09-22T00:45:03.918633Z INFO fork_choice_control::block_processor: Validating block with slot: 8884 +2024-09-22T00:45:03.919227Z INFO fork_choice_control::block_processor: Validating block with slot: 9028 +2024-09-22T00:45:03.919395Z INFO fork_choice_control::block_processor: Validating block with slot: 8885 +2024-09-22T00:45:03.920500Z INFO fork_choice_control::block_processor: Validating block with slot: 9029 +2024-09-22T00:45:03.921098Z INFO fork_choice_control::block_processor: Validating block with slot: 8886 +2024-09-22T00:45:03.921342Z INFO fork_choice_control::block_processor: Validating block with slot: 8887 +2024-09-22T00:45:03.921523Z INFO fork_choice_control::block_processor: Validating block with slot: 9030 +2024-09-22T00:45:03.921733Z INFO fork_choice_control::block_processor: Validating block with slot: 9031 +2024-09-22T00:45:03.921754Z INFO fork_choice_control::block_processor: Validating block with slot: 9032 +2024-09-22T00:45:03.922340Z INFO fork_choice_control::block_processor: Validating block with slot: 9033 +2024-09-22T00:45:03.924717Z INFO fork_choice_control::block_processor: Validating block with slot: 8888 +2024-09-22T00:45:03.924723Z INFO fork_choice_control::block_processor: Validating block with slot: 9035 +2024-09-22T00:45:03.924900Z INFO fork_choice_control::block_processor: Validating block with slot: 9036 +2024-09-22T00:45:03.925157Z INFO fork_choice_control::block_processor: Validating block with slot: 8889 +2024-09-22T00:45:03.925723Z INFO fork_choice_control::block_processor: Validating block with slot: 8890 +2024-09-22T00:45:03.926250Z INFO fork_choice_control::block_processor: Validating block with slot: 8891 +2024-09-22T00:45:03.926333Z INFO fork_choice_control::block_processor: Validating block with slot: 8892 +2024-09-22T00:45:03.924621Z INFO fork_choice_control::block_processor: Validating block with slot: 9034 +2024-09-22T00:45:03.927086Z INFO fork_choice_control::block_processor: Validating block with slot: 8893 +2024-09-22T00:45:03.927428Z INFO fork_choice_control::block_processor: Validating block with slot: 8894 +2024-09-22T00:45:03.927682Z INFO fork_choice_control::block_processor: Validating block with slot: 9037 +2024-09-22T00:45:03.928213Z INFO fork_choice_control::block_processor: Validating block with slot: 9038 +2024-09-22T00:45:03.928617Z INFO fork_choice_control::block_processor: Validating block with slot: 9039 +2024-09-22T00:45:03.928856Z INFO fork_choice_control::block_processor: Validating block with slot: 9040 +2024-09-22T00:45:03.929207Z INFO fork_choice_control::block_processor: Validating block with slot: 9041 +2024-09-22T00:45:03.929787Z INFO fork_choice_control::block_processor: Validating block with slot: 9042 +2024-09-22T00:45:03.929988Z INFO fork_choice_control::block_processor: Validating block with slot: 8895 +2024-09-22T00:45:03.930334Z INFO fork_choice_control::block_processor: Validating block with slot: 8896 +2024-09-22T00:45:03.931734Z INFO fork_choice_control::block_processor: Validating block with slot: 8897 +2024-09-22T00:45:03.931995Z INFO fork_choice_control::block_processor: Validating block with slot: 8898 +2024-09-22T00:45:03.932045Z INFO fork_choice_control::block_processor: Validating block with slot: 8899 +2024-09-22T00:45:03.932611Z INFO fork_choice_control::block_processor: Validating block with slot: 9043 +2024-09-22T00:45:03.933447Z INFO fork_choice_control::block_processor: Validating block with slot: 9045 +2024-09-22T00:45:03.933433Z INFO fork_choice_control::block_processor: Validating block with slot: 9044 +2024-09-22T00:45:03.934351Z INFO fork_choice_control::block_processor: Validating block with slot: 9046 +2024-09-22T00:45:03.934377Z INFO fork_choice_control::block_processor: Validating block with slot: 9047 +2024-09-22T00:45:03.934691Z INFO fork_choice_control::block_processor: Validating block with slot: 9048 +2024-09-22T00:45:03.935712Z INFO fork_choice_control::block_processor: Validating block with slot: 8900 +2024-09-22T00:45:03.937154Z INFO fork_choice_control::block_processor: Validating block with slot: 8928 +2024-09-22T00:45:03.938157Z INFO fork_choice_control::block_processor: Validating block with slot: 8901 +2024-09-22T00:45:03.939639Z INFO fork_choice_control::block_processor: Validating block with slot: 8902 +2024-09-22T00:45:03.940745Z INFO fork_choice_control::block_processor: Validating block with slot: 8903 +2024-09-22T00:45:03.941657Z INFO fork_choice_control::block_processor: Validating block with slot: 8904 +2024-09-22T00:45:03.941756Z INFO fork_choice_control::block_processor: Validating block with slot: 8905 +2024-09-22T00:45:03.942638Z INFO fork_choice_control::block_processor: Validating block with slot: 8929 +2024-09-22T00:45:03.942842Z INFO fork_choice_control::block_processor: Validating block with slot: 9049 +2024-09-22T00:45:03.942935Z INFO fork_choice_control::block_processor: Validating block with slot: 8930 +2024-09-22T00:45:03.943158Z INFO fork_choice_control::block_processor: Validating block with slot: 8931 +2024-09-22T00:45:03.943299Z INFO fork_choice_control::block_processor: Validating block with slot: 8932 +2024-09-22T00:45:03.944119Z INFO fork_choice_control::block_processor: Validating block with slot: 8933 +2024-09-22T00:45:03.944480Z INFO fork_choice_control::block_processor: Validating block with slot: 8934 +2024-09-22T00:45:03.945025Z INFO fork_choice_control::block_processor: Validating block with slot: 9050 +2024-09-22T00:45:03.945588Z INFO fork_choice_control::block_processor: Validating block with slot: 9051 +2024-09-22T00:45:03.945905Z INFO fork_choice_control::block_processor: Validating block with slot: 9052 +2024-09-22T00:45:03.947200Z INFO fork_choice_control::block_processor: Validating block with slot: 9053 +2024-09-22T00:45:03.947527Z INFO fork_choice_control::block_processor: Validating block with slot: 8935 +2024-09-22T00:45:03.948059Z INFO fork_choice_control::block_processor: Validating block with slot: 8936 +2024-09-22T00:45:03.948328Z INFO fork_choice_control::block_processor: Validating block with slot: 5087 +2024-09-22T00:45:03.951387Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd6adf1a52c9cef8427503632ce4a53738b3f465e79b65b89c9359dda8e68eb2a, slot: 5087 +2024-09-22T00:45:03.973109Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5087 +2024-09-22T00:45:03.973262Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5087 +2024-09-22T00:45:04.011608Z INFO fork_choice_control::block_processor: Validating block with slot: 5088 +2024-09-22T00:45:04.012909Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbf99c99ca20d4834e66d33dd2cfa89d6a675343b7211f6123fc9339ac932d885, slot: 5088 +2024-09-22T00:45:04.072941Z INFO fork_choice_control::block_processor: Validating block with slot: 8937 +2024-09-22T00:45:04.074986Z INFO fork_choice_control::block_processor: Validating block with slot: 8938 +2024-09-22T00:45:04.075312Z INFO fork_choice_control::block_processor: Validating block with slot: 8939 +2024-09-22T00:45:04.076065Z INFO fork_choice_control::block_processor: Validating block with slot: 8940 +2024-09-22T00:45:04.076443Z INFO fork_choice_control::block_processor: Validating block with slot: 8941 +2024-09-22T00:45:04.078538Z INFO fork_choice_control::block_processor: Validating block with slot: 8942 +2024-09-22T00:45:04.079627Z INFO fork_choice_control::block_processor: Validating block with slot: 8943 +2024-09-22T00:45:04.081046Z INFO fork_choice_control::block_processor: Validating block with slot: 8944 +2024-09-22T00:45:04.082047Z INFO fork_choice_control::block_processor: Validating block with slot: 8945 +2024-09-22T00:45:04.082135Z INFO fork_choice_control::block_processor: Validating block with slot: 8906 +2024-09-22T00:45:04.084678Z INFO fork_choice_control::block_processor: Validating block with slot: 8946 +2024-09-22T00:45:04.085653Z INFO fork_choice_control::block_processor: Validating block with slot: 8907 +2024-09-22T00:45:04.085931Z INFO fork_choice_control::block_processor: Validating block with slot: 8947 +2024-09-22T00:45:04.087711Z INFO fork_choice_control::block_processor: Validating block with slot: 8908 +2024-09-22T00:45:04.089115Z INFO fork_choice_control::block_processor: Validating block with slot: 8948 +2024-09-22T00:45:04.090517Z INFO fork_choice_control::block_processor: Validating block with slot: 8909 +2024-09-22T00:45:04.091920Z INFO fork_choice_control::block_processor: Validating block with slot: 8949 +2024-09-22T00:45:04.092267Z INFO fork_choice_control::block_processor: Validating block with slot: 8910 +2024-09-22T00:45:04.093860Z INFO fork_choice_control::block_processor: Validating block with slot: 8911 +2024-09-22T00:45:04.094302Z INFO fork_choice_control::block_processor: Validating block with slot: 8950 +2024-09-22T00:45:04.095388Z INFO fork_choice_control::block_processor: Validating block with slot: 8912 +2024-09-22T00:45:04.095598Z INFO fork_choice_control::block_processor: Validating block with slot: 8951 +2024-09-22T00:45:04.096791Z INFO fork_choice_control::block_processor: Validating block with slot: 8952 +2024-09-22T00:45:04.097737Z INFO fork_choice_control::block_processor: Validating block with slot: 8954 +2024-09-22T00:45:04.097814Z INFO fork_choice_control::block_processor: Validating block with slot: 8955 +2024-09-22T00:45:04.098314Z INFO fork_choice_control::block_processor: Validating block with slot: 8956 +2024-09-22T00:45:04.098405Z INFO fork_choice_control::block_processor: Validating block with slot: 8957 +2024-09-22T00:45:04.099949Z INFO fork_choice_control::block_processor: Validating block with slot: 8958 +2024-09-22T00:45:04.101189Z INFO fork_choice_control::block_processor: Validating block with slot: 8959 +2024-09-22T00:45:04.101824Z INFO fork_choice_control::block_processor: Validating block with slot: 8960 +2024-09-22T00:45:04.102051Z INFO fork_choice_control::block_processor: Validating block with slot: 8961 +2024-09-22T00:45:04.102615Z INFO fork_choice_control::block_processor: Validating block with slot: 8962 +2024-09-22T00:45:04.102898Z INFO fork_choice_control::block_processor: Validating block with slot: 8963 +2024-09-22T00:45:04.103370Z INFO fork_choice_control::block_processor: Validating block with slot: 8965 +2024-09-22T00:45:04.103507Z INFO fork_choice_control::block_processor: Validating block with slot: 8964 +2024-09-22T00:45:04.104454Z INFO fork_choice_control::block_processor: Validating block with slot: 8966 +2024-09-22T00:45:04.104614Z INFO fork_choice_control::block_processor: Validating block with slot: 8967 +2024-09-22T00:45:04.104879Z INFO fork_choice_control::block_processor: Validating block with slot: 8914 +2024-09-22T00:45:04.106021Z INFO fork_choice_control::block_processor: Validating block with slot: 8968 +2024-09-22T00:45:04.107279Z INFO fork_choice_control::block_processor: Validating block with slot: 8969 +2024-09-22T00:45:04.107497Z INFO fork_choice_control::block_processor: Validating block with slot: 8970 +2024-09-22T00:45:04.107576Z INFO fork_choice_control::block_processor: Validating block with slot: 8915 +2024-09-22T00:45:04.108582Z INFO fork_choice_control::block_processor: Validating block with slot: 8971 +2024-09-22T00:45:04.108662Z INFO fork_choice_control::block_processor: Validating block with slot: 8972 +2024-09-22T00:45:04.109240Z INFO fork_choice_control::block_processor: Validating block with slot: 8916 +2024-09-22T00:45:04.109747Z INFO fork_choice_control::block_processor: Validating block with slot: 8973 +2024-09-22T00:45:04.109817Z INFO fork_choice_control::block_processor: Validating block with slot: 8917 +2024-09-22T00:45:04.134439Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5088 +2024-09-22T00:45:04.134466Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5088 +2024-09-22T00:45:04.147200Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5088) +2024-09-22T00:45:04.147344Z INFO fork_choice_control::block_processor: Validating block with slot: 5089 +2024-09-22T00:45:04.150080Z INFO fork_choice_control::block_processor: Validating block with slot: 8974 +2024-09-22T00:45:04.150142Z INFO fork_choice_control::block_processor: Validating block with slot: 8918 +2024-09-22T00:45:04.150182Z INFO fork_choice_control::block_processor: Validating block with slot: 8975 +2024-09-22T00:45:04.150199Z INFO fork_choice_control::block_processor: Validating block with slot: 8977 +2024-09-22T00:45:04.150437Z INFO fork_choice_control::block_processor: Validating block with slot: 8976 +2024-09-22T00:45:04.151456Z INFO fork_choice_control::block_processor: Validating block with slot: 8978 +2024-09-22T00:45:04.151555Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x57bb3c542803b10e07c181385caa8288b0ebfb61079731f1926c152aa59a42c8, slot: 5089 +2024-09-22T00:45:04.152246Z INFO fork_choice_control::block_processor: Validating block with slot: 8979 +2024-09-22T00:45:04.153647Z INFO fork_choice_control::block_processor: Validating block with slot: 8980 +2024-09-22T00:45:04.154211Z INFO fork_choice_control::block_processor: Validating block with slot: 8981 +2024-09-22T00:45:04.156189Z INFO fork_choice_control::block_processor: Validating block with slot: 8982 +2024-09-22T00:45:04.156276Z INFO fork_choice_control::block_processor: Validating block with slot: 8983 +2024-09-22T00:45:04.156710Z INFO fork_choice_control::block_processor: Validating block with slot: 8984 +2024-09-22T00:45:04.157519Z INFO fork_choice_control::block_processor: Validating block with slot: 8985 +2024-09-22T00:45:04.157586Z INFO fork_choice_control::block_processor: Validating block with slot: 8986 +2024-09-22T00:45:04.158449Z INFO fork_choice_control::block_processor: Validating block with slot: 8987 +2024-09-22T00:45:04.158756Z INFO fork_choice_control::block_processor: Validating block with slot: 8988 +2024-09-22T00:45:04.159144Z INFO fork_choice_control::block_processor: Validating block with slot: 8989 +2024-09-22T00:45:04.159998Z INFO fork_choice_control::block_processor: Validating block with slot: 8990 +2024-09-22T00:45:04.160233Z INFO fork_choice_control::block_processor: Validating block with slot: 9054 +2024-09-22T00:45:04.161245Z INFO fork_choice_control::block_processor: Validating block with slot: 9055 +2024-09-22T00:45:04.162806Z INFO fork_choice_control::block_processor: Validating block with slot: 8919 +2024-09-22T00:45:04.163264Z INFO fork_choice_control::block_processor: Validating block with slot: 8920 +2024-09-22T00:45:04.164313Z INFO fork_choice_control::block_processor: Validating block with slot: 8921 +2024-09-22T00:45:04.165035Z INFO fork_choice_control::block_processor: Validating block with slot: 8923 +2024-09-22T00:45:04.165458Z INFO fork_choice_control::block_processor: Validating block with slot: 8922 +2024-09-22T00:45:04.166439Z INFO fork_choice_control::block_processor: Validating block with slot: 8924 +2024-09-22T00:45:04.167471Z INFO fork_choice_control::block_processor: Validating block with slot: 8925 +2024-09-22T00:45:04.168266Z INFO fork_choice_control::block_processor: Validating block with slot: 8926 +2024-09-22T00:45:04.169331Z INFO fork_choice_control::block_processor: Validating block with slot: 8927 +2024-09-22T00:45:04.174474Z INFO fork_choice_control::block_processor: Validating block with slot: 8991 +2024-09-22T00:45:04.257236Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5089 +2024-09-22T00:45:04.257256Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5089 +2024-09-22T00:45:04.269378Z INFO fork_choice_control::block_processor: Validating block with slot: 5090 +2024-09-22T00:45:04.270358Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7181f29de03497b3e3e9223d7b7496bd3556df651e9d881506540980bba85ab1, slot: 5090 +2024-09-22T00:45:04.277189Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5090 +2024-09-22T00:45:04.277210Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5090 +2024-09-22T00:45:04.289495Z INFO fork_choice_control::block_processor: Validating block with slot: 5091 +2024-09-22T00:45:04.292918Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xec8e2414f24d66ad7922b26d90ea50e62b52f54dd01a5990729482c3d0886714, slot: 5091 +2024-09-22T00:45:04.306907Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5091 +2024-09-22T00:45:04.306929Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5091 +2024-09-22T00:45:04.320447Z INFO fork_choice_control::block_processor: Validating block with slot: 5092 +2024-09-22T00:45:04.321511Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x864ffc31a2bfbfa8ec211b960c0f432efe57de3c24601ec8a16d3cace9699623, slot: 5092 +2024-09-22T00:45:04.328070Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5092 +2024-09-22T00:45:04.328089Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5092 +2024-09-22T00:45:04.341288Z INFO fork_choice_control::block_processor: Validating block with slot: 5093 +2024-09-22T00:45:04.342397Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xac42e4779b1b31e17db8b59574df160653c40f384e14bffd0704dacb9d46f523, slot: 5093 +2024-09-22T00:45:04.351096Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5093 +2024-09-22T00:45:04.351113Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5093 +2024-09-22T00:45:04.365313Z INFO fork_choice_control::block_processor: Validating block with slot: 5095 +2024-09-22T00:45:04.367149Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf9459d48ae16e6ae5b65f0a2cdaa8e2ed28ac541ca30be66347ce84cff0ab023, slot: 5095 +2024-09-22T00:45:04.380018Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5095 +2024-09-22T00:45:04.380041Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5095 +2024-09-22T00:45:04.394364Z INFO fork_choice_control::block_processor: Validating block with slot: 5096 +2024-09-22T00:45:04.395390Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x20a1ca2f2cb3fb230695a88fcd552d9ecd8f4f61931ea02fb7de592cb35b76e0, slot: 5096 +2024-09-22T00:45:04.401734Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5096 +2024-09-22T00:45:04.401747Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5096 +2024-09-22T00:45:04.416193Z INFO fork_choice_control::block_processor: Validating block with slot: 5097 +2024-09-22T00:45:04.417398Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd98fb74022f3efad924a561308347fdbf70e97d1c2012feade054f595dae9526, slot: 5097 +2024-09-22T00:45:04.424439Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5097 +2024-09-22T00:45:04.424465Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5097 +2024-09-22T00:45:04.438789Z INFO fork_choice_control::block_processor: Validating block with slot: 5098 +2024-09-22T00:45:04.439907Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe7d81050079fe7ca2f552aacbf2038dc7f17e04c37ea96dac448e8b043476ca7, slot: 5098 +2024-09-22T00:45:04.445698Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5098 +2024-09-22T00:45:04.445711Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5098 +2024-09-22T00:45:04.459072Z INFO fork_choice_control::block_processor: Validating block with slot: 5099 +2024-09-22T00:45:04.460318Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x47f3cb7b7b82eb674dc6a06f7c04512803b083dd5111313869873cec077eaa76, slot: 5099 +2024-09-22T00:45:04.466815Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5099 +2024-09-22T00:45:04.466830Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5099 +2024-09-22T00:45:04.480489Z INFO fork_choice_control::block_processor: Validating block with slot: 5100 +2024-09-22T00:45:04.481990Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcfde9664930dd2e5acce0fcf4d46f0a3acb68104637bfb57a39184f6dba89e7e, slot: 5100 +2024-09-22T00:45:04.488998Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5100 +2024-09-22T00:45:04.489019Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5100 +2024-09-22T00:45:04.502727Z INFO fork_choice_control::block_processor: Validating block with slot: 5101 +2024-09-22T00:45:04.503785Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf7e8ddc8f69a73a96fe8924e65a20c3aca5592947c9bbe5f6c115aa059dd14ea, slot: 5101 +2024-09-22T00:45:04.510354Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5101 +2024-09-22T00:45:04.510376Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5101 +2024-09-22T00:45:04.524984Z INFO fork_choice_control::block_processor: Validating block with slot: 5102 +2024-09-22T00:45:04.526115Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaa22260fe4f10a9343bdefdcdd77fb8fa3b6ee36086bcad5024b6192aaf12ceb, slot: 5102 +2024-09-22T00:45:04.532896Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5102 +2024-09-22T00:45:04.532913Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5102 +2024-09-22T00:45:04.548681Z INFO fork_choice_control::block_processor: Validating block with slot: 5103 +2024-09-22T00:45:04.551095Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x38043aede08e3b356fda870c262c63c986de01e3cc7814cfe223919dbdbbc6fe, slot: 5103 +2024-09-22T00:45:04.560678Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5103 +2024-09-22T00:45:04.560696Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5103 +2024-09-22T00:45:04.575505Z INFO fork_choice_control::block_processor: Validating block with slot: 5104 +2024-09-22T00:45:04.576615Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9282830bd88e01c8ac774b03706adee187aea0c55b0af69fe20cdc79bd1f5f03, slot: 5104 +2024-09-22T00:45:04.582322Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5104 +2024-09-22T00:45:04.582335Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5104 +2024-09-22T00:45:04.598068Z INFO fork_choice_control::block_processor: Validating block with slot: 5105 +2024-09-22T00:45:04.599154Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb272675ae0d20376747a78d2a1de2b2102c4184f2a1fc7fd337b20e8d443b5e4, slot: 5105 +2024-09-22T00:45:04.605898Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5105 +2024-09-22T00:45:04.605918Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5105 +2024-09-22T00:45:04.620882Z INFO fork_choice_control::block_processor: Validating block with slot: 5106 +2024-09-22T00:45:04.621869Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x78aea5dd307c5a9809cb8d593f1cbd9a4294afbf053539bfa2c8c5c401881986, slot: 5106 +2024-09-22T00:45:04.627542Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5106 +2024-09-22T00:45:04.627564Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5106 +2024-09-22T00:45:04.642633Z INFO fork_choice_control::block_processor: Validating block with slot: 5107 +2024-09-22T00:45:04.643607Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa55e98959e85337955fb455b13f336d7f85bcd759539984a8757646bb6ab00e5, slot: 5107 +2024-09-22T00:45:04.649582Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5107 +2024-09-22T00:45:04.649593Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5107 +2024-09-22T00:45:04.664841Z INFO fork_choice_control::block_processor: Validating block with slot: 5108 +2024-09-22T00:45:04.665847Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0a660c4b5e9a4f461966723da3c99bcd39e7aa317150d72ebb4d20e3734c98ea, slot: 5108 +2024-09-22T00:45:04.671899Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5108 +2024-09-22T00:45:04.671920Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5108 +2024-09-22T00:45:04.687176Z INFO fork_choice_control::block_processor: Validating block with slot: 5109 +2024-09-22T00:45:04.688396Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd51173e481bc17558b4b6bb6e0056fee395fcd171201ea16e13b17b6c188cfbe, slot: 5109 +2024-09-22T00:45:04.694599Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5109 +2024-09-22T00:45:04.694616Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5109 +2024-09-22T00:45:04.709984Z INFO fork_choice_control::block_processor: Validating block with slot: 5110 +2024-09-22T00:45:04.712432Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x219677b293fc8297978a74eb6276b627769499a6f134d517ccfa07c00ef0f0bc, slot: 5110 +2024-09-22T00:45:04.721796Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5110 +2024-09-22T00:45:04.721809Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5110 +2024-09-22T00:45:04.738185Z INFO fork_choice_control::block_processor: Validating block with slot: 5111 +2024-09-22T00:45:04.739396Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcc2ab13610cb11c1cf2551d729c65dd99f9bf4db4f51360af5a61059abbd1d35, slot: 5111 +2024-09-22T00:45:04.745439Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5111 +2024-09-22T00:45:04.745453Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5111 +2024-09-22T00:45:04.768176Z INFO fork_choice_control::block_processor: Validating block with slot: 5112 +2024-09-22T00:45:04.768180Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 158, root: 0xe56497a7737a02657ae3fffb96d5dbb3d172157e19ddf186389380d77a6652aa, head slot: 5111, head root: 0xcc2ab13610cb11c1cf2551d729c65dd99f9bf4db4f51360af5a61059abbd1d35) +2024-09-22T00:45:04.769298Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x61abe5467fb6ae876a83be08a01ca45e7295d0e7cab080de30e37d8517184a6c, slot: 5112 +2024-09-22T00:45:04.777126Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5112 +2024-09-22T00:45:04.777151Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5112 +2024-09-22T00:45:04.794336Z INFO fork_choice_control::block_processor: Validating block with slot: 5113 +2024-09-22T00:45:04.795516Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x27f1de26df9a9394471a4a5759f79f4c22e8b7062e2ac3b288e886fd492926aa, slot: 5113 +2024-09-22T00:45:04.802297Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5113 +2024-09-22T00:45:04.802316Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5113 +2024-09-22T00:45:04.819998Z INFO fork_choice_control::block_processor: Validating block with slot: 5114 +2024-09-22T00:45:04.821203Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x46747af2562f3b9c159067a34d506abb73de5f693b6e7f8ee38f767571c2a952, slot: 5114 +2024-09-22T00:45:04.828339Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5114 +2024-09-22T00:45:04.828362Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5114 +2024-09-22T00:45:04.846812Z INFO fork_choice_control::block_processor: Validating block with slot: 5115 +2024-09-22T00:45:04.849972Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2d00421dfadcc7e734ae942198dbb556bc96557ed784fc3a2197de7960e867d3, slot: 5115 +2024-09-22T00:45:04.863970Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5115 +2024-09-22T00:45:04.864022Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5115 +2024-09-22T00:45:04.883346Z INFO fork_choice_control::block_processor: Validating block with slot: 5116 +2024-09-22T00:45:04.885139Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x040eefa36753a88238670ae32d88e75776ff389c2c4d49cccdc41e742a41d4ff, slot: 5116 +2024-09-22T00:45:04.894497Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5116 +2024-09-22T00:45:04.894519Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5116 +2024-09-22T00:45:04.904058Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 5056 +2024-09-22T00:45:04.913867Z INFO fork_choice_control::block_processor: Validating block with slot: 5117 +2024-09-22T00:45:04.915101Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x81b841e667e2bfd4e8778abd011fc8f1d91f2823fcd623719fb9a55758d9787d, slot: 5117 +2024-09-22T00:45:04.921656Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5117 +2024-09-22T00:45:04.921675Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5117 +2024-09-22T00:45:04.941612Z INFO fork_choice_control::block_processor: Validating block with slot: 5118 +2024-09-22T00:45:04.942693Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe6afb63016f0d4dae8a6bb5ece7fb5273dca93ef8b5323d09cd3b3ca2a733a43, slot: 5118 +2024-09-22T00:45:04.949094Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5118 +2024-09-22T00:45:04.949115Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5118 +2024-09-22T00:45:04.968807Z INFO fork_choice_control::block_processor: Validating block with slot: 5119 +2024-09-22T00:45:04.970430Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd42a0a9e19de491fec0d3e1606be036fbaa65e2eb98ff3da2bf5b58a08abb751, slot: 5119 +2024-09-22T00:45:04.978578Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5119 +2024-09-22T00:45:04.978601Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5119 +2024-09-22T00:45:04.999328Z INFO fork_choice_control::block_processor: Validating block with slot: 5120 +2024-09-22T00:45:05.000530Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1ab4753d221ec9973b6e6740b23ac46e1088f364177657c61e0509660dda8aa3, slot: 5120 +2024-09-22T00:45:05.114400Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5120 +2024-09-22T00:45:05.114433Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5120 +2024-09-22T00:45:05.126431Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5120) +2024-09-22T00:45:05.126683Z INFO fork_choice_control::block_processor: Validating block with slot: 5121 +2024-09-22T00:45:05.128427Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaa05297be8d1908cd7d866a64723016b09a6b14d2332d90fbfaeb15293126045, slot: 5121 +2024-09-22T00:45:05.209260Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5121 +2024-09-22T00:45:05.209281Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5121 +2024-09-22T00:45:05.221668Z INFO fork_choice_control::block_processor: Validating block with slot: 5122 +2024-09-22T00:45:05.223651Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xadffecb55c5c08dc3123c4cb6c709db59a0b692ad4f0445c03bc0ae2881e7b74, slot: 5122 +2024-09-22T00:45:05.233999Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5122 +2024-09-22T00:45:05.234013Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5122 +2024-09-22T00:45:05.246978Z INFO fork_choice_control::block_processor: Validating block with slot: 5123 +2024-09-22T00:45:05.250229Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcdd522b885dd112d023b49320d0c90a1a17fc8087a0ffbc1ec67063d624ce889, slot: 5123 +2024-09-22T00:45:05.262899Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5123 +2024-09-22T00:45:05.262917Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5123 +2024-09-22T00:45:05.276093Z INFO fork_choice_control::block_processor: Validating block with slot: 5124 +2024-09-22T00:45:05.277160Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa9146d3e778362feb1905901aabe25c3adac7905006ca5ce7292f1abdb998963, slot: 5124 +2024-09-22T00:45:05.283719Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5124 +2024-09-22T00:45:05.283734Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5124 +2024-09-22T00:45:05.296939Z INFO fork_choice_control::block_processor: Validating block with slot: 5125 +2024-09-22T00:45:05.298159Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3022398aab3db3dec8fe73323919038111dc8083b5ad467d8f7bfea4c3444698, slot: 5125 +2024-09-22T00:45:05.308211Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5125 +2024-09-22T00:45:05.308240Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5125 +2024-09-22T00:45:05.322226Z INFO fork_choice_control::block_processor: Validating block with slot: 5126 +2024-09-22T00:45:05.324337Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbe45a455b90ad5a320c78c77c6eaa082aec0d1897996b40eee5a8fab8c6ae631, slot: 5126 +2024-09-22T00:45:05.335337Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5126 +2024-09-22T00:45:05.335363Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5126 +2024-09-22T00:45:05.349273Z INFO fork_choice_control::block_processor: Validating block with slot: 5127 +2024-09-22T00:45:05.350721Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xda56d017545359f73906f53f6ad7805bc0091103453feb44881b5deab00c215f, slot: 5127 +2024-09-22T00:45:05.362947Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5127 +2024-09-22T00:45:05.362973Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5127 +2024-09-22T00:45:05.377170Z INFO fork_choice_control::block_processor: Validating block with slot: 5128 +2024-09-22T00:45:05.378328Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xee9e6fbebbeac6c0d62869eb32808b275acc33eb2cf92246a069b1e5b9ab9ddb, slot: 5128 +2024-09-22T00:45:05.385152Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5128 +2024-09-22T00:45:05.385167Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5128 +2024-09-22T00:45:05.398654Z INFO fork_choice_control::block_processor: Validating block with slot: 5129 +2024-09-22T00:45:05.399932Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x811f93c65674bb5098898f09abd240185e62a9a281e0c8205eb049e48eb30e2e, slot: 5129 +2024-09-22T00:45:05.406259Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5129 +2024-09-22T00:45:05.406281Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5129 +2024-09-22T00:45:05.419346Z INFO fork_choice_control::block_processor: Validating block with slot: 5130 +2024-09-22T00:45:05.420470Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaf44e7e92146536b795519e03fd5f76efcf651314666a9454f00f557729ffd6d, slot: 5130 +2024-09-22T00:45:05.427173Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5130 +2024-09-22T00:45:05.427192Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5130 +2024-09-22T00:45:05.440724Z INFO fork_choice_control::block_processor: Validating block with slot: 5131 +2024-09-22T00:45:05.442580Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x444b816d8b3e0745fad1154befdb567841b52bdbce29b1142bc335a69a97d8bd, slot: 5131 +2024-09-22T00:45:05.450193Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5131 +2024-09-22T00:45:05.450207Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5131 +2024-09-22T00:45:05.463370Z INFO fork_choice_control::block_processor: Validating block with slot: 5132 +2024-09-22T00:45:05.464351Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe1d897eb427922a454862f1899d15e8fc17daf44502b578468290ce155f986f2, slot: 5132 +2024-09-22T00:45:05.470389Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5132 +2024-09-22T00:45:05.470409Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5132 +2024-09-22T00:45:05.484777Z INFO fork_choice_control::block_processor: Validating block with slot: 5133 +2024-09-22T00:45:05.486319Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xae73a58445bd5cf9d961374b3066f3134c8be3b2ba32cdb3d15643fc4898be70, slot: 5133 +2024-09-22T00:45:05.501673Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5133 +2024-09-22T00:45:05.501698Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5133 +2024-09-22T00:45:05.518264Z INFO fork_choice_control::block_processor: Validating block with slot: 5134 +2024-09-22T00:45:05.519432Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfb5c290ca81e46da136a4578aa5f7eac3749e059f2c1252923ede34a35476865, slot: 5134 +2024-09-22T00:45:05.526966Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5134 +2024-09-22T00:45:05.526991Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5134 +2024-09-22T00:45:05.541372Z INFO fork_choice_control::block_processor: Validating block with slot: 5135 +2024-09-22T00:45:05.542616Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe7bd71892f0795f2e64eef68d670ebc7d18af5f7c30e78967547b712a9705aa6, slot: 5135 +2024-09-22T00:45:05.549084Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5135 +2024-09-22T00:45:05.549097Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5135 +2024-09-22T00:45:05.563309Z INFO fork_choice_control::block_processor: Validating block with slot: 5136 +2024-09-22T00:45:05.564274Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfe46fdeeb86cc4bda0ae7011fce6f154fa0da85d2ae9c664bb950a877c59f041, slot: 5136 +2024-09-22T00:45:05.569966Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5136 +2024-09-22T00:45:05.569980Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5136 +2024-09-22T00:45:05.583958Z INFO fork_choice_control::block_processor: Validating block with slot: 5137 +2024-09-22T00:45:05.585200Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9618b95b31283928207c774fae8cea01403fe7cb7bfec48697df844e7d1daeaa, slot: 5137 +2024-09-22T00:45:05.591785Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5137 +2024-09-22T00:45:05.591811Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5137 +2024-09-22T00:45:05.610209Z INFO fork_choice_control::block_processor: Validating block with slot: 5138 +2024-09-22T00:45:05.613566Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x17271ac9c9a55ba65f2c2fa687763f09bc22bf8ab720ce86c8debf14c2485ca9, slot: 5138 +2024-09-22T00:45:05.624975Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5138 +2024-09-22T00:45:05.625029Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5138 +2024-09-22T00:45:05.641668Z INFO fork_choice_control::block_processor: Validating block with slot: 5139 +2024-09-22T00:45:05.643746Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x139529dbc0404daa27539aa60a55d8fe53d1e43b5948a8b292794d12df2778eb, slot: 5139 +2024-09-22T00:45:05.652438Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5139 +2024-09-22T00:45:05.652451Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5139 +2024-09-22T00:45:05.668615Z INFO fork_choice_control::block_processor: Validating block with slot: 5140 +2024-09-22T00:45:05.669999Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x480a4d0d965e3f5b3798ac6c32b9b2dd5edffb5e3331f81f2bb99666f1be81e9, slot: 5140 +2024-09-22T00:45:05.676875Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5140 +2024-09-22T00:45:05.676897Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5140 +2024-09-22T00:45:05.692034Z INFO fork_choice_control::block_processor: Validating block with slot: 5141 +2024-09-22T00:45:05.693744Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9ba236fa85b31ff2260186d749d3c84671cfd80733ff91ec3f2a721d57b3600a, slot: 5141 +2024-09-22T00:45:05.701139Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5141 +2024-09-22T00:45:05.701152Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5141 +2024-09-22T00:45:05.718451Z INFO fork_choice_control::block_processor: Validating block with slot: 5142 +2024-09-22T00:45:05.719416Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc84dbefed3236882f0793b11ca47d9ffe9e305f7c68209a833e9568ad9a54c94, slot: 5142 +2024-09-22T00:45:05.725712Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5142 +2024-09-22T00:45:05.725732Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5142 +2024-09-22T00:45:05.741297Z INFO fork_choice_control::block_processor: Validating block with slot: 5143 +2024-09-22T00:45:05.742392Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x714fa67b79a9dd4458b2b124de981557180e64b452bdbde6220f1090a093766e, slot: 5143 +2024-09-22T00:45:05.748247Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5143 +2024-09-22T00:45:05.748259Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5143 +2024-09-22T00:45:05.769188Z INFO fork_choice_control::block_processor: Validating block with slot: 5144 +2024-09-22T00:45:05.769192Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 159, root: 0xbf99c99ca20d4834e66d33dd2cfa89d6a675343b7211f6123fc9339ac932d885, head slot: 5143, head root: 0x714fa67b79a9dd4458b2b124de981557180e64b452bdbde6220f1090a093766e) +2024-09-22T00:45:05.770901Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc497e7a3a650b2e5e6202d861424873b5e8bd547f60e0c427563fa3608ddd455, slot: 5144 +2024-09-22T00:45:05.779416Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5144 +2024-09-22T00:45:05.779438Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5144 +2024-09-22T00:45:05.795639Z INFO fork_choice_control::block_processor: Validating block with slot: 5145 +2024-09-22T00:45:05.796764Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1f54d9558a8aab029e8b9aebe0eee98dc9a89472e94f457bff0578d92da1b707, slot: 5145 +2024-09-22T00:45:05.803310Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5145 +2024-09-22T00:45:05.803323Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5145 +2024-09-22T00:45:05.820511Z INFO fork_choice_control::block_processor: Validating block with slot: 5147 +2024-09-22T00:45:05.823365Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x61b5ac87e1320698806eb562de4275a39167898a6dca6ac5e73ffff6b6c424e6, slot: 5147 +2024-09-22T00:45:05.836143Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5147 +2024-09-22T00:45:05.836159Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5147 +2024-09-22T00:45:05.854865Z INFO fork_choice_control::block_processor: Validating block with slot: 5148 +2024-09-22T00:45:05.856002Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x34e4a9098a77aaa33371813e3a6422b078f43d6f4913df26467c9f16cd3ac28b, slot: 5148 +2024-09-22T00:45:05.862996Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5148 +2024-09-22T00:45:05.863013Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5148 +2024-09-22T00:45:05.881635Z INFO fork_choice_control::block_processor: Validating block with slot: 5149 +2024-09-22T00:45:05.883609Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x196ca27ef12554e69ad46d38f4802bcd4576212021e0137cd93b353f37fcfff5, slot: 5149 +2024-09-22T00:45:05.893836Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5149 +2024-09-22T00:45:05.893859Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5149 +2024-09-22T00:45:05.906320Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 5088 +2024-09-22T00:45:05.913184Z INFO fork_choice_control::block_processor: Validating block with slot: 5150 +2024-09-22T00:45:05.914426Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1e989f9faeb6eee314436df3b2b19e73cb9f6e712211606e8548f030f6537489, slot: 5150 +2024-09-22T00:45:05.922465Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5150 +2024-09-22T00:45:05.922492Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5150 +2024-09-22T00:45:05.941715Z INFO fork_choice_control::block_processor: Validating block with slot: 5151 +2024-09-22T00:45:05.942937Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6199b3cf16be32dbee03c4e83dd60e67b807ab60f14641de091ad0b441368bfc, slot: 5151 +2024-09-22T00:45:05.952106Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5151 +2024-09-22T00:45:05.952134Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5151 +2024-09-22T00:45:05.974734Z INFO fork_choice_control::block_processor: Validating block with slot: 5152 +2024-09-22T00:45:05.976296Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9dfd406c218154b0536f941451f3c9a0259c18bfc8c75a9c7c9a699dfe199990, slot: 5152 +2024-09-22T00:45:06.096073Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5152 +2024-09-22T00:45:06.096102Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5152 +2024-09-22T00:45:06.108799Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5152) +2024-09-22T00:45:06.108973Z INFO fork_choice_control::block_processor: Validating block with slot: 5153 +2024-09-22T00:45:06.110526Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9f3eb872dd9fcd96171de6b23457910bb8b3aca281e5bce57c9c55bbcce02d47, slot: 5153 +2024-09-22T00:45:06.194597Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5153 +2024-09-22T00:45:06.194623Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5153 +2024-09-22T00:45:06.206299Z INFO fork_choice_control::block_processor: Validating block with slot: 5154 +2024-09-22T00:45:06.208865Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x251987839edd2f9dd2187699999e4e7f67c92c99de1a61a9720e0bf50ad9b6ce, slot: 5154 +2024-09-22T00:45:06.223216Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5154 +2024-09-22T00:45:06.223245Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5154 +2024-09-22T00:45:06.235235Z INFO fork_choice_control::block_processor: Validating block with slot: 5155 +2024-09-22T00:45:06.236241Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x536e71e3cf3a108e82faf7bf9db3adedff0e9046352998cb51b2fdddd6fa51ac, slot: 5155 +2024-09-22T00:45:06.243479Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5155 +2024-09-22T00:45:06.243501Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5155 +2024-09-22T00:45:06.255611Z INFO fork_choice_control::block_processor: Validating block with slot: 5156 +2024-09-22T00:45:06.257019Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1704313bcc012aa4ec6c0839a513b0ac72fd982002e2bb054719f44fcdcf2d53, slot: 5156 +2024-09-22T00:45:06.264565Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5156 +2024-09-22T00:45:06.264584Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5156 +2024-09-22T00:45:06.277382Z INFO fork_choice_control::block_processor: Validating block with slot: 5157 +2024-09-22T00:45:06.278423Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf3f04b4ee660255734ee0218490ebe6b54c2f506de28445620d8a5d9bbe3f8fc, slot: 5157 +2024-09-22T00:45:06.285217Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5157 +2024-09-22T00:45:06.285245Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5157 +2024-09-22T00:45:06.298526Z INFO fork_choice_control::block_processor: Validating block with slot: 5158 +2024-09-22T00:45:06.301935Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe62aa9fcf0c55f53da9ebd66fbc38cf61e0723cc46a7ae17c506afa8e130fa4d, slot: 5158 +2024-09-22T00:45:06.319448Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5158 +2024-09-22T00:45:06.319472Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5158 +2024-09-22T00:45:06.334280Z INFO fork_choice_control::block_processor: Validating block with slot: 5159 +2024-09-22T00:45:06.335585Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf9e63808279239f70ee9a10867a32beb79011467a32da312448a48c952ab1493, slot: 5159 +2024-09-22T00:45:06.343437Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5159 +2024-09-22T00:45:06.343459Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5159 +2024-09-22T00:45:06.357740Z INFO fork_choice_control::block_processor: Validating block with slot: 5160 +2024-09-22T00:45:06.358801Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa9b1b93220d6a6f610d55415498e64c89f6cbec81ffd55cf7e136c015977b8c7, slot: 5160 +2024-09-22T00:45:06.365293Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5160 +2024-09-22T00:45:06.365312Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5160 +2024-09-22T00:45:06.379840Z INFO fork_choice_control::block_processor: Validating block with slot: 5161 +2024-09-22T00:45:06.381216Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9f0f103614750fc0c6b8a0ad7bcea9b2069f3687622be5b427a37d2c665182e8, slot: 5161 +2024-09-22T00:45:06.389107Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5161 +2024-09-22T00:45:06.389138Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5161 +2024-09-22T00:45:06.402931Z INFO fork_choice_control::block_processor: Validating block with slot: 5162 +2024-09-22T00:45:06.404563Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3c3f9285002fea1f09a537e1ff95e5d62499a4a0f00b524e8b686a52cac890ac, slot: 5162 +2024-09-22T00:45:06.413666Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5162 +2024-09-22T00:45:06.413694Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5162 +2024-09-22T00:45:06.428187Z INFO fork_choice_control::block_processor: Validating block with slot: 5163 +2024-09-22T00:45:06.429282Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6ea31150d738d8bd2391864e27a68ea5cd6760222c24fbbf34e69871e4d65c97, slot: 5163 +2024-09-22T00:45:06.435395Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5163 +2024-09-22T00:45:06.435417Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5163 +2024-09-22T00:45:06.450285Z INFO fork_choice_control::block_processor: Validating block with slot: 5164 +2024-09-22T00:45:06.451805Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x225cfa05c54a57f10db26cc76edbda11bc7b120f1d61d1e0143593043c3f4998, slot: 5164 +2024-09-22T00:45:06.462375Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5164 +2024-09-22T00:45:06.462400Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5164 +2024-09-22T00:45:06.476605Z INFO fork_choice_control::block_processor: Validating block with slot: 5167 +2024-09-22T00:45:06.479496Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc014db13379e295f52d1404a3d09fea04ad0671d0460226aadfd667ba3140680, slot: 5167 +2024-09-22T00:45:06.500780Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5167 +2024-09-22T00:45:06.500808Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5167 +2024-09-22T00:45:06.536538Z INFO fork_choice_control::block_processor: Validating block with slot: 5168 +2024-09-22T00:45:06.538117Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0a882481826d1f2d497eddb56be2942ba6518d99899bc85e4d48fd7f1fe9c4a6, slot: 5168 +2024-09-22T00:45:06.548151Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5168 +2024-09-22T00:45:06.548180Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5168 +2024-09-22T00:45:06.563785Z INFO fork_choice_control::block_processor: Validating block with slot: 5169 +2024-09-22T00:45:06.565100Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x207c1f663b9dba10f0b565771253b1f902445440c1990990a94f57a40e41a612, slot: 5169 +2024-09-22T00:45:06.572021Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5169 +2024-09-22T00:45:06.572046Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5169 +2024-09-22T00:45:06.588608Z INFO fork_choice_control::block_processor: Validating block with slot: 5170 +2024-09-22T00:45:06.591929Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa0585209215437d06149b5305131b4ded1666ac8c1914d53c488070da5f9900b, slot: 5170 +2024-09-22T00:45:06.607088Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5170 +2024-09-22T00:45:06.607121Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5170 +2024-09-22T00:45:06.624755Z INFO fork_choice_control::block_processor: Validating block with slot: 5171 +2024-09-22T00:45:06.625971Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xca4727ffd2a2c0e022edd785f41da58df05646235a88feb31d6e63b59343629b, slot: 5171 +2024-09-22T00:45:06.632527Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5171 +2024-09-22T00:45:06.632550Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5171 +2024-09-22T00:45:06.649404Z INFO fork_choice_control::block_processor: Validating block with slot: 5172 +2024-09-22T00:45:06.650958Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x96e209b16bdf7fd55129ac35e3999e639564879326d5f0f3c5a23621e287b6af, slot: 5172 +2024-09-22T00:45:06.658747Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5172 +2024-09-22T00:45:06.658785Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5172 +2024-09-22T00:45:06.675165Z INFO fork_choice_control::block_processor: Validating block with slot: 5173 +2024-09-22T00:45:06.676261Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xef92c098926132a49f288bcf09477fb123d5c0a9ab0a95691e865c8ce38a44f3, slot: 5173 +2024-09-22T00:45:06.682206Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5173 +2024-09-22T00:45:06.682221Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5173 +2024-09-22T00:45:06.698823Z INFO fork_choice_control::block_processor: Validating block with slot: 5174 +2024-09-22T00:45:06.700339Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x555dad075e1275cf756316bb113225330324a6dbbca27330da4f527f76706e19, slot: 5174 +2024-09-22T00:45:06.707230Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5174 +2024-09-22T00:45:06.707253Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5174 +2024-09-22T00:45:06.723387Z INFO fork_choice_control::block_processor: Validating block with slot: 5175 +2024-09-22T00:45:06.727483Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x18a090aeddc14867e7d92f5f95e127ec3f9f222542395605ad2c6abd5a4cf01c, slot: 5175 +2024-09-22T00:45:06.743845Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5175 +2024-09-22T00:45:06.743865Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5175 +2024-09-22T00:45:06.766337Z INFO fork_choice_control::block_processor: Validating block with slot: 5176 +2024-09-22T00:45:06.766341Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 160, root: 0x1ab4753d221ec9973b6e6740b23ac46e1088f364177657c61e0509660dda8aa3, head slot: 5175, head root: 0x18a090aeddc14867e7d92f5f95e127ec3f9f222542395605ad2c6abd5a4cf01c) +2024-09-22T00:45:06.769038Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xffad205d2b90c71e5a618fd5fc24ff6821314a71f2eddcf4d86f2438bf8f0ccf, slot: 5176 +2024-09-22T00:45:06.779826Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5176 +2024-09-22T00:45:06.779845Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5176 +2024-09-22T00:45:06.798495Z INFO fork_choice_control::block_processor: Validating block with slot: 5177 +2024-09-22T00:45:06.799616Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x793595e54b62bc940df1d8666007d79ab83f14c678a59e9fc08f58354b7aa8e2, slot: 5177 +2024-09-22T00:45:06.807826Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5177 +2024-09-22T00:45:06.807844Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5177 +2024-09-22T00:45:06.826611Z INFO fork_choice_control::block_processor: Validating block with slot: 5178 +2024-09-22T00:45:06.827991Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdee463beeff712543ac61efd865f8367d9e327659514575bc6a8d1f2303bc44d, slot: 5178 +2024-09-22T00:45:06.834812Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5178 +2024-09-22T00:45:06.834831Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5178 +2024-09-22T00:45:06.853538Z INFO fork_choice_control::block_processor: Validating block with slot: 5179 +2024-09-22T00:45:06.855848Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x21e1826b0abcc657ee5be70157a205b5efa6b30693f78aa50eab76276a165dd0, slot: 5179 +2024-09-22T00:45:06.866287Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5179 +2024-09-22T00:45:06.866305Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5179 +2024-09-22T00:45:06.888308Z INFO fork_choice_control::block_processor: Validating block with slot: 5180 +2024-09-22T00:45:06.889442Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x11ced6df8a9b4884bf017b20fc775399d99eb7394d8174dc2e23fb725c3556b0, slot: 5180 +2024-09-22T00:45:06.896591Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5180 +2024-09-22T00:45:06.896610Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5180 +2024-09-22T00:45:06.913579Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 5120 +2024-09-22T00:45:06.916916Z INFO fork_choice_control::block_processor: Validating block with slot: 5181 +2024-09-22T00:45:06.918197Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5a17502f351624b3e748fa4f5e08bab56bc9356777fff012508177f6fe9b11f8, slot: 5181 +2024-09-22T00:45:06.925722Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5181 +2024-09-22T00:45:06.925743Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5181 +2024-09-22T00:45:06.945508Z INFO fork_choice_control::block_processor: Validating block with slot: 5182 +2024-09-22T00:45:06.946908Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc0ff2fe511ab7a183a428393c14e37931b2880baeeb8c94a6d1429839c38fb18, slot: 5182 +2024-09-22T00:45:06.955633Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5182 +2024-09-22T00:45:06.955664Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5182 +2024-09-22T00:45:06.968601Z INFO fork_choice_control::storage: saving state in slot 5120 +2024-09-22T00:45:06.975172Z INFO fork_choice_control::block_processor: Validating block with slot: 5183 +2024-09-22T00:45:06.976382Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x57b38091234d81b4781c7d6d27eb42d15e0a6ea9b99cdcfbf8c01afb0b52765c, slot: 5183 +2024-09-22T00:45:06.982717Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5183 +2024-09-22T00:45:06.982732Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5183 +2024-09-22T00:45:07.003097Z INFO fork_choice_control::block_processor: Validating block with slot: 5184 +2024-09-22T00:45:07.004362Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3415b5deada3531e80c6fca5ebee2ea462a84d5795d6e9d239386a339c6bfb9a, slot: 5184 +2024-09-22T00:45:07.245713Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5184 +2024-09-22T00:45:07.245743Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5184 +2024-09-22T00:45:07.258439Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5184) +2024-09-22T00:45:07.258596Z INFO fork_choice_control::block_processor: Validating block with slot: 5185 +2024-09-22T00:45:07.259788Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6f66dddccdec66f2de753809c92d909106fc0e7ad9c8e000f09812fa57654dfe, slot: 5185 +2024-09-22T00:45:07.344376Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5185 +2024-09-22T00:45:07.344403Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5185 +2024-09-22T00:45:07.357240Z INFO fork_choice_control::block_processor: Validating block with slot: 5186 +2024-09-22T00:45:07.359412Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcdbe9d3ba26fb1baa671b252d7e91ccd5036719076166e2e01bb37528e7815b4, slot: 5186 +2024-09-22T00:45:07.370816Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5186 +2024-09-22T00:45:07.370835Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5186 +2024-09-22T00:45:07.384044Z INFO fork_choice_control::block_processor: Validating block with slot: 5187 +2024-09-22T00:45:07.385184Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xebd97b560272f15de0ce92caf307ee09d9e16fccf481af61e3df5063ce37849c, slot: 5187 +2024-09-22T00:45:07.393757Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5187 +2024-09-22T00:45:07.393780Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5187 +2024-09-22T00:45:07.407723Z INFO fork_choice_control::block_processor: Validating block with slot: 5188 +2024-09-22T00:45:07.409405Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf69cf91b40b20d340c18c2cfb3c4bb30478a68c1c60e1d266a973de388c8bd25, slot: 5188 +2024-09-22T00:45:07.419296Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5188 +2024-09-22T00:45:07.419322Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5188 +2024-09-22T00:45:07.433468Z INFO fork_choice_control::block_processor: Validating block with slot: 5189 +2024-09-22T00:45:07.434609Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x839abbbd8b657ba7c610f8ac23e3c08cd49d6ff59f99743453f0d2e6b6e3c1a2, slot: 5189 +2024-09-22T00:45:07.443481Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5189 +2024-09-22T00:45:07.443503Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5189 +2024-09-22T00:45:07.457438Z INFO fork_choice_control::block_processor: Validating block with slot: 5190 +2024-09-22T00:45:07.458730Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb965898c15798cd3682d3a177822edeea87a75e5c16a3a1309bf0011fc3361ed, slot: 5190 +2024-09-22T00:45:07.465400Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5190 +2024-09-22T00:45:07.465415Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5190 +2024-09-22T00:45:07.479559Z INFO fork_choice_control::block_processor: Validating block with slot: 5191 +2024-09-22T00:45:07.480780Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xec0f4ad9e18777b0a94874ca72b673d6731187480a514889418a6a48d8ce0240, slot: 5191 +2024-09-22T00:45:07.490162Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5191 +2024-09-22T00:45:07.490188Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5191 +2024-09-22T00:45:07.505454Z INFO fork_choice_control::block_processor: Validating block with slot: 5192 +2024-09-22T00:45:07.507173Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb0b9a346108bdec43586ed638e285ac8c86f9540220b55803b17fc31cc7995c6, slot: 5192 +2024-09-22T00:45:07.516348Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5192 +2024-09-22T00:45:07.516368Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5192 +2024-09-22T00:45:07.530620Z INFO fork_choice_control::block_processor: Validating block with slot: 5193 +2024-09-22T00:45:07.531682Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x44b6f98fd43763cd68947ea6ae96cf7b66b005620e0ad99abb134fc4b4c6e373, slot: 5193 +2024-09-22T00:45:07.537704Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5193 +2024-09-22T00:45:07.537720Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5193 +2024-09-22T00:45:07.551211Z INFO fork_choice_control::block_processor: Validating block with slot: 5194 +2024-09-22T00:45:07.554213Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xda04460b051a39a3010a4bc037fc8c3580610ef858788e8db33971bbb8c660b4, slot: 5194 +2024-09-22T00:45:07.565240Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5194 +2024-09-22T00:45:07.565263Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5194 +2024-09-22T00:45:07.579992Z INFO fork_choice_control::block_processor: Validating block with slot: 5195 +2024-09-22T00:45:07.580974Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5c82714035e1b05e94d168e10d877c6283505a0b2f4608a57b75a9553795b195, slot: 5195 +2024-09-22T00:45:07.586824Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5195 +2024-09-22T00:45:07.586838Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5195 +2024-09-22T00:45:07.601159Z INFO fork_choice_control::block_processor: Validating block with slot: 5196 +2024-09-22T00:45:07.602372Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x94271440b3c14f360b3adc6058242165294b0669d91a1af6a503a2dd30b29a2f, slot: 5196 +2024-09-22T00:45:07.610284Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5196 +2024-09-22T00:45:07.610304Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5196 +2024-09-22T00:45:07.625885Z INFO fork_choice_control::block_processor: Validating block with slot: 5197 +2024-09-22T00:45:07.627659Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x516c0414f3e86e6fe5a69c1faf87b81d2e61e508d4dc33de51099589ac12b569, slot: 5197 +2024-09-22T00:45:07.637654Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5197 +2024-09-22T00:45:07.637680Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5197 +2024-09-22T00:45:07.652738Z INFO fork_choice_control::block_processor: Validating block with slot: 5198 +2024-09-22T00:45:07.654038Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9b183fc0bb77a45253a656bb577d0506df9c1c196e14cb537ee99f16140bc0a2, slot: 5198 +2024-09-22T00:45:07.662087Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5198 +2024-09-22T00:45:07.662110Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5198 +2024-09-22T00:45:07.677092Z INFO fork_choice_control::block_processor: Validating block with slot: 5199 +2024-09-22T00:45:07.678368Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd69d7bd06d3f01a2e3f4d483aa9c632f17019ba8d56e4dac1023c5d9ba71d293, slot: 5199 +2024-09-22T00:45:07.685531Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5199 +2024-09-22T00:45:07.685548Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5199 +2024-09-22T00:45:07.700542Z INFO fork_choice_control::block_processor: Validating block with slot: 5200 +2024-09-22T00:45:07.702129Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x23388afa165f622223c149410b76333a61615479b3088a6f0ef22e107c2f279a, slot: 5200 +2024-09-22T00:45:07.709881Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5200 +2024-09-22T00:45:07.709903Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5200 +2024-09-22T00:45:07.725013Z INFO fork_choice_control::block_processor: Validating block with slot: 5201 +2024-09-22T00:45:07.726023Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1afcd01a538893d481e3b44bef964f717bd8fb6f90e241908046241bb7949d63, slot: 5201 +2024-09-22T00:45:07.731411Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5201 +2024-09-22T00:45:07.731426Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5201 +2024-09-22T00:45:07.746715Z INFO fork_choice_control::block_processor: Validating block with slot: 5202 +2024-09-22T00:45:07.747704Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xee8750617a9b4bf77a9ae44cb9f44daa746641f878b33c493a63ee866666e901, slot: 5202 +2024-09-22T00:45:07.754162Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5202 +2024-09-22T00:45:07.754178Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5202 +2024-09-22T00:45:07.770201Z INFO fork_choice_control::block_processor: Validating block with slot: 5203 +2024-09-22T00:45:07.771709Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xba85c234225c6bc14c7b3dd4d73743eefba49d6e3500aa01aecf694f0edb705a, slot: 5203 +2024-09-22T00:45:07.779227Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5203 +2024-09-22T00:45:07.779252Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5203 +2024-09-22T00:45:07.795823Z INFO fork_choice_control::block_processor: Validating block with slot: 5204 +2024-09-22T00:45:07.796883Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe42a9ad3f433430e81e28108fe19acb33e7cbd1e2658a11d8fbdde925fbf4852, slot: 5204 +2024-09-22T00:45:07.802728Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5204 +2024-09-22T00:45:07.802744Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5204 +2024-09-22T00:45:07.818128Z INFO fork_choice_control::block_processor: Validating block with slot: 5205 +2024-09-22T00:45:07.819626Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9b3feea90030b3f4eb569fb554288f7a903522f984403251b266a74db09157d1, slot: 5205 +2024-09-22T00:45:07.827933Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5205 +2024-09-22T00:45:07.827956Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5205 +2024-09-22T00:45:07.843542Z INFO fork_choice_control::block_processor: Validating block with slot: 5206 +2024-09-22T00:45:07.844962Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfd7939433a872966e526a77bb31d56719216f0401678ba35abec4b3e0f7b9d27, slot: 5206 +2024-09-22T00:45:07.852295Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5206 +2024-09-22T00:45:07.852312Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5206 +2024-09-22T00:45:07.870013Z INFO fork_choice_control::block_processor: Validating block with slot: 5207 +2024-09-22T00:45:07.873211Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf9c9571be43344284d26fa04853610a9487e2659f92d66d6685e7b6846d4a3b4, slot: 5207 +2024-09-22T00:45:07.886777Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5207 +2024-09-22T00:45:07.886888Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5207 +2024-09-22T00:45:07.913027Z INFO fork_choice_control::block_processor: Validating block with slot: 5208 +2024-09-22T00:45:07.913030Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 161, root: 0x9dfd406c218154b0536f941451f3c9a0259c18bfc8c75a9c7c9a699dfe199990, head slot: 5207, head root: 0xf9c9571be43344284d26fa04853610a9487e2659f92d66d6685e7b6846d4a3b4) +2024-09-22T00:45:07.914588Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xba695ae637d5304945dfc3b0c40eec44e1f5de3e0b0137bfe957257e2ca04aaa, slot: 5208 +2024-09-22T00:45:07.922402Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5208 +2024-09-22T00:45:07.922431Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5208 +2024-09-22T00:45:07.948754Z INFO fork_choice_control::block_processor: Validating block with slot: 5209 +2024-09-22T00:45:07.952389Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0f9045cb39f47607b835c839b41020852266448f5ad20605b999b3b8d8c5792d, slot: 5209 +2024-09-22T00:45:07.983275Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5209 +2024-09-22T00:45:07.983325Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5209 +2024-09-22T00:45:08.004695Z INFO fork_choice_control::block_processor: Validating block with slot: 5210 +2024-09-22T00:45:08.006224Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc0a15033e544b2a8e6285cad88bb13e720581970a5881094c3ed2d6e71d19c65, slot: 5210 +2024-09-22T00:45:08.025992Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5210 +2024-09-22T00:45:08.026036Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5210 +2024-09-22T00:45:08.045423Z INFO fork_choice_control::block_processor: Validating block with slot: 5211 +2024-09-22T00:45:08.046629Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe0109ad5532e4622034fcfe505da14009672d78bdbf33bbbb553d99596a1d3d8, slot: 5211 +2024-09-22T00:45:08.053666Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5211 +2024-09-22T00:45:08.053681Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5211 +2024-09-22T00:45:08.072557Z INFO fork_choice_control::block_processor: Validating block with slot: 5212 +2024-09-22T00:45:08.073781Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x55c9c0e2b01db7df7cfd5204d15741ea0c1e25f4f3db7c0614eb848c8e0e519c, slot: 5212 +2024-09-22T00:45:08.080748Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5212 +2024-09-22T00:45:08.080771Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5212 +2024-09-22T00:45:08.101310Z INFO fork_choice_control::block_processor: Validating block with slot: 5213 +2024-09-22T00:45:08.102471Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaad5431dd8105cc00fac0327728f49f2a8aaf31e780b58c199c9cb4ca76a5d3f, slot: 5213 +2024-09-22T00:45:08.110613Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5213 +2024-09-22T00:45:08.110638Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5213 +2024-09-22T00:45:08.117391Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 5152 +2024-09-22T00:45:08.132380Z INFO fork_choice_control::block_processor: Validating block with slot: 5214 +2024-09-22T00:45:08.133993Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaf33168e3b6e8d0e5c9de9790e9e96ac5279621e2b009f0de5699ee0b9b7704c, slot: 5214 +2024-09-22T00:45:08.148399Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5214 +2024-09-22T00:45:08.148482Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5214 +2024-09-22T00:45:08.182501Z INFO fork_choice_control::block_processor: Validating block with slot: 5215 +2024-09-22T00:45:08.185374Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4509d89ef105d46475052a6d7b85698e82cc2601f9ab0ff33d2bb6e259a385b4, slot: 5215 +2024-09-22T00:45:08.194862Z INFO fork_choice_control::storage: saving state in slot 5120 +2024-09-22T00:45:08.197306Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5215 +2024-09-22T00:45:08.197322Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5215 +2024-09-22T00:45:08.218379Z INFO fork_choice_control::block_processor: Validating block with slot: 5216 +2024-09-22T00:45:08.219673Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfb59ca3479c6f35fee8c4043fbb1066127ce748bf09c3fa055a7f0b29f2c6564, slot: 5216 +2024-09-22T00:45:08.333375Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5216 +2024-09-22T00:45:08.333400Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5216 +2024-09-22T00:45:08.345747Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5216) +2024-09-22T00:45:08.345865Z INFO fork_choice_control::block_processor: Validating block with slot: 5217 +2024-09-22T00:45:08.349305Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc80064c6cb8c1ed0da0773324374091023d45ff2e68d634f692dded9f20321c2, slot: 5217 +2024-09-22T00:45:08.441801Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5217 +2024-09-22T00:45:08.441822Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5217 +2024-09-22T00:45:08.454271Z INFO fork_choice_control::block_processor: Validating block with slot: 5218 +2024-09-22T00:45:08.455490Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x94a77ce7fc502c939ad058adee28a9bc9a7a8283460f5db7d0b51450b2918ea8, slot: 5218 +2024-09-22T00:45:08.463639Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5218 +2024-09-22T00:45:08.463655Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5218 +2024-09-22T00:45:08.476984Z INFO fork_choice_control::block_processor: Validating block with slot: 5219 +2024-09-22T00:45:08.478597Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa987cb533ac462a87acd232064adfda91b0f389e4e5f289d3e6323e61a6e3ecb, slot: 5219 +2024-09-22T00:45:08.488679Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5219 +2024-09-22T00:45:08.488698Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5219 +2024-09-22T00:45:08.501946Z INFO fork_choice_control::block_processor: Validating block with slot: 5220 +2024-09-22T00:45:08.503066Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbca8418af65eba5f40c924d015ea869954bf1eb5997d8de270dae2d23978eab3, slot: 5220 +2024-09-22T00:45:08.514889Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5220 +2024-09-22T00:45:08.514932Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5220 +2024-09-22T00:45:08.528776Z INFO fork_choice_control::block_processor: Validating block with slot: 5221 +2024-09-22T00:45:08.530069Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7b9964872c2045699f03aecdab1da95ae58e3cd646d9d1c4dbe2f5686180a4c3, slot: 5221 +2024-09-22T00:45:08.540450Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5221 +2024-09-22T00:45:08.540474Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5221 +2024-09-22T00:45:08.554181Z INFO fork_choice_control::block_processor: Validating block with slot: 5222 +2024-09-22T00:45:08.556289Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x19e869035c870eabef41ffe9503f95ad0be246bda1919b16e9c6854578b7656e, slot: 5222 +2024-09-22T00:45:08.566745Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5222 +2024-09-22T00:45:08.566766Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5222 +2024-09-22T00:45:08.580959Z INFO fork_choice_control::block_processor: Validating block with slot: 5223 +2024-09-22T00:45:08.582418Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc6d266701512abb9f3bec97d90696fc0513566067c72ccf77f27e769cfc97879, slot: 5223 +2024-09-22T00:45:08.590056Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5223 +2024-09-22T00:45:08.590081Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5223 +2024-09-22T00:45:08.604452Z INFO fork_choice_control::block_processor: Validating block with slot: 5224 +2024-09-22T00:45:08.605599Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x29fc8c255d1a297ac68b8dd63fdaf95f0ea977d3ce758768d7a8d739a09d233b, slot: 5224 +2024-09-22T00:45:08.612633Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5224 +2024-09-22T00:45:08.612654Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5224 +2024-09-22T00:45:08.627508Z INFO fork_choice_control::block_processor: Validating block with slot: 5225 +2024-09-22T00:45:08.630568Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd8f53eab56cdeb7315b5f79801fd86a316a02bf9ecc85cd6befdeb9b79cd8bcc, slot: 5225 +2024-09-22T00:45:08.641369Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5225 +2024-09-22T00:45:08.641411Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5225 +2024-09-22T00:45:08.655469Z INFO fork_choice_control::block_processor: Validating block with slot: 5226 +2024-09-22T00:45:08.657469Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1d2e23f47f58e7a2d0bbf30cc26a101975caede92a83b2348a5322b677cf7675, slot: 5226 +2024-09-22T00:45:08.665608Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5226 +2024-09-22T00:45:08.665625Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5226 +2024-09-22T00:45:08.679259Z INFO fork_choice_control::block_processor: Validating block with slot: 5227 +2024-09-22T00:45:08.680317Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8bd5bbd0c2c2f0d074b13885f382b434fc6b2ac295c48e70e3570035d9d63e9f, slot: 5227 +2024-09-22T00:45:08.685865Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5227 +2024-09-22T00:45:08.685881Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5227 +2024-09-22T00:45:08.700131Z INFO fork_choice_control::block_processor: Validating block with slot: 5228 +2024-09-22T00:45:08.701115Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb75366d7aeb3de8559bcfce889f04b3535bbc4ab273737bf96bef03e750d860c, slot: 5228 +2024-09-22T00:45:08.707331Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5228 +2024-09-22T00:45:08.707355Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5228 +2024-09-22T00:45:08.721764Z INFO fork_choice_control::block_processor: Validating block with slot: 5229 +2024-09-22T00:45:08.724246Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x482f254ccfd221e564a39341601081d3b3db913e686752787cfd3170afc23673, slot: 5229 +2024-09-22T00:45:08.734275Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5229 +2024-09-22T00:45:08.734293Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5229 +2024-09-22T00:45:08.748222Z INFO fork_choice_control::block_processor: Validating block with slot: 5230 +2024-09-22T00:45:08.749204Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xad4acf6c99a4d6b060d07267dfaf88344c019c50d8a2229d7043026cf5e781fe, slot: 5230 +2024-09-22T00:45:08.755341Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5230 +2024-09-22T00:45:08.755366Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5230 +2024-09-22T00:45:08.769112Z INFO fork_choice_control::block_processor: Validating block with slot: 5231 +2024-09-22T00:45:08.770220Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2f7a92d762d6d7024dc858f631045b610cd2c11b0de24333667a1d72c966cd49, slot: 5231 +2024-09-22T00:45:08.776359Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5231 +2024-09-22T00:45:08.776377Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5231 +2024-09-22T00:45:08.791386Z INFO fork_choice_control::block_processor: Validating block with slot: 5232 +2024-09-22T00:45:08.792431Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd8e47faeddb6d7133c246f6ed22446fb9c591d68b8b6d36e4998bbde97e8f16e, slot: 5232 +2024-09-22T00:45:08.798862Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5232 +2024-09-22T00:45:08.798880Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5232 +2024-09-22T00:45:08.815094Z INFO fork_choice_control::block_processor: Validating block with slot: 5233 +2024-09-22T00:45:08.817188Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7d72812c444d2c81b9811377192b3067fc861dcea31c8e6c9ca6a1d71d2d5489, slot: 5233 +2024-09-22T00:45:08.828167Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5233 +2024-09-22T00:45:08.828188Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5233 +2024-09-22T00:45:08.844337Z INFO fork_choice_control::block_processor: Validating block with slot: 5234 +2024-09-22T00:45:08.845329Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x00a781266221314504a5160795a1aaed03e32ac60eab8f2dfa46025c3e67bd7d, slot: 5234 +2024-09-22T00:45:08.851729Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5234 +2024-09-22T00:45:08.851746Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5234 +2024-09-22T00:45:08.867873Z INFO fork_choice_control::block_processor: Validating block with slot: 5235 +2024-09-22T00:45:08.868911Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6aefedb22251afa248926b952b0c18defff12b16ae483e048cccb1028fa36a70, slot: 5235 +2024-09-22T00:45:08.875253Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5235 +2024-09-22T00:45:08.875273Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5235 +2024-09-22T00:45:08.891162Z INFO fork_choice_control::block_processor: Validating block with slot: 5236 +2024-09-22T00:45:08.893597Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf3ef3784d87bd4c75fda1d4c02e6560181eae2d93ffe12e2929a449cbd9a94ca, slot: 5236 +2024-09-22T00:45:08.902947Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5236 +2024-09-22T00:45:08.902965Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5236 +2024-09-22T00:45:08.922205Z INFO fork_choice_control::block_processor: Validating block with slot: 5237 +2024-09-22T00:45:08.923801Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8e8a0064504feb1e1d301345e01f2e512757a27182e56b1be67635cff0cbad25, slot: 5237 +2024-09-22T00:45:08.935624Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5237 +2024-09-22T00:45:08.935656Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5237 +2024-09-22T00:45:08.954390Z INFO fork_choice_control::block_processor: Validating block with slot: 5238 +2024-09-22T00:45:08.956090Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x86f634247a1cf68c70b52a741583aa70c3a0d6eb22f9d8a5d4826626ed580d56, slot: 5238 +2024-09-22T00:45:08.964919Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5238 +2024-09-22T00:45:08.964946Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5238 +2024-09-22T00:45:08.982639Z INFO fork_choice_control::block_processor: Validating block with slot: 5239 +2024-09-22T00:45:08.983712Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe35d47460af78f6ae029d026c52abc0fc4fba82856096dbf1b9e52d26f4f9bc1, slot: 5239 +2024-09-22T00:45:08.991301Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5239 +2024-09-22T00:45:08.991325Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5239 +2024-09-22T00:45:09.013858Z INFO fork_choice_control::block_processor: Validating block with slot: 5240 +2024-09-22T00:45:09.013890Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 162, root: 0x3415b5deada3531e80c6fca5ebee2ea462a84d5795d6e9d239386a339c6bfb9a, head slot: 5239, head root: 0xe35d47460af78f6ae029d026c52abc0fc4fba82856096dbf1b9e52d26f4f9bc1) +2024-09-22T00:45:09.015187Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4f9693d8061644d9bebe09a06ece89d04a5ef5062751b50a9cbaa9178d11fe1a, slot: 5240 +2024-09-22T00:45:09.021795Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5240 +2024-09-22T00:45:09.021818Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5240 +2024-09-22T00:45:09.039525Z INFO fork_choice_control::block_processor: Validating block with slot: 5241 +2024-09-22T00:45:09.040817Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0f9610c4fa056e2a6dd707e208df23e7632f559514a9f1afedcf454f84072e90, slot: 5241 +2024-09-22T00:45:09.048318Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5241 +2024-09-22T00:45:09.048339Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5241 +2024-09-22T00:45:09.065914Z INFO fork_choice_control::block_processor: Validating block with slot: 5242 +2024-09-22T00:45:09.067122Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2ac9f01b9550d7e9d47775b5f8b8b7ed35d425669df17fb4bf2e4b2d1643e456, slot: 5242 +2024-09-22T00:45:09.074913Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5242 +2024-09-22T00:45:09.074936Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5242 +2024-09-22T00:45:09.093894Z INFO fork_choice_control::block_processor: Validating block with slot: 5243 +2024-09-22T00:45:09.095508Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x19849d34679374bfb5002fec6f01e51ab51af41fe81826349608968a53581196, slot: 5243 +2024-09-22T00:45:09.104049Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5243 +2024-09-22T00:45:09.104073Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5243 +2024-09-22T00:45:09.123656Z INFO fork_choice_control::block_processor: Validating block with slot: 5244 +2024-09-22T00:45:09.124889Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x505107f678459cc64572fd004c0220cd16fa54a69a5b824e85cef99ca97b1c65, slot: 5244 +2024-09-22T00:45:09.131704Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5244 +2024-09-22T00:45:09.131721Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5244 +2024-09-22T00:45:09.151230Z INFO fork_choice_control::block_processor: Validating block with slot: 5245 +2024-09-22T00:45:09.153133Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3065de7a11b8d4f6cf03117d8691880fb4bf0b4d963ef419c19ed855c4d83250, slot: 5245 +2024-09-22T00:45:09.156220Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 5184 +2024-09-22T00:45:09.162191Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5245 +2024-09-22T00:45:09.162206Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5245 +2024-09-22T00:45:09.181126Z INFO fork_choice_control::block_processor: Validating block with slot: 5246 +2024-09-22T00:45:09.183820Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa4b2c7fdb6ab140f7119246787bff9142d6e5d95a8a07a21e953ce26bc2133fd, slot: 5246 +2024-09-22T00:45:09.195892Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5246 +2024-09-22T00:45:09.195911Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5246 +2024-09-22T00:45:09.215419Z INFO fork_choice_control::block_processor: Validating block with slot: 5247 +2024-09-22T00:45:09.216481Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xac09760b52fcf6db74c2a0b22954933111ad64afbc5e9f385903ed192c7a4ff5, slot: 5247 +2024-09-22T00:45:09.223318Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5247 +2024-09-22T00:45:09.223340Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5247 +2024-09-22T00:45:09.243647Z INFO fork_choice_control::block_processor: Validating block with slot: 5251 +2024-09-22T00:45:09.247171Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc12e4c075bc795ad760e10ed9c2ee0f269699740ac912608226f7e784844137a, slot: 5251 +2024-09-22T00:45:09.449753Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5251 +2024-09-22T00:45:09.449777Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5251 +2024-09-22T00:45:09.461815Z INFO fork_choice_control::block_processor: Validating block with slot: 5252 +2024-09-22T00:45:09.464909Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xec5adacc035bfe75c872597a59b6a18a4d1a592ee1b9aab8dbcd7aaf7cedbd5b, slot: 5252 +2024-09-22T00:45:09.476246Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5252 +2024-09-22T00:45:09.476288Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5252 +2024-09-22T00:45:09.488638Z INFO fork_choice_control::block_processor: Validating block with slot: 5253 +2024-09-22T00:45:09.489845Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x66435c2201fbb6f2652f3bd50b16b640c417db70af7b0e82678424e02e2686d8, slot: 5253 +2024-09-22T00:45:09.495987Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5253 +2024-09-22T00:45:09.496000Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5253 +2024-09-22T00:45:09.508658Z INFO fork_choice_control::block_processor: Validating block with slot: 5254 +2024-09-22T00:45:09.510258Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf5eeb7f1872f829b23accfe44fd91c68417a6c60212dd0b0ed3a04daba710699, slot: 5254 +2024-09-22T00:45:09.518765Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5254 +2024-09-22T00:45:09.518782Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5254 +2024-09-22T00:45:09.531517Z INFO fork_choice_control::block_processor: Validating block with slot: 5255 +2024-09-22T00:45:09.532575Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x27657d7cee996f6903d3da6de1aa7c42814c1106616238b10e3e013490d5a88b, slot: 5255 +2024-09-22T00:45:09.539328Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5255 +2024-09-22T00:45:09.539349Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5255 +2024-09-22T00:45:09.552390Z INFO fork_choice_control::block_processor: Validating block with slot: 5256 +2024-09-22T00:45:09.553443Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x31203c1f305d439ba24210c402eb67d327a0ad3f6706844d01f8a967953a3347, slot: 5256 +2024-09-22T00:45:09.560261Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5256 +2024-09-22T00:45:09.560282Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5256 +2024-09-22T00:45:09.574293Z INFO fork_choice_control::block_processor: Validating block with slot: 5257 +2024-09-22T00:45:09.575801Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x535d275d175d80fc994077d2e245d93dec6a5403f3e3ec64c1ba9a208a7b7aa9, slot: 5257 +2024-09-22T00:45:09.583077Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5257 +2024-09-22T00:45:09.583092Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5257 +2024-09-22T00:45:09.596805Z INFO fork_choice_control::block_processor: Validating block with slot: 5258 +2024-09-22T00:45:09.598016Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x708e7e0cb30abb185aa792742472524cbbe746a2202a60ce5efd56748a4f12f3, slot: 5258 +2024-09-22T00:45:09.605458Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5258 +2024-09-22T00:45:09.605481Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5258 +2024-09-22T00:45:09.618836Z INFO fork_choice_control::block_processor: Validating block with slot: 5259 +2024-09-22T00:45:09.619901Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x10ba57ec4dc128e7156dfa5419e241d09c16768c3818c97cbee96dd0f4cd7656, slot: 5259 +2024-09-22T00:45:09.627025Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5259 +2024-09-22T00:45:09.627043Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5259 +2024-09-22T00:45:09.641531Z INFO fork_choice_control::block_processor: Validating block with slot: 5260 +2024-09-22T00:45:09.642595Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x91d88fa0188fb43f4d52f26cbe23f7a21405ff8b507ef201e02aaa49e8a732eb, slot: 5260 +2024-09-22T00:45:09.649288Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5260 +2024-09-22T00:45:09.649304Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5260 +2024-09-22T00:45:09.663382Z INFO fork_choice_control::block_processor: Validating block with slot: 5261 +2024-09-22T00:45:09.664448Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2966eb7b15ab9f15af0bb63dc98e89f397737dc9d8e04a49a4e535c91f4117dd, slot: 5261 +2024-09-22T00:45:09.670177Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5261 +2024-09-22T00:45:09.670191Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5261 +2024-09-22T00:45:09.683412Z INFO fork_choice_control::block_processor: Validating block with slot: 5263 +2024-09-22T00:45:09.689307Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x66aae9ce7aa82ad5452f4638d90028b97d4beebd8415dac53958dd4174de0f3e, slot: 5263 +2024-09-22T00:45:09.712542Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5263 +2024-09-22T00:45:09.712562Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5263 +2024-09-22T00:45:09.727673Z INFO fork_choice_control::block_processor: Validating block with slot: 5264 +2024-09-22T00:45:09.728733Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1adaa174173668370df0bb015334543d72d59474f2c12d150ea88ae4f78983f5, slot: 5264 +2024-09-22T00:45:09.735387Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5264 +2024-09-22T00:45:09.735405Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5264 +2024-09-22T00:45:09.750630Z INFO fork_choice_control::block_processor: Validating block with slot: 5265 +2024-09-22T00:45:09.751762Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3e4e093dfc11ea5bbfd2d29c71d79ac0e360f5c94a4e545c3757a9dd24b05fa2, slot: 5265 +2024-09-22T00:45:09.759554Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5265 +2024-09-22T00:45:09.759579Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5265 +2024-09-22T00:45:09.774991Z INFO fork_choice_control::block_processor: Validating block with slot: 5266 +2024-09-22T00:45:09.776830Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x78b4242ae0404de5ddaf213fb48e916a84ae2338b32f3a4edfa16aa557faebda, slot: 5266 +2024-09-22T00:45:09.785884Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5266 +2024-09-22T00:45:09.785898Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5266 +2024-09-22T00:45:09.801153Z INFO fork_choice_control::block_processor: Validating block with slot: 5267 +2024-09-22T00:45:09.802268Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1cee771536b1202ad1794d9ed2e54744a3333b248bab6277f201f15d82ea800b, slot: 5267 +2024-09-22T00:45:09.809541Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5267 +2024-09-22T00:45:09.809563Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5267 +2024-09-22T00:45:09.825503Z INFO fork_choice_control::block_processor: Validating block with slot: 5268 +2024-09-22T00:45:09.827015Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x21470ffa17efccf8dd025407d1d31ec2ef61f05c5bc028a88ce55035b56a55d8, slot: 5268 +2024-09-22T00:45:09.834001Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5268 +2024-09-22T00:45:09.834014Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5268 +2024-09-22T00:45:09.851194Z INFO fork_choice_control::block_processor: Validating block with slot: 5269 +2024-09-22T00:45:09.852568Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe3f440b85c92ea36e7958e9d5e81a941cb1f0521f801277e562f48d7223e9a4f, slot: 5269 +2024-09-22T00:45:09.859406Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5269 +2024-09-22T00:45:09.859426Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5269 +2024-09-22T00:45:09.874829Z INFO fork_choice_control::block_processor: Validating block with slot: 5270 +2024-09-22T00:45:09.876770Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5d3ab88dd230d012ca7932fbce11148e7374300a4522c6b59b6a1717b8c26ac1, slot: 5270 +2024-09-22T00:45:09.885363Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5270 +2024-09-22T00:45:09.885380Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5270 +2024-09-22T00:45:09.901715Z INFO fork_choice_control::block_processor: Validating block with slot: 5271 +2024-09-22T00:45:09.903003Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x374ec317f741976001511188cdfc0d0c8ed2141c0b2e8e6e6aba6474d300268c, slot: 5271 +2024-09-22T00:45:09.911802Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5271 +2024-09-22T00:45:09.911845Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5271 +2024-09-22T00:45:09.985311Z INFO fork_choice_control::block_processor: Validating block with slot: 5272 +2024-09-22T00:45:09.985393Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 163, root: 0xfb59ca3479c6f35fee8c4043fbb1066127ce748bf09c3fa055a7f0b29f2c6564, head slot: 5271, head root: 0x374ec317f741976001511188cdfc0d0c8ed2141c0b2e8e6e6aba6474d300268c) +2024-09-22T00:45:09.986465Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3328975dac974f969ce8b1930cbf83ba822db550059cf3ad744dd539d5a5dd1f, slot: 5272 +2024-09-22T00:45:09.993463Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5272 +2024-09-22T00:45:09.993486Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5272 +2024-09-22T00:45:10.011393Z INFO fork_choice_control::block_processor: Validating block with slot: 5273 +2024-09-22T00:45:10.013361Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x29c78642589853e39579bd94ac6c39b55787c5ac076b878b179456d0d87c0c9c, slot: 5273 +2024-09-22T00:45:10.022411Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5273 +2024-09-22T00:45:10.022433Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5273 +2024-09-22T00:45:10.040778Z INFO fork_choice_control::block_processor: Validating block with slot: 5274 +2024-09-22T00:45:10.042612Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa1fc07677b69b89bb1c6ecb9504e3b2749630d68f61e6212207f0a7d101793c6, slot: 5274 +2024-09-22T00:45:10.051093Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5274 +2024-09-22T00:45:10.051110Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5274 +2024-09-22T00:45:10.069794Z INFO fork_choice_control::block_processor: Validating block with slot: 5275 +2024-09-22T00:45:10.071161Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbf5094c066cf31702b9e1a2ee7ac0becbd191806fe874100f12542536cdcdf71, slot: 5275 +2024-09-22T00:45:10.079286Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5275 +2024-09-22T00:45:10.079307Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5275 +2024-09-22T00:45:10.099313Z INFO fork_choice_control::block_processor: Validating block with slot: 5276 +2024-09-22T00:45:10.101100Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9936a323d6e308ef7415b0c68b9d4fd2a715a83138b179630dcac39b8bfa2a3d, slot: 5276 +2024-09-22T00:45:10.111708Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5276 +2024-09-22T00:45:10.111731Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5276 +2024-09-22T00:45:10.129869Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 5216 +2024-09-22T00:45:10.131737Z INFO fork_choice_control::block_processor: Validating block with slot: 5277 +2024-09-22T00:45:10.133027Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4b1988e7976bb428c8cc88a5bacf00dadc84531feeffc29d1fdeba6e5a293a14, slot: 5277 +2024-09-22T00:45:10.141133Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5277 +2024-09-22T00:45:10.141158Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5277 +2024-09-22T00:45:10.161525Z INFO fork_choice_control::block_processor: Validating block with slot: 5278 +2024-09-22T00:45:10.162666Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd6aec8d61a78f487db5d13c702c24eacdf62f0f8a97babe92928521d4d097f44, slot: 5278 +2024-09-22T00:45:10.169708Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5278 +2024-09-22T00:45:10.169725Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5278 +2024-09-22T00:45:10.190757Z INFO fork_choice_control::block_processor: Validating block with slot: 5279 +2024-09-22T00:45:10.192217Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdf09270616820b70dfd6eea5157e8c9a35bc1edae549c387a3259cf6750eb781, slot: 5279 +2024-09-22T00:45:10.204855Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5279 +2024-09-22T00:45:10.204878Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5279 +2024-09-22T00:45:10.229275Z INFO fork_choice_control::block_processor: Validating block with slot: 5280 +2024-09-22T00:45:10.232491Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd18aa674b72610db4950b2705a4d10153a843bd7a50185f3b0a1673248dd032f, slot: 5280 +2024-09-22T00:45:10.347162Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5280 +2024-09-22T00:45:10.347190Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5280 +2024-09-22T00:45:10.359267Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5280) +2024-09-22T00:45:10.359400Z INFO fork_choice_control::block_processor: Validating block with slot: 5281 +2024-09-22T00:45:10.360753Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd582f8ea35b3d64aaf4b74892a6164a97c5e0f28e1b7efeeebb0646e32aa4be7, slot: 5281 +2024-09-22T00:45:10.468370Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5281 +2024-09-22T00:45:10.468398Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5281 +2024-09-22T00:45:10.481129Z INFO fork_choice_control::block_processor: Validating block with slot: 5282 +2024-09-22T00:45:10.484107Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc3c6d88546100adb2187e0a964cb8d362fc6e51f6db60a9d6bd5d86f0ea95b17, slot: 5282 +2024-09-22T00:45:10.499110Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5282 +2024-09-22T00:45:10.499139Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5282 +2024-09-22T00:45:10.512466Z INFO fork_choice_control::block_processor: Validating block with slot: 5283 +2024-09-22T00:45:10.513614Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x091eaa326e0c899ad0aecce4d94f1988e9abe59080c7e50480661cfe32aaffda, slot: 5283 +2024-09-22T00:45:10.521629Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5283 +2024-09-22T00:45:10.521672Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5283 +2024-09-22T00:45:10.535046Z INFO fork_choice_control::block_processor: Validating block with slot: 5284 +2024-09-22T00:45:10.536146Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x23c48344557d45e6b037e37e6f03dcb238be315bb5897cdfc723731a2f2fe6c6, slot: 5284 +2024-09-22T00:45:10.548798Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5284 +2024-09-22T00:45:10.548826Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5284 +2024-09-22T00:45:10.565296Z INFO fork_choice_control::block_processor: Validating block with slot: 5285 +2024-09-22T00:45:10.567793Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x476e9a6721a081eec61a05fda2d86ca9536005e73db9e704a0eaf084b7f9e6f8, slot: 5285 +2024-09-22T00:45:10.584105Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5285 +2024-09-22T00:45:10.584129Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5285 +2024-09-22T00:45:10.597982Z INFO fork_choice_control::block_processor: Validating block with slot: 5286 +2024-09-22T00:45:10.599266Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8c591a2235b160b82108ff3065347dd701d00ca77f167ca740046564bdf191c2, slot: 5286 +2024-09-22T00:45:10.607670Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5286 +2024-09-22T00:45:10.607698Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5286 +2024-09-22T00:45:10.621282Z INFO fork_choice_control::block_processor: Validating block with slot: 5287 +2024-09-22T00:45:10.622764Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7f00d9a36c6c5a3c891c3f7b19032bd1150474f942d785010e61e7e85d7506a4, slot: 5287 +2024-09-22T00:45:10.632173Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5287 +2024-09-22T00:45:10.632194Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5287 +2024-09-22T00:45:10.646828Z INFO fork_choice_control::block_processor: Validating block with slot: 5288 +2024-09-22T00:45:10.647913Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x89ccabe4a66deb3f5531b65efbcfeaa5f3fd614a2735738f0ef29752162761d4, slot: 5288 +2024-09-22T00:45:10.654390Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5288 +2024-09-22T00:45:10.654406Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5288 +2024-09-22T00:45:10.668172Z INFO fork_choice_control::block_processor: Validating block with slot: 5289 +2024-09-22T00:45:10.669472Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4d757137bdde2aeb4a3a9443c652dcd3e1e882facb77894cef7004bc455f0702, slot: 5289 +2024-09-22T00:45:10.677031Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5289 +2024-09-22T00:45:10.677052Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5289 +2024-09-22T00:45:10.690298Z INFO fork_choice_control::block_processor: Validating block with slot: 5290 +2024-09-22T00:45:10.694156Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb4f86fccff2d7e4c6c29c1c23c52aee28131086a18f81185d46dd63acce0f975, slot: 5290 +2024-09-22T00:45:10.707526Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5290 +2024-09-22T00:45:10.707565Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5290 +2024-09-22T00:45:10.722491Z INFO fork_choice_control::block_processor: Validating block with slot: 5291 +2024-09-22T00:45:10.724044Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf997617fcb45d8e309508ffbfc6569680e13ac2918f3572bb18bff5916b802c4, slot: 5291 +2024-09-22T00:45:10.730825Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5291 +2024-09-22T00:45:10.730837Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5291 +2024-09-22T00:45:10.745330Z INFO fork_choice_control::block_processor: Validating block with slot: 5293 +2024-09-22T00:45:10.747169Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x08bfb7b1f1cfb4c9b13087c148247a0c3dc08f8b1f6d6ebfb7b2a64b59f42b5d, slot: 5293 +2024-09-22T00:45:10.756900Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5293 +2024-09-22T00:45:10.756924Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5293 +2024-09-22T00:45:10.772163Z INFO fork_choice_control::block_processor: Validating block with slot: 5294 +2024-09-22T00:45:10.773247Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd4f3af0a1e30b41e5741175a36235a2d3473a4fd49f41c2125825ab3ce0613ff, slot: 5294 +2024-09-22T00:45:10.780948Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5294 +2024-09-22T00:45:10.780968Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5294 +2024-09-22T00:45:10.795885Z INFO fork_choice_control::block_processor: Validating block with slot: 5295 +2024-09-22T00:45:10.797443Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa6f8f3cad2ff7cdfb43387a605af7d86fbfcd12df3924b08adbc5ec2cd8e7989, slot: 5295 +2024-09-22T00:45:10.804522Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5295 +2024-09-22T00:45:10.804539Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5295 +2024-09-22T00:45:10.820321Z INFO fork_choice_control::block_processor: Validating block with slot: 5296 +2024-09-22T00:45:10.821382Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe5e5652b98a114079689fe02ef6b44ef10b95a5eaa1cea42e230d21afbb3274f, slot: 5296 +2024-09-22T00:45:10.827342Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5296 +2024-09-22T00:45:10.827361Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5296 +2024-09-22T00:45:10.843458Z INFO fork_choice_control::block_processor: Validating block with slot: 5297 +2024-09-22T00:45:10.844824Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2ff3a0bee0b434624a29af148936b0148cb24527eff0b74d28cbddc208df62de, slot: 5297 +2024-09-22T00:45:10.851655Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5297 +2024-09-22T00:45:10.851674Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5297 +2024-09-22T00:45:10.866713Z INFO fork_choice_control::block_processor: Validating block with slot: 5298 +2024-09-22T00:45:10.868379Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0e1b0579f298549ad3586d94ba324a4de71eb15c859d4d848ba2fa141e9ac215, slot: 5298 +2024-09-22T00:45:10.876078Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5298 +2024-09-22T00:45:10.876099Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5298 +2024-09-22T00:45:10.891677Z INFO fork_choice_control::block_processor: Validating block with slot: 5299 +2024-09-22T00:45:10.893872Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf2b5f8ab5a0dbf4bc1526ccafb0e1d7f0471976d7254b1ac6578edff9a98f6a3, slot: 5299 +2024-09-22T00:45:10.902641Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5299 +2024-09-22T00:45:10.902658Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5299 +2024-09-22T00:45:10.918708Z INFO fork_choice_control::block_processor: Validating block with slot: 5300 +2024-09-22T00:45:10.919770Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa599a2ea19f6fcac2118b27abe14a4ac09cf252adad9f923d031530bd4d98532, slot: 5300 +2024-09-22T00:45:10.925747Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5300 +2024-09-22T00:45:10.925766Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5300 +2024-09-22T00:45:10.941681Z INFO fork_choice_control::block_processor: Validating block with slot: 5302 +2024-09-22T00:45:10.943652Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf3456b7cefb6f6384a1b245d033163aeaa6cc094e6bd55298d8ca2fe99324f5f, slot: 5302 +2024-09-22T00:45:10.953383Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5302 +2024-09-22T00:45:10.953398Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5302 +2024-09-22T00:45:10.969894Z INFO fork_choice_control::block_processor: Validating block with slot: 5303 +2024-09-22T00:45:10.971263Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe60e7ba0e2caccfe536480c5bed6c531570998800e268b289fbb8dacca310dbb, slot: 5303 +2024-09-22T00:45:10.979320Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5303 +2024-09-22T00:45:10.979342Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5303 +2024-09-22T00:45:11.002195Z INFO fork_choice_control::block_processor: Validating block with slot: 5304 +2024-09-22T00:45:11.002203Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 164, root: 0xac09760b52fcf6db74c2a0b22954933111ad64afbc5e9f385903ed192c7a4ff5, head slot: 5303, head root: 0xe60e7ba0e2caccfe536480c5bed6c531570998800e268b289fbb8dacca310dbb) +2024-09-22T00:45:11.003253Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2aee48043920c142635e2fbea96278e8c0488887e95395da9fca39578b658fc2, slot: 5304 +2024-09-22T00:45:11.009458Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5304 +2024-09-22T00:45:11.009481Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5304 +2024-09-22T00:45:11.026559Z INFO fork_choice_control::block_processor: Validating block with slot: 5305 +2024-09-22T00:45:11.027602Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9fe11aa12c7e1f1ee8cf317b61012de1931dc93fab1184d45b7d815c6c5c2e4e, slot: 5305 +2024-09-22T00:45:11.033378Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5305 +2024-09-22T00:45:11.033397Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5305 +2024-09-22T00:45:11.051543Z INFO fork_choice_control::block_processor: Validating block with slot: 5306 +2024-09-22T00:45:11.054284Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x30ea7000b476f35daff5dc77f94dc05563794ecf2396bf4fec79bd0c5aca8ce0, slot: 5306 +2024-09-22T00:45:11.065915Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5306 +2024-09-22T00:45:11.065939Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5306 +2024-09-22T00:45:11.083336Z INFO fork_choice_control::block_processor: Validating block with slot: 5307 +2024-09-22T00:45:11.084450Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe67584c4e3c1bcb75f674a9944854ec56ec484799b0826f1fbabb9bd06fba656, slot: 5307 +2024-09-22T00:45:11.091710Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5307 +2024-09-22T00:45:11.091734Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5307 +2024-09-22T00:45:11.109600Z INFO fork_choice_control::block_processor: Validating block with slot: 5308 +2024-09-22T00:45:11.110725Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb8b205acd5deed84f625a77625ab1c8c3b46df611e3c00295cc2d3c82c4a89ed, slot: 5308 +2024-09-22T00:45:11.116880Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5308 +2024-09-22T00:45:11.116896Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5308 +2024-09-22T00:45:11.134147Z INFO fork_choice_control::block_processor: Validating block with slot: 5309 +2024-09-22T00:45:11.136203Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4f6044248b2a9d2c40ba7557fecd81ee4dc306759bc2fb36752d36a1f8dae294, slot: 5309 +2024-09-22T00:45:11.145107Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5309 +2024-09-22T00:45:11.145127Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5309 +2024-09-22T00:45:11.162795Z INFO fork_choice_control::block_processor: Validating block with slot: 5310 +2024-09-22T00:45:11.163915Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0dfc84edbf6aadf8c8ec8d99e6372d1272e5480e152bc5912591aa992905be4d, slot: 5310 +2024-09-22T00:45:11.170048Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5310 +2024-09-22T00:45:11.170067Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5310 +2024-09-22T00:45:11.190181Z INFO fork_choice_control::block_processor: Validating block with slot: 5311 +2024-09-22T00:45:11.191891Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe674ac6fa1214b764194ee697e65ef20a66d2b6ab86086315f0c40e47038f88b, slot: 5311 +2024-09-22T00:45:11.201856Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5311 +2024-09-22T00:45:11.201879Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5311 +2024-09-22T00:45:11.231579Z INFO fork_choice_control::block_processor: Validating block with slot: 5312 +2024-09-22T00:45:11.232736Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9de527c52eed95ae2874e5f0afe221296ba5dd688fea8fe4c20575ddc339d949, slot: 5312 +2024-09-22T00:45:11.339082Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5312 +2024-09-22T00:45:11.339116Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5312 +2024-09-22T00:45:11.349991Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5312) +2024-09-22T00:45:11.350147Z INFO fork_choice_control::block_processor: Validating block with slot: 5313 +2024-09-22T00:45:11.352743Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x640ee55cf05b412d14ce0770e9a9642e279801a87548c0a844d4720a8adeb9b2, slot: 5313 +2024-09-22T00:45:11.435555Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5313 +2024-09-22T00:45:11.435576Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5313 +2024-09-22T00:45:11.447114Z INFO fork_choice_control::block_processor: Validating block with slot: 5314 +2024-09-22T00:45:11.448206Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8976531daf8452bd5e21c64e2548caf0b6f70f62ac539b9a3e98022b734caee6, slot: 5314 +2024-09-22T00:45:11.455207Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5314 +2024-09-22T00:45:11.455229Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5314 +2024-09-22T00:45:11.467226Z INFO fork_choice_control::block_processor: Validating block with slot: 5315 +2024-09-22T00:45:11.468898Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x52a5e20d35e2a23ee17c137990ca185f9ae3982d20e8d4de4afdbd8753d89fca, slot: 5315 +2024-09-22T00:45:11.478030Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5315 +2024-09-22T00:45:11.478050Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5315 +2024-09-22T00:45:11.490585Z INFO fork_choice_control::block_processor: Validating block with slot: 5316 +2024-09-22T00:45:11.491681Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2a40aabc40f5331f79a2542f1abc2bee73d1dcddd46762f55cc6e37d85c330c1, slot: 5316 +2024-09-22T00:45:11.497840Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5316 +2024-09-22T00:45:11.497861Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5316 +2024-09-22T00:45:11.511142Z INFO fork_choice_control::block_processor: Validating block with slot: 5317 +2024-09-22T00:45:11.513696Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2a6b9f9728830f60e2c90cfe874abb79ca22e51014968727b88dcc531a00fd11, slot: 5317 +2024-09-22T00:45:11.524898Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5317 +2024-09-22T00:45:11.524924Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5317 +2024-09-22T00:45:11.539361Z INFO fork_choice_control::block_processor: Validating block with slot: 5318 +2024-09-22T00:45:11.541382Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x33dd405336955e8ca2b1c7ca5e6e54062f57cc3ebdf3c7f845d8947961e0b235, slot: 5318 +2024-09-22T00:45:11.551266Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5318 +2024-09-22T00:45:11.551289Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5318 +2024-09-22T00:45:11.566007Z INFO fork_choice_control::block_processor: Validating block with slot: 5319 +2024-09-22T00:45:11.567763Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x30da3aee07441ada14c4db011a4705c6126a1b0690ce8cfb19cccda5f043e5e2, slot: 5319 +2024-09-22T00:45:11.575152Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5319 +2024-09-22T00:45:11.575183Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5319 +2024-09-22T00:45:11.589022Z INFO fork_choice_control::block_processor: Validating block with slot: 5320 +2024-09-22T00:45:11.590552Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xca31d0babca4fc0bbb1652b7b93650464f28d6cde67fabce763201866f1309ba, slot: 5320 +2024-09-22T00:45:11.598209Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5320 +2024-09-22T00:45:11.598230Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5320 +2024-09-22T00:45:11.613204Z INFO fork_choice_control::block_processor: Validating block with slot: 5322 +2024-09-22T00:45:11.615698Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2f66f3165671aaca0ee13a1858e1a1c536348badec6f7b3635977e837795dcf8, slot: 5322 +2024-09-22T00:45:11.627984Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5322 +2024-09-22T00:45:11.628005Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5322 +2024-09-22T00:45:11.643747Z INFO fork_choice_control::block_processor: Validating block with slot: 5323 +2024-09-22T00:45:11.644917Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc2876aed4e2ee78267fb0e64c353a4e47aab51c38dfc182bbf4a701360e3aa73, slot: 5323 +2024-09-22T00:45:11.652116Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5323 +2024-09-22T00:45:11.652140Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5323 +2024-09-22T00:45:11.668166Z INFO fork_choice_control::block_processor: Validating block with slot: 5324 +2024-09-22T00:45:11.669463Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7e9bd30f944c18738909cba532c77601bab6d55229be4724c86b4d79c9666f1d, slot: 5324 +2024-09-22T00:45:11.678109Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5324 +2024-09-22T00:45:11.678132Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5324 +2024-09-22T00:45:11.694355Z INFO fork_choice_control::block_processor: Validating block with slot: 5325 +2024-09-22T00:45:11.697086Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8ed40647b10cb14665de3976ea18cebd4ce8968c9b9b596003eb50b875256cda, slot: 5325 +2024-09-22T00:45:11.707430Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5325 +2024-09-22T00:45:11.707460Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5325 +2024-09-22T00:45:11.723593Z INFO fork_choice_control::block_processor: Validating block with slot: 5326 +2024-09-22T00:45:11.724899Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x27cd161e8f888dcbef7e06ead51f7c208af05759f9107cd28c3d96a1277e255c, slot: 5326 +2024-09-22T00:45:11.731619Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5326 +2024-09-22T00:45:11.731640Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5326 +2024-09-22T00:45:11.746839Z INFO fork_choice_control::block_processor: Validating block with slot: 5327 +2024-09-22T00:45:11.749268Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa129507cdef32aa50b306f8f9a33f758bf549cbbce10d5e1e5966ba6b8e36211, slot: 5327 +2024-09-22T00:45:11.760281Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5327 +2024-09-22T00:45:11.760302Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5327 +2024-09-22T00:45:11.776058Z INFO fork_choice_control::block_processor: Validating block with slot: 5328 +2024-09-22T00:45:11.777128Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc2aa2fb476dd8cc74f4e8e79c73c477750c63ac30bfb5a9b1a1538ea29e9b6d1, slot: 5328 +2024-09-22T00:45:11.783979Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5328 +2024-09-22T00:45:11.783999Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5328 +2024-09-22T00:45:11.800400Z INFO fork_choice_control::block_processor: Validating block with slot: 5329 +2024-09-22T00:45:11.801467Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x86cfca35d40d38aadb2fa35c114562cb5b6e3cf8fba14875ac52cca1f1847eae, slot: 5329 +2024-09-22T00:45:11.808755Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5329 +2024-09-22T00:45:11.808780Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5329 +2024-09-22T00:45:11.824961Z INFO fork_choice_control::block_processor: Validating block with slot: 5330 +2024-09-22T00:45:11.827768Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x67a8b4c8d2f3aa21468b38fa306a89feb82af8e77df02a76c2a5644f3ee7f49b, slot: 5330 +2024-09-22T00:45:11.851776Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5330 +2024-09-22T00:45:11.851973Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5330 +2024-09-22T00:45:11.872717Z INFO fork_choice_control::block_processor: Validating block with slot: 5331 +2024-09-22T00:45:11.873731Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0dbe74076ac048e4c8cfece7ace139cb05d6cc24d9b5dad251525d81deb5fc2f, slot: 5331 +2024-09-22T00:45:11.879496Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5331 +2024-09-22T00:45:11.879513Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5331 +2024-09-22T00:45:11.895050Z INFO fork_choice_control::block_processor: Validating block with slot: 5332 +2024-09-22T00:45:11.896838Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3c7f494e1283de662e28f5c855c5aa310ec3a5c0abbbe68cb396f92bb1539593, slot: 5332 +2024-09-22T00:45:11.905141Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5332 +2024-09-22T00:45:11.905163Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5332 +2024-09-22T00:45:11.921455Z INFO fork_choice_control::block_processor: Validating block with slot: 5333 +2024-09-22T00:45:11.923928Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8104e80ab099c4160344bc0cce9d7a799f4a6cf68593416470a2baa8baa58048, slot: 5333 +2024-09-22T00:45:11.932659Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5333 +2024-09-22T00:45:11.932678Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5333 +2024-09-22T00:45:11.951356Z INFO fork_choice_control::block_processor: Validating block with slot: 5334 +2024-09-22T00:45:11.952654Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc8f4829efce9874406569db5d012126c666326c257f67b20b72504a5d8162f62, slot: 5334 +2024-09-22T00:45:11.959781Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5334 +2024-09-22T00:45:11.959805Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5334 +2024-09-22T00:45:11.978057Z INFO fork_choice_control::block_processor: Validating block with slot: 5335 +2024-09-22T00:45:11.979121Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x11c06cfc13dd15b946a4536fb3302eaae79afe1fdbfb740d24bc5ea76766a027, slot: 5335 +2024-09-22T00:45:11.985272Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5335 +2024-09-22T00:45:11.985293Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5335 +2024-09-22T00:45:12.011087Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 165, root: 0xd18aa674b72610db4950b2705a4d10153a843bd7a50185f3b0a1673248dd032f, head slot: 5335, head root: 0x11c06cfc13dd15b946a4536fb3302eaae79afe1fdbfb740d24bc5ea76766a027) +2024-09-22T00:45:12.011127Z INFO fork_choice_control::block_processor: Validating block with slot: 5336 +2024-09-22T00:45:12.012246Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7d9644135f3cb37e47d82b6a9e5c8698b1a9c2fcb43bf0b423070e62a72d90f1, slot: 5336 +2024-09-22T00:45:12.019056Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5336 +2024-09-22T00:45:12.019076Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5336 +2024-09-22T00:45:12.037040Z INFO fork_choice_control::block_processor: Validating block with slot: 5337 +2024-09-22T00:45:12.039593Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5e442c6991f45f69e1aa74546f67daf713bacaaa50d2b8bb3f1f6261a5cfcd8c, slot: 5337 +2024-09-22T00:45:12.051882Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5337 +2024-09-22T00:45:12.051907Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5337 +2024-09-22T00:45:12.075771Z INFO fork_choice_control::block_processor: Validating block with slot: 5338 +2024-09-22T00:45:12.077253Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaf22745923f24694175bcb4a2e03ce2a7772930fb83864645849d7177a1ebd85, slot: 5338 +2024-09-22T00:45:12.084264Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5338 +2024-09-22T00:45:12.084288Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5338 +2024-09-22T00:45:12.104038Z INFO fork_choice_control::block_processor: Validating block with slot: 5339 +2024-09-22T00:45:12.105510Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfe73a9fa34e21ee89428bcc04710bf5c3f8c8f65d4d17e31a935855977776273, slot: 5339 +2024-09-22T00:45:12.113380Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5339 +2024-09-22T00:45:12.113403Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5339 +2024-09-22T00:45:12.133227Z INFO fork_choice_control::block_processor: Validating block with slot: 5340 +2024-09-22T00:45:12.134819Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfc490025527b7f45546cf271cdf38077b9ebc11669930b748e0587f6351d1af4, slot: 5340 +2024-09-22T00:45:12.146234Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5340 +2024-09-22T00:45:12.146343Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5340 +2024-09-22T00:45:12.161463Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 5280 +2024-09-22T00:45:12.180037Z INFO fork_choice_control::block_processor: Validating block with slot: 5341 +2024-09-22T00:45:12.183322Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7b5c6d8128d955e9a5b97869e462b1bfe39d18c74f1ea7dba44b6b8e26779601, slot: 5341 +2024-09-22T00:45:12.203490Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5341 +2024-09-22T00:45:12.203517Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5341 +2024-09-22T00:45:12.226602Z INFO fork_choice_control::block_processor: Validating block with slot: 5342 +2024-09-22T00:45:12.227693Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x549f9a14e123324d1d975e6fee421e24df0383a2c0494775834b304e56c19b29, slot: 5342 +2024-09-22T00:45:12.238556Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5342 +2024-09-22T00:45:12.238584Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5342 +2024-09-22T00:45:12.264447Z INFO fork_choice_control::block_processor: Validating block with slot: 5343 +2024-09-22T00:45:12.265907Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc25531ad694d80ce69c64323bf3673d6763de38d26ba4330e119d1b4a1923e37, slot: 5343 +2024-09-22T00:45:12.276680Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5343 +2024-09-22T00:45:12.276704Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5343 +2024-09-22T00:45:12.300090Z INFO fork_choice_control::block_processor: Validating block with slot: 5344 +2024-09-22T00:45:12.302912Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6baffbe5bcbeb94e890a450eeb83eb38bca73358559adb1d585ee1641d4e81d6, slot: 5344 +2024-09-22T00:45:12.429271Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5344 +2024-09-22T00:45:12.429298Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5344 +2024-09-22T00:45:12.442891Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5344) +2024-09-22T00:45:12.443065Z INFO fork_choice_control::block_processor: Validating block with slot: 5345 +2024-09-22T00:45:12.444124Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfc5ad5e2b373f195fe0f771362692f11a5b03accd3dc191d368bb219ebb1914a, slot: 5345 +2024-09-22T00:45:12.527949Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5345 +2024-09-22T00:45:12.527973Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5345 +2024-09-22T00:45:12.540907Z INFO fork_choice_control::block_processor: Validating block with slot: 5347 +2024-09-22T00:45:12.543347Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbb273bdf004cc8e648b7fc73879498e96a7d7a413879a0879ceb7f1896ab9fb0, slot: 5347 +2024-09-22T00:45:12.555188Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5347 +2024-09-22T00:45:12.555211Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5347 +2024-09-22T00:45:12.568443Z INFO fork_choice_control::block_processor: Validating block with slot: 5348 +2024-09-22T00:45:12.569658Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc57d2011068b2e86d449958e74033343dfabc502b9e02ac5307bd7dc586fee48, slot: 5348 +2024-09-22T00:45:12.577774Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5348 +2024-09-22T00:45:12.577798Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5348 +2024-09-22T00:45:12.591859Z INFO fork_choice_control::block_processor: Validating block with slot: 5350 +2024-09-22T00:45:12.595100Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa995fbf06b54b21f847e6c2390d8189174eea4098b4c528db15be4f9113adae7, slot: 5350 +2024-09-22T00:45:12.612673Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5350 +2024-09-22T00:45:12.612695Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5350 +2024-09-22T00:45:12.628127Z INFO fork_choice_control::block_processor: Validating block with slot: 5351 +2024-09-22T00:45:12.629492Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x73d4489c9124f5a1fdcd12d7f61627b83e324565be7a93a954d0e1c13c935d30, slot: 5351 +2024-09-22T00:45:12.639243Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5351 +2024-09-22T00:45:12.639269Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5351 +2024-09-22T00:45:12.653514Z INFO fork_choice_control::block_processor: Validating block with slot: 5352 +2024-09-22T00:45:12.654570Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x602a9de5f497505fc3038dd2d16d16601514257a7baa5c0fa102cba82bf3cc44, slot: 5352 +2024-09-22T00:45:12.662396Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5352 +2024-09-22T00:45:12.662418Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5352 +2024-09-22T00:45:12.677305Z INFO fork_choice_control::block_processor: Validating block with slot: 5354 +2024-09-22T00:45:12.679771Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3e06f3aa236d831aaffa1fd07ceb7cda2e92ba5d56fc60d43ccf79567b93f37a, slot: 5354 +2024-09-22T00:45:12.692933Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5354 +2024-09-22T00:45:12.692958Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5354 +2024-09-22T00:45:12.708247Z INFO fork_choice_control::block_processor: Validating block with slot: 5355 +2024-09-22T00:45:12.709947Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x750663240cc8fdf40e4cc6c959f5c20fa9d215f6f6cfcf3c270bde7ff1ec040a, slot: 5355 +2024-09-22T00:45:12.717526Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5355 +2024-09-22T00:45:12.717542Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5355 +2024-09-22T00:45:12.732199Z INFO fork_choice_control::block_processor: Validating block with slot: 5356 +2024-09-22T00:45:12.733261Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x67c2007d21ca01c23ce0c9609adaa0f6353a8ad51f4e9785f50f74f83d25c12f, slot: 5356 +2024-09-22T00:45:12.738890Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5356 +2024-09-22T00:45:12.738909Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5356 +2024-09-22T00:45:12.753386Z INFO fork_choice_control::block_processor: Validating block with slot: 5357 +2024-09-22T00:45:12.755113Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3a7dc464b97e02c4971c8244641567a07a08427f73edd0d6365afdde841fdeca, slot: 5357 +2024-09-22T00:45:12.762781Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5357 +2024-09-22T00:45:12.762801Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5357 +2024-09-22T00:45:12.776820Z INFO fork_choice_control::block_processor: Validating block with slot: 5358 +2024-09-22T00:45:12.777809Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc7cce5a3fbbe6afd55e9a7c2cdf9c21a04434d8a7c6de4779359354310735f98, slot: 5358 +2024-09-22T00:45:12.783810Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5358 +2024-09-22T00:45:12.783824Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5358 +2024-09-22T00:45:12.798168Z INFO fork_choice_control::block_processor: Validating block with slot: 5359 +2024-09-22T00:45:12.799755Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc1d7f203ed56faca77b4b167c8cf535b962d2e6236ee1254f121a04d28f84dfb, slot: 5359 +2024-09-22T00:45:12.807407Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5359 +2024-09-22T00:45:12.807444Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5359 +2024-09-22T00:45:12.822591Z INFO fork_choice_control::block_processor: Validating block with slot: 5360 +2024-09-22T00:45:12.823821Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x69fa36b76ccbb0cb858b3a40c3b194a1d3f6379645a921066626d0b652ec0852, slot: 5360 +2024-09-22T00:45:12.831431Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5360 +2024-09-22T00:45:12.831451Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5360 +2024-09-22T00:45:12.847553Z INFO fork_choice_control::block_processor: Validating block with slot: 5362 +2024-09-22T00:45:12.849327Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xea3dd5bba889081207beefd34ff0570350c6ca007e7d1a4f3296a9e7ccf6b750, slot: 5362 +2024-09-22T00:45:12.860171Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5362 +2024-09-22T00:45:12.860193Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5362 +2024-09-22T00:45:12.876312Z INFO fork_choice_control::block_processor: Validating block with slot: 5363 +2024-09-22T00:45:12.877407Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0a82fcabd75332e78031050ef414ae7091de2f5f3e3dc8df6561df8fdb9c42a3, slot: 5363 +2024-09-22T00:45:12.884178Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5363 +2024-09-22T00:45:12.884195Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5363 +2024-09-22T00:45:12.901112Z INFO fork_choice_control::block_processor: Validating block with slot: 5364 +2024-09-22T00:45:12.904904Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc11877ebf57f0280648b684ccfeba85f8ad75f0a4cda93181fcf6d355caeab16, slot: 5364 +2024-09-22T00:45:12.919579Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5364 +2024-09-22T00:45:12.919601Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5364 +2024-09-22T00:45:12.937035Z INFO fork_choice_control::block_processor: Validating block with slot: 5365 +2024-09-22T00:45:12.938601Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xad2a1ffa06b9f8eaff709796fa07a080a32ebec78fe0395dba8ee1e5b3504953, slot: 5365 +2024-09-22T00:45:12.945912Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5365 +2024-09-22T00:45:12.945934Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5365 +2024-09-22T00:45:12.962509Z INFO fork_choice_control::block_processor: Validating block with slot: 5366 +2024-09-22T00:45:12.963754Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd0fd944690b4e92edc78340324a610bf40ac801bb39cb955cfaebdddecf72525, slot: 5366 +2024-09-22T00:45:12.969941Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5366 +2024-09-22T00:45:12.969957Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5366 +2024-09-22T00:45:12.987210Z INFO fork_choice_control::block_processor: Validating block with slot: 5367 +2024-09-22T00:45:12.988760Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0f8873376b15e02a2ac61c53319ef3d73babeea0caf7e8c6fdacd4e206f96add, slot: 5367 +2024-09-22T00:45:12.995618Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5367 +2024-09-22T00:45:12.995640Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5367 +2024-09-22T00:45:13.017802Z INFO fork_choice_control::block_processor: Validating block with slot: 5368 +2024-09-22T00:45:13.017827Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 166, root: 0x9de527c52eed95ae2874e5f0afe221296ba5dd688fea8fe4c20575ddc339d949, head slot: 5367, head root: 0x0f8873376b15e02a2ac61c53319ef3d73babeea0caf7e8c6fdacd4e206f96add) +2024-09-22T00:45:13.018810Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x270c2c2ccf9f79ae136fe39fb835a8a7938404cabae24fb7a88461813ea36ba3, slot: 5368 +2024-09-22T00:45:13.026442Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5368 +2024-09-22T00:45:13.026463Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5368 +2024-09-22T00:45:13.045038Z INFO fork_choice_control::block_processor: Validating block with slot: 5369 +2024-09-22T00:45:13.046064Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x78c81dd390e2a77f68cf2c64e7c4e98b7f9333c238a9e334af0bf912af5fd562, slot: 5369 +2024-09-22T00:45:13.052605Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5369 +2024-09-22T00:45:13.052620Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5369 +2024-09-22T00:45:13.069560Z INFO runtime::runtime: saving current chain before exit… +2024-09-22T00:45:13.072342Z INFO fork_choice_control::block_processor: Validating block with slot: 5370 +2024-09-22T00:45:13.073966Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc1c610bb851fbd44c5ae94c89acc81c28372bb88eca61fa0107ac88c9591a9b0, slot: 5370 +2024-09-22T00:45:13.083981Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5370 +2024-09-22T00:45:13.084003Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5370 +2024-09-22T00:45:13.165573Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 5312 +2024-09-22T00:45:13.255849Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 5312 +2024-09-22T00:45:13.717994Z INFO fork_choice_control::mutator: chain saved (finalized blocks: 1, unfinalized blocks: 52) diff --git a/metrics/src/server.rs b/metrics/src/server.rs index 98b85a95..ee089e22 100644 --- a/metrics/src/server.rs +++ b/metrics/src/server.rs @@ -22,7 +22,6 @@ use futures::channel::mpsc::UnboundedSender; use helper_functions::misc; use http_api_utils::ApiError; use tracing::{info, warn}; -use tracing_subscriber::{fmt, EnvFilter};// yet to implement use prometheus::TextEncoder; use prometheus_client::registry::Registry; use prometheus_metrics::Metrics; diff --git a/p2p/Cargo.toml b/p2p/Cargo.toml index 288dfc52..9d23fb8e 100644 --- a/p2p/Cargo.toml +++ b/p2p/Cargo.toml @@ -39,7 +39,6 @@ ssz = { workspace = true } std_ext = { workspace = true } strum = { workspace = true } tracing = { workspace = true } -tracing-subscriber = { workspace = true } thiserror = { workspace = true } tokio = { workspace = true } tokio-stream = { workspace = true } diff --git a/slashing_protection/src/interchange_format.rs b/slashing_protection/src/interchange_format.rs index e71fa30e..11512644 100644 --- a/slashing_protection/src/interchange_format.rs +++ b/slashing_protection/src/interchange_format.rs @@ -5,6 +5,7 @@ use std::path::Path; use anyhow::{ensure, Result}; use bls::PublicKeyBytes; use serde::{Deserialize, Serialize}; +use tracing::{info, error}; use thiserror::Error; use types::phase0::primitives::{Epoch, Slot, H256}; @@ -68,14 +69,17 @@ impl InterchangeFormat { } pub fn load_from_file(file: impl AsRef) -> Result { + info!("Loading interchange format from file: {:?}", file.as_ref()); let bytes = fs_err::read(file)?; let data = serde_json::from_slice(bytes.as_slice())?; + info!("Successfully loaded interchange format from file."); Ok(data) } pub fn validate(&self, genesis_validators_root: H256) -> Result<()> { let version = self.metadata.interchange_format_version; + info!("Validating interchange format version: {}", version); ensure!( version == INTERCHANGE_FORMAT_VERSION, Error::UnsupportedVersion { version }, @@ -92,6 +96,7 @@ impl InterchangeFormat { }, ); + info!("Validation successful for genesis validators root."); Ok(()) } } From e245c03723da5fee035b6ed4bfe86b1284b83c64 Mon Sep 17 00:00:00 2001 From: bomanaps Date: Wed, 9 Oct 2024 11:14:00 +0100 Subject: [PATCH 30/31] Added Timing Metrics to Fork_choice_control --- .DS_Store | Bin 0 -> 18436 bytes Cargo.lock | 2 + consensus-spec-tests | 1 - features/.DS_Store | Bin 0 -> 6148 bytes fork_choice_control/src/block_processor.rs | 118 +- fork_choice_control/src/controller.rs | 10 +- fuzz/.DS_Store | Bin 0 -> 6148 bytes fuzz/.gitignore | 4 + fuzz/Cargo.toml | 28 + fuzz/fuzz_targets/fuzz_target_1.rs | 7 + .../fuzz_targets/fuzz_validate_merge_block.rs | 98 + grandine-snapshot-tests | 2 +- logging/Cargo.toml | 2 + logging/src/lib.rs | 16 +- logs/testing.log.2024-09-30 | 14347 ++++++++++++++++ logs/testing.log.2024-10-05 | 338 + logs/testing.log.2024-10-09 | 1307 ++ predefined_chains/.DS_Store | Bin 0 -> 6148 bytes prometheus_metrics/.DS_Store | Bin 0 -> 6148 bytes scripts/.DS_Store | Bin 0 -> 6148 bytes slashing_protection/.DS_Store | Bin 0 -> 6148 bytes 21 files changed, 16258 insertions(+), 22 deletions(-) create mode 100644 .DS_Store delete mode 160000 consensus-spec-tests create mode 100644 features/.DS_Store create mode 100644 fuzz/.DS_Store create mode 100644 fuzz/.gitignore create mode 100644 fuzz/Cargo.toml create mode 100644 fuzz/fuzz_targets/fuzz_target_1.rs create mode 100644 fuzz/fuzz_targets/fuzz_validate_merge_block.rs create mode 100644 logs/testing.log.2024-09-30 create mode 100644 logs/testing.log.2024-10-05 create mode 100644 logs/testing.log.2024-10-09 create mode 100644 predefined_chains/.DS_Store create mode 100644 prometheus_metrics/.DS_Store create mode 100644 scripts/.DS_Store create mode 100644 slashing_protection/.DS_Store diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..680d94b8da158f7a3f849201079efe8460e899fc GIT binary patch literal 18436 zcmeI3e~4UH702(Jne4BGbdv_s*a)LZ3`!I8!z@Kp9pl=KNNw0;jnLBB-#^Ii&bT{U zlPI|Oqy9o&vHhbh#b8?_7OfEqYBgOO+n`OFEtF~+(Zxm)wKgF7ha&hr_q})TIq$tY z?@ee$bY^$v&CEUL-p@JrymNoNH%cjQ-`wy{rAkVvHazLrxe70zQL2dJ4tgIvsGOd$ zM;_mJ_`eRv0`!#{QZ-dkGwRq>B_8yM%4h<@9rL)tPG;0?JK8#((}bz zpME#qufTJSs-lGvHH_z|no!gFeHpsrsDVDuPF04D_5&Yz;oRR3llBciquQV|0=XLA zHy=$8G(FJtK+^+F5BxuR0An{j+E)6<=4;afO%F6ZU_3zip@=6POTls8KkC$h7n;6P zIZfg91Mjg8(BBnUDTUO<_GP=Pb`v2hPe;KUcv$e@r|BdPjJ6p85t=Mgt!>&RN z7Qt3wk^1;iSQL@q>~r^Q+507b?;<8;_bA*_f=4Z)F|;-d&ys(uV3HnIZ~s7Cg7fsZ z8DB=~;a+n~NuDL*SqYvI@X&rt8J;3PO-8wH`GH%K^F4C!&%?bQN4=agU0U*9A>MZI zj)QX)f0JOHR%5bHH{O*j#W@$AGn@(aamM%9_`ny@Y%5%nhWj$H~yxb%%nVeWcWTd+QSZCVii z&o9D3>e`t9%SrwhapHBnoL!Uq?QakLBJ^9vc6pRHt}X2K`a^rC5&uC?WfMWp zJXiX2U~dLZZtn{{&xCo8?9HTYW1w+uVXrzs_FjW_tNKjJVCP0kr70TRzTJn6eW_a3 zuIyUU9-T+?uxC~s7x9=|-U{xZg!6UXVfaj`<%pMx_VUZ9RCW06AxdZ@r1AOA=xm|y z9WFV}a(4Z>FcuQ)&5xaniV2(^o)fydJ_kx^fbk*KGTXTavS$-}JU5!4o8~xl*cCXQPA45Eh!hTwRl(qeI&e3%}Tz`}?lJCf-#ceH& zJ{z8c8QSAkHl``;^S3-!z=mTw6U&|}e4XYgtW@w$8(tw{W4w?kA=+=zan+8zHK1q4 z!-@XPwa``A1S!t5`*jyW|0POVuKJRKFIPpwn1{sp5CKP!9VjLo`D{I1kItyc?U=pQ z*pXS=+Sa(XuvhIMdtckf0IDyj?Z{@xA^g1Ad(&ON;bq(_FMV}zU*8Ay6?vn}&w-?J zZrR?Om&mHtuwA_#8|1BHkftm25ed%l{IgGl5f+oOJ>Zt&Ji(sjD#SaDGvml1LpTm1 zrYMt+OR}y%g3Kw)8JBvC;pkXL-qL1~m)r-)kL~(=oz&Ec8PJ*SPavI(5)biSjNV>mf8<^bZvQMi0&2QT zse*hmhYS*p8L#)7V6Q9B`EU8LiIWr^8yi`5gdM*B^V$v>2WtOqAP!16+uFO0Z%wJC zh?k1?{2k2#+NRXwDdTOv?=jORE4QsCmCJUoplYmy2GKjTTj{UZ%80nC znvfJnKqT)5axPEy*$Fwr3J571O(=OLt%VL#^c|SrJU>J8g}=b(dR755~6*7 z<=6&4(fBd|ztO&6WX(9d4iqsN&eAhve3T$(`>&py>vdBwrJ&#%m z?g>pA-p5L#eIyUI-vnxhBxinQr(t$V+lWt>mb^tk;9MI4Zxu1WOYO$r9vSod4<*TP z##1*M##mk4pY`M}!RYe#lgeeg3)C*zpxcE<;+foQ z|3s1u=Xms_;fU46dFsgtE`KMvGvL|zWt}5AL{CG8#bH}{g9$(t!YG0*rk?%i21v?cV1d?0C)M9`Z=9NBbhUD|9v3C{Woyh_%Bu$r>Z9>xpZE?mgWN>qFFiZbyv{a zG$*G|bj6THr;3^sep~V6KVeZuO>RT)izbI;*0zz*xVEs@zhhyI(_UKFk|$)O=Pt~^ z)(l$Q&g=F(8SWQk(zG@p@1QsEk^;;XNP z`=j-p%P*{FQaNuoUt2`g$Q|PtFKX~- z(tNt`7P@v2li?g+7~5>~OQbFyhxOz*mnvK#uGLX4@Hytvd+BOtU3t!X{-ohe(XqbF zsw3?1=g+M=Yx{R9RU-3dRXhyxhy-W7y!cdj&c~!Iom)!s=)Bz#Tt%D0SxvjIbk|g5 zuluJPK$R%R*>*i){OFLiglV#pQ}=&6IFEzQ)$1*v{1qq@q&VY)%f^3+l9sT(q~L2k zfQFG%Xf;F`-k&SbU9tYP`XTM%h)*}~%c8^C-}tieZ)#ioJZnTx*riHjSF7HA9E0Z* z@_qZq;u4&>=O2bSQV%C|OG%z0@e~3cITP!;oo4Q)j5C~B{k@q|UvS-$cIwCEZ-tY} zMY~;9YPYq{J`e2_oLI`4oW!RZ6k)ylv<8>sc0{+ z+iO94l=0$stgHMPv?|JZ+vk_hhB-JQV+mX`g2SIrWw;Mt%oKa?e;4R7XmMuydwAHT zA0_(z-+Pg^9KZkfrJAoz4>UdSKj{Il(0#C*CLx}~yd1tS;@OX9_<*by#|stHhXNh( zfqsg&pWfp;onUe7r_c1j`+5I}cX<5Ae+Ve=t!DcWeEe;$|1oD3dlU)dRb<^R#wOKV M|Jymhf8+Z9-#o&S<^TWy literal 0 HcmV?d00001 diff --git a/Cargo.lock b/Cargo.lock index 7fe96525..ba4468f5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5024,6 +5024,8 @@ name = "logging" version = "0.0.0" dependencies = [ "derive_more", + "lazy_static", + "parking_lot 0.12.3", "tracing", "tracing-appender", "tracing-subscriber", diff --git a/consensus-spec-tests b/consensus-spec-tests deleted file mode 160000 index 5df4cd33..00000000 --- a/consensus-spec-tests +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 5df4cd333fb3736279d0cd93ded2e691c8ebcf12 diff --git a/features/.DS_Store b/features/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..9c1e0f331856aee293d8bb0386b79af770b62fcd GIT binary patch literal 6148 zcmeHKF-`+95L}ahPJ$vOrN59L9MK_4ihKYiK~Us$5efYjv^;`mAPPjogLnZmyC%64 z79~PtSF&fl>-G9ZIE;o3|5RH@n>V8JYatgNrlZ3^)VM!2U9TnoTK=4ZU{;oB?NG%K*=Zh(;_EwuX9i zpwlM+a0s&sbiLyOBMrbZVQUBrBv>fWLPL6D1Pg~frg>$;*3iNwXlAUFGJic@f@X(3 z>U0UEq4&;!Gtg&XV8apX|2ck{>?6M);v;9k8Te-mgkd$UCitjSTfcoCYi&fkLZfhA qO9cX5OEFMOF$O$GPSt7tNFDw%VQa`$XxDI{Uj&p8@0@{OVBiy>>_#a7 literal 0 HcmV?d00001 diff --git a/fork_choice_control/src/block_processor.rs b/fork_choice_control/src/block_processor.rs index 2e8f589c..5ccac073 100644 --- a/fork_choice_control/src/block_processor.rs +++ b/fork_choice_control/src/block_processor.rs @@ -1,5 +1,11 @@ use std::sync::Arc; + + + +use std::collections::{VecDeque, HashMap}; +use std::sync::Mutex; +use std::time::{Duration, Instant}; use anyhow::Result; use derive_more::Constructor; use execution_engine::ExecutionEngine; @@ -15,6 +21,7 @@ use ssz::SszHash; use state_cache::StateWithRewards; use std_ext::ArcExt as _; use tracing::{info, warn}; +use tracing::trace; use transition_functions::{ combined, unphased::{ProcessSlots, StateRootPolicy}, @@ -28,21 +35,80 @@ use types::{ traits::{BeaconBlock as _, BeaconState as _, SignedBeaconBlock as _}, }; +#[derive(Default)] +pub struct TimingMetrics { + pub times: VecDeque, + pub min: Duration, + pub max: Duration, + pub total: Duration, + pub count: usize, +} + +impl TimingMetrics { + fn update(&mut self, duration: Duration) { + self.times.push_back(duration); + if self.times.len() > 100 { + if let Some(old) = self.times.pop_front() { + self.total -= old; + } + } + self.total += duration; + self.count += 1; + self.min = if self.count == 1 { duration } else { self.min.min(duration) }; + self.max = self.max.max(duration); + } + + fn average(&self) -> Duration { + if self.count > 0 { + self.total / self.count as u32 + } else { + Duration::default() + } + } + + fn median(&self) -> Duration { + let mut sorted = self.times.clone().into_iter().collect::>(); + sorted.sort(); + sorted.get(sorted.len() / 2).cloned().unwrap_or_default() + } +} + #[derive(Constructor)] pub struct BlockProcessor { chain_config: Arc, state_cache: Arc>, + metrics: Mutex>, } impl BlockProcessor

{ + fn update_metrics(&self, name: &str, duration: Duration) { + let mut metrics = self.metrics.lock().unwrap(); + metrics.entry(name.to_string()).or_default().update(duration); + let entry = metrics.get(name).unwrap(); + + let min_ms = entry.min.as_secs_f64() * 1000.0; + let max_ms = entry.max.as_secs_f64() * 1000.0; + let avg_ms = entry.average().as_secs_f64() * 1000.0; + let median_ms = entry.median().as_secs_f64() * 1000.0; + + trace!( + "{} timing: min={:.1}ms, max={:.1}ms, avg={:.1}ms, median={:.1}ms", + name, + min_ms, + max_ms, + avg_ms, + median_ms + ); + } pub fn process_untrusted_block_with_report( &self, mut state: Arc>, block: &BeaconBlock

, skip_randao_verification: bool, ) -> Result> { + let start = Instant::now(); info!("Processing untrusted block with slot: {}", block.slot()); - self.state_cache + let result = self.state_cache .get_or_insert_with(block.hash_tree_root(), block.slot(), false, || { let mut slot_report = RealSlotReport::default(); @@ -59,7 +125,10 @@ impl BlockProcessor

{ Ok((state, Some(block_rewards))) - }) + }); + self.update_metrics("process_untrusted_block", start.elapsed()); + result + } pub fn process_trusted_block_with_report( @@ -67,8 +136,9 @@ impl BlockProcessor

{ mut state: Arc>, block: &BeaconBlock

, ) -> Result> { + let start = Instant::now(); info!("Processing trusted block with slot: {}", block.slot()); - self.state_cache + let result = self.state_cache .get_or_insert_with(block.hash_tree_root(), block.slot(), false, || { let mut slot_report = RealSlotReport::default(); @@ -83,7 +153,10 @@ impl BlockProcessor

{ info!("Trusted block processed. Slot: {} | Rewards: {:?}", block.slot(), block_rewards); Ok((state, Some(block_rewards))) - }) + }); + self.update_metrics("process_trusted_block", start.elapsed()); + result + } pub fn process_untrusted_blinded_block_with_report( @@ -92,8 +165,9 @@ impl BlockProcessor

{ block: &BlindedBeaconBlock

, skip_randao_verification: bool, ) -> Result> { + let start = Instant::now(); info!("Processing untrusted blinded block with slot: {}", block.slot()); - self.state_cache + let result = self.state_cache .get_or_insert_with(block.hash_tree_root(), block.slot(), false, || { let mut slot_report = RealSlotReport::default(); @@ -110,7 +184,9 @@ impl BlockProcessor

{ Ok((state, Some(block_rewards))) - }) + }); + self.update_metrics("process_untrusted_blinded_block", start.elapsed()); + result } pub fn process_trusted_blinded_block_with_report( @@ -118,8 +194,9 @@ impl BlockProcessor

{ mut state: Arc>, block: &BlindedBeaconBlock

, ) -> Result> { + let start = Instant::now(); info!("Processing trusted blinded block with slot: {}", block.slot()); - self.state_cache + let result = self.state_cache .get_or_insert_with(block.hash_tree_root(), block.slot(), false, || { let mut slot_report = RealSlotReport::default(); @@ -135,7 +212,9 @@ impl BlockProcessor

{ Ok((state, Some(block_rewards))) - }) + }); + self.update_metrics("process_trusted_blinded_block", start.elapsed()); + result } #[allow(clippy::too_many_arguments)] @@ -150,8 +229,9 @@ impl BlockProcessor

{ verifier: impl Verifier + Send, slot_report: impl SlotReport + Send, ) -> Result>> { + let start = Instant::now(); info!("Performing state transition for block with root: {:?}, slot: {}", block_root, block.message().slot()); - self.state_cache + let result = self.state_cache .get_or_insert_with(block_root, block.message().slot(), true, || { combined::custom_state_transition( &self.chain_config, @@ -169,16 +249,19 @@ impl BlockProcessor

{ .map(|(state, _)| { info!("State transition completed for block with slot: {}", block.message().slot()); state - }) - } + }); + self.update_metrics("perform_state_transition", start.elapsed()); + result + } pub fn validate_block_for_gossip( &self, store: &Store

, block: &Arc>, ) -> Result>> { + let start = Instant::now(); info!("Validating block for gossip with slot: {}", block.message().slot()); - store.validate_block_for_gossip(block, |parent| { + let result = store.validate_block_for_gossip(block, |parent| { let block_slot = block.message().slot(); // > Make a copy of the state to avoid mutability issues @@ -196,7 +279,9 @@ impl BlockProcessor

{ info!("Block validation for gossip complete for slot: {}", block.message().slot()); Ok(None) - }) + }); + self.update_metrics("validate_block_for_gossip", start.elapsed()); + result } pub fn validate_block + Send>( @@ -207,8 +292,9 @@ impl BlockProcessor

{ execution_engine: E, verifier: impl Verifier + Send, ) -> Result> { + let start = Instant::now(); info!("Validating block with slot: {}", block.message().slot()); - store.validate_block_with_custom_state_transition(block, |block_root, parent| { + let result = store.validate_block_with_custom_state_transition(block, |block_root, parent| { // > Make a copy of the state to avoid mutability issues let state = self .state_cache @@ -254,7 +340,9 @@ impl BlockProcessor

{ info!("Block validation completed for slot: {}", block.message().slot()); Ok((state, None)) - }) + }); + self.update_metrics("validate_block", start.elapsed()); + result } } diff --git a/fork_choice_control/src/controller.rs b/fork_choice_control/src/controller.rs index 7667195a..c6d157c9 100644 --- a/fork_choice_control/src/controller.rs +++ b/fork_choice_control/src/controller.rs @@ -14,6 +14,8 @@ use std::{ thread::{Builder, JoinHandle}, time::Instant, }; +use std::collections::{VecDeque, HashMap}; +use std::sync::Mutex; use anyhow::{Context as _, Result}; use arc_swap::{ArcSwap, Guard}; @@ -124,7 +126,13 @@ where let thread_pool = ThreadPool::new()?; let (mutator_tx, mutator_rx) = std::sync::mpsc::channel(); - let block_processor = Arc::new(BlockProcessor::new(chain_config, state_cache.clone_arc())); + + let block_processor = Arc::new(BlockProcessor::new( + chain_config, + state_cache.clone_arc(), + Mutex::new(HashMap::new()), + + )); let mut mutator = Mutator::new( store_snapshot.clone_arc(), diff --git a/fuzz/.DS_Store b/fuzz/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..cf821899f5d74d364ca5490d13f07600ab947d17 GIT binary patch literal 6148 zcmeHK!A`?440T3@I@n#v|R+lHTZbv+h`% z;x975XE(&Dz2MZIsd0YO`7+OnM#w!@S)QhgO}>Ct{Cyr>WY=Gp{p)47%&Dp3?OH-#HWJR8w19GF;FwW-v^Jzm?&0);nRUGlmNg8 z>L3_%Ex|rsF;T1pF#~bp3KUnTC597s=)Kw{ij|CR3o6c={K`aYPGO9ZVq z28@9=14r^W=KO!Pz5Z`I*^@C~4E!qwT$Ik!8D2?qYv<)S*Lt)&G#0k21Zx)zLMnzW dr{W1(5a>M*fQe!y2o1#k2m~6eGX@UIzz>aGanb+) literal 0 HcmV?d00001 diff --git a/fuzz/.gitignore b/fuzz/.gitignore new file mode 100644 index 00000000..1a45eee7 --- /dev/null +++ b/fuzz/.gitignore @@ -0,0 +1,4 @@ +target +corpus +artifacts +coverage diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml new file mode 100644 index 00000000..89762263 --- /dev/null +++ b/fuzz/Cargo.toml @@ -0,0 +1,28 @@ +[package] +name = "ad_hoc_bench-fuzz" +version = "0.0.0" +publish = false +edition = "2021" + +[package.metadata] +cargo-fuzz = true + +[dependencies] +libfuzzer-sys = "0.4" + +[dependencies.ad_hoc_bench] +path = ".." + +[[bin]] +name = "fuzz_target_1" +path = "fuzz_targets/fuzz_target_1.rs" +test = false +doc = false +bench = false + +[[bin]] +name = "fuzz_validate_merge_block" +path = "fuzz_targets/fuzz_validate_merge_block.rs" +test = false +doc = false +bench = false diff --git a/fuzz/fuzz_targets/fuzz_target_1.rs b/fuzz/fuzz_targets/fuzz_target_1.rs new file mode 100644 index 00000000..43a88c14 --- /dev/null +++ b/fuzz/fuzz_targets/fuzz_target_1.rs @@ -0,0 +1,7 @@ +#![no_main] + +use libfuzzer_sys::fuzz_target; + +fuzz_target!(|data: &[u8]| { + // fuzzed code goes here +}); diff --git a/fuzz/fuzz_targets/fuzz_validate_merge_block.rs b/fuzz/fuzz_targets/fuzz_validate_merge_block.rs new file mode 100644 index 00000000..b24e629c --- /dev/null +++ b/fuzz/fuzz_targets/fuzz_validate_merge_block.rs @@ -0,0 +1,98 @@ +#![no_main] +use libfuzzer_sys::fuzz_target; +use std::sync::Arc; +use grandine::{ + fork_choice::validation, + types::{ + bellatrix::containers::PowBlock, + combined::SignedBeaconBlock, + config::Config as ChainConfig, + preset::Preset, + traits::{PostBellatrixBeaconBlockBody, SignedBeaconBlock as _}, + }, + execution_engine::ExecutionEngine, +}; + +// Mock implementation of ExecutionEngine +struct MockExecutionEngine; + +impl ExecutionEngine

for MockExecutionEngine { + const IS_NULL: bool = false; + + fn allow_optimistic_merge_block_validation(&self) -> bool { + true + } + + fn pow_block(&self, hash: [u8; 32]) -> Option { + // For simplicity, always return Some(PowBlock) + Some(PowBlock { + block_hash: hash, + parent_hash: [0; 32], + total_difficulty: 1000000.into(), // Arbitrary value + // ... other fields ... + }) + } + + // Implement other required methods... +} + +// Mock implementation of PostBellatrixBeaconBlockBody +struct MockBeaconBlockBody; + +impl PostBellatrixBeaconBlockBody

for MockBeaconBlockBody { + fn execution_payload(&self) -> &P::ExecutionPayload { + unimplemented!("Mock implementation") + } + // Implement other required methods... +} + +fuzz_target!(|data: &[u8]| { + if data.len() < 64 { + return; + } + + // Create ChainConfig from first 32 bytes + let mut terminal_block_hash = [0u8; 32]; + terminal_block_hash.copy_from_slice(&data[..32]); + let chain_config = ChainConfig { + terminal_block_hash, + terminal_block_hash_activation_epoch: 0, + terminal_total_difficulty: 1000000.into(), + // ... other fields ... + }; + + // Create SignedBeaconBlock from next 32 bytes + let mut block_root = [0u8; 32]; + block_root.copy_from_slice(&data[32..64]); + let block = Arc::new(SignedBeaconBlock::::default()); // You'll need to implement this + + // Create mock objects + let body = MockBeaconBlockBody; + let execution_engine = MockExecutionEngine; + + // Call validate_merge_block + let result = validation::validate_merge_block( + &chain_config, + &block, + &body, + execution_engine, + ); + + // Check the result + match result { + Ok(action) => { + // You can add assertions here based on expected behavior + }, + Err(e) => { + // You can add assertions here for expected error cases + }, + } +});#![no_main] + +use libfuzzer_sys::fuzz_target; + +fuzz_target!(|data: &[u8]| { + // fuzzed code goes here +}); + + diff --git a/grandine-snapshot-tests b/grandine-snapshot-tests index a2607480..f9328dc1 160000 --- a/grandine-snapshot-tests +++ b/grandine-snapshot-tests @@ -1 +1 @@ -Subproject commit a26074800feb80f459762c203afb5b74f1a7e9d6 +Subproject commit f9328dc1aecc3e3ed9d16db6d0a2cc98893f579e diff --git a/logging/Cargo.toml b/logging/Cargo.toml index 50dd4b5d..9a7e274c 100644 --- a/logging/Cargo.toml +++ b/logging/Cargo.toml @@ -8,6 +8,8 @@ workspace = true [dependencies] derive_more = { workspace = true } +parking_lot = { workspace = true } +lazy_static = {workspace = true } tracing = { workspace = true } tracing-subscriber = { workspace = true } tracing-appender = { workspace = true } diff --git a/logging/src/lib.rs b/logging/src/lib.rs index fb95544f..9058fc3f 100644 --- a/logging/src/lib.rs +++ b/logging/src/lib.rs @@ -1,13 +1,17 @@ + use core::sync::atomic::{AtomicUsize, Ordering}; use derive_more::Display; -use tracing::info; +use std::sync::Arc; + +use tracing::{info, trace}; use tracing_appender::non_blocking::NonBlocking; use tracing_appender::rolling::{RollingFileAppender, Rotation}; use tracing_subscriber::{fmt, layer::SubscriberExt, EnvFilter}; pub static PEER_LOG_METRICS: PeerLogMetrics = PeerLogMetrics::new(0); + #[derive(Display, Debug)] #[display(fmt = "peers: {connected_peer_count:?}/{target_peer_count:?}")] pub struct PeerLogMetrics { @@ -45,9 +49,10 @@ pub fn setup_tracing() -> impl Drop { let file_layer = fmt::layer().with_writer(file_non_blocking).with_ansi(false); let env_filter = EnvFilter::try_from_default_env() - .or_else(|_| EnvFilter::try_new("info")) - .expect("Failed to create EnvFilter"); - + .unwrap_or_else(|_| { + EnvFilter::new("info,fork_choice_control::block_processor=trace") + }) + .add_directive("fork_choice_control::block_processor=trace".parse().unwrap()); let subscriber = tracing_subscriber::registry() .with(env_filter) .with(stdout_layer) @@ -57,5 +62,8 @@ pub fn setup_tracing() -> impl Drop { .expect("Failed to initialize tracing subscriber"); info!("Tracing initialized successfully."); + trace!("Trace-level logging is enabled for block_processor."); file_guard + + } diff --git a/logs/testing.log.2024-09-30 b/logs/testing.log.2024-09-30 new file mode 100644 index 00000000..57f1b5ef --- /dev/null +++ b/logs/testing.log.2024-09-30 @@ -0,0 +1,14347 @@ +2024-09-30T06:47:01.425374Z INFO logging: Tracing initialized successfully. +2024-09-30T06:47:01.428449Z INFO grandine: Grandine firing up... +2024-09-30T06:47:01.538301Z INFO grandine: starting beacon node +2024-09-30T06:47:01.538859Z INFO grandine::grandine_config: network: mainnet +2024-09-30T06:47:01.538881Z INFO grandine::grandine_config: data directory: "/Users/mercynaps/.grandine/mainnet" +2024-09-30T06:47:01.538893Z INFO grandine::grandine_config: Eth2 database upper limit: 256.0 GiB +2024-09-30T06:47:01.539037Z INFO grandine::grandine_config: Eth1 database upper limit: 16.0 GiB +2024-09-30T06:47:01.539615Z INFO grandine::grandine_config: Eth1 RPC URLs: [] +2024-09-30T06:47:01.541313Z INFO grandine::grandine_config: graffiti: [0x4772616e64696e652f302e342e312d3138613435663700000000000000000000] +2024-09-30T06:47:01.541398Z INFO grandine::grandine_config: HTTP API address: 127.0.0.1:5052 +2024-09-30T06:47:01.541416Z INFO grandine::grandine_config: validator API disabled +2024-09-30T06:47:01.541426Z INFO grandine::grandine_config: archival interval: 32 epochs +2024-09-30T06:47:01.541664Z INFO grandine::grandine_config: slasher enabled: false +2024-09-30T06:47:01.542093Z INFO grandine::grandine_config: client version: Grandine/0.4.1-18a45f7/aarch64-macos +2024-09-30T06:47:01.542238Z INFO grandine::grandine_config: suggested fee recipient: 0xe7cf…1f1b +2024-09-30T06:47:01.542360Z INFO grandine::grandine_config: back sync enabled: false +2024-09-30T06:47:01.588325Z INFO database: database: /Users/mercynaps/.grandine/mainnet/beacon/eth1_cache with name eth1 +2024-09-30T06:47:03.151753Z INFO database: database: /Users/mercynaps/.grandine/mainnet/beacon/beacon_fork_choice with name beacon_fork_choice +2024-09-30T06:47:03.297281Z INFO fork_choice_control::storage: loaded state at slot 5312 +2024-09-30T06:47:05.428904Z INFO fork_choice_store::state_cache_processor: Creating new StateCacheProcessor with lock timeout of 1.5s +2024-09-30T06:47:05.559578Z INFO fork_choice_control::block_processor: Validating block with slot: 5313 +2024-09-30T06:47:05.562318Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x640ee55cf05b412d14ce0770e9a9642e279801a87548c0a844d4720a8adeb9b2, slot: 5313 +2024-09-30T06:47:05.716321Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5313 +2024-09-30T06:47:05.716353Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5313 +2024-09-30T06:47:05.729118Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5312) +2024-09-30T06:47:05.731106Z INFO fork_choice_control::block_processor: Validating block with slot: 5314 +2024-09-30T06:47:05.732417Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8976531daf8452bd5e21c64e2548caf0b6f70f62ac539b9a3e98022b734caee6, slot: 5314 +2024-09-30T06:47:05.735255Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5314 +2024-09-30T06:47:05.735267Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5314 +2024-09-30T06:47:05.746612Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5312) +2024-09-30T06:47:05.746850Z INFO fork_choice_control::block_processor: Validating block with slot: 5315 +2024-09-30T06:47:05.748362Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x52a5e20d35e2a23ee17c137990ca185f9ae3982d20e8d4de4afdbd8753d89fca, slot: 5315 +2024-09-30T06:47:05.751865Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5315 +2024-09-30T06:47:05.751878Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5315 +2024-09-30T06:47:05.763579Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5312) +2024-09-30T06:47:05.763802Z INFO fork_choice_control::block_processor: Validating block with slot: 5316 +2024-09-30T06:47:05.764783Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2a40aabc40f5331f79a2542f1abc2bee73d1dcddd46762f55cc6e37d85c330c1, slot: 5316 +2024-09-30T06:47:05.767377Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5316 +2024-09-30T06:47:05.767394Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5316 +2024-09-30T06:47:05.779656Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5312) +2024-09-30T06:47:05.779906Z INFO fork_choice_control::block_processor: Validating block with slot: 5317 +2024-09-30T06:47:05.782380Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2a6b9f9728830f60e2c90cfe874abb79ca22e51014968727b88dcc531a00fd11, slot: 5317 +2024-09-30T06:47:05.787766Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5317 +2024-09-30T06:47:05.787793Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5317 +2024-09-30T06:47:05.799956Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5312) +2024-09-30T06:47:05.800194Z INFO fork_choice_control::block_processor: Validating block with slot: 5318 +2024-09-30T06:47:05.801705Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x33dd405336955e8ca2b1c7ca5e6e54062f57cc3ebdf3c7f845d8947961e0b235, slot: 5318 +2024-09-30T06:47:05.805287Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5318 +2024-09-30T06:47:05.805306Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5318 +2024-09-30T06:47:05.817076Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5312) +2024-09-30T06:47:05.817295Z INFO fork_choice_control::block_processor: Validating block with slot: 5319 +2024-09-30T06:47:05.818407Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x30da3aee07441ada14c4db011a4705c6126a1b0690ce8cfb19cccda5f043e5e2, slot: 5319 +2024-09-30T06:47:05.821347Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5319 +2024-09-30T06:47:05.821375Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5319 +2024-09-30T06:47:05.834210Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5312) +2024-09-30T06:47:05.834447Z INFO fork_choice_control::block_processor: Validating block with slot: 5320 +2024-09-30T06:47:05.835697Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xca31d0babca4fc0bbb1652b7b93650464f28d6cde67fabce763201866f1309ba, slot: 5320 +2024-09-30T06:47:05.838852Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5320 +2024-09-30T06:47:05.838873Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5320 +2024-09-30T06:47:05.851213Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5312) +2024-09-30T06:47:05.851452Z INFO fork_choice_control::block_processor: Validating block with slot: 5322 +2024-09-30T06:47:05.853377Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2f66f3165671aaca0ee13a1858e1a1c536348badec6f7b3635977e837795dcf8, slot: 5322 +2024-09-30T06:47:05.867538Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5322 +2024-09-30T06:47:05.867555Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5322 +2024-09-30T06:47:05.890272Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5312) +2024-09-30T06:47:05.890527Z INFO fork_choice_control::block_processor: Validating block with slot: 5323 +2024-09-30T06:47:05.891491Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc2876aed4e2ee78267fb0e64c353a4e47aab51c38dfc182bbf4a701360e3aa73, slot: 5323 +2024-09-30T06:47:05.893923Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5323 +2024-09-30T06:47:05.893933Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5323 +2024-09-30T06:47:05.906969Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5312) +2024-09-30T06:47:05.907209Z INFO fork_choice_control::block_processor: Validating block with slot: 5324 +2024-09-30T06:47:05.908260Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7e9bd30f944c18738909cba532c77601bab6d55229be4724c86b4d79c9666f1d, slot: 5324 +2024-09-30T06:47:05.910921Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5324 +2024-09-30T06:47:05.910933Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5324 +2024-09-30T06:47:05.924071Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5312) +2024-09-30T06:47:05.924355Z INFO fork_choice_control::block_processor: Validating block with slot: 5325 +2024-09-30T06:47:05.926751Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8ed40647b10cb14665de3976ea18cebd4ce8968c9b9b596003eb50b875256cda, slot: 5325 +2024-09-30T06:47:05.931978Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5325 +2024-09-30T06:47:05.931991Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5325 +2024-09-30T06:47:05.945830Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5312) +2024-09-30T06:47:05.946076Z INFO fork_choice_control::block_processor: Validating block with slot: 5326 +2024-09-30T06:47:05.947146Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x27cd161e8f888dcbef7e06ead51f7c208af05759f9107cd28c3d96a1277e255c, slot: 5326 +2024-09-30T06:47:05.949821Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5326 +2024-09-30T06:47:05.949832Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5326 +2024-09-30T06:47:05.963797Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5312) +2024-09-30T06:47:05.964098Z INFO fork_choice_control::block_processor: Validating block with slot: 5327 +2024-09-30T06:47:05.966341Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa129507cdef32aa50b306f8f9a33f758bf549cbbce10d5e1e5966ba6b8e36211, slot: 5327 +2024-09-30T06:47:05.971381Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5327 +2024-09-30T06:47:05.971398Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5327 +2024-09-30T06:47:05.985202Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5312) +2024-09-30T06:47:05.985429Z INFO fork_choice_control::block_processor: Validating block with slot: 5328 +2024-09-30T06:47:05.986407Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc2aa2fb476dd8cc74f4e8e79c73c477750c63ac30bfb5a9b1a1538ea29e9b6d1, slot: 5328 +2024-09-30T06:47:05.989069Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5328 +2024-09-30T06:47:05.989088Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5328 +2024-09-30T06:47:06.003011Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5312) +2024-09-30T06:47:06.003253Z INFO fork_choice_control::block_processor: Validating block with slot: 5329 +2024-09-30T06:47:06.004223Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x86cfca35d40d38aadb2fa35c114562cb5b6e3cf8fba14875ac52cca1f1847eae, slot: 5329 +2024-09-30T06:47:06.006815Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5329 +2024-09-30T06:47:06.006830Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5329 +2024-09-30T06:47:06.021001Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5312) +2024-09-30T06:47:06.021282Z INFO fork_choice_control::block_processor: Validating block with slot: 5330 +2024-09-30T06:47:06.023936Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x67a8b4c8d2f3aa21468b38fa306a89feb82af8e77df02a76c2a5644f3ee7f49b, slot: 5330 +2024-09-30T06:47:06.029362Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5330 +2024-09-30T06:47:06.029374Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5330 +2024-09-30T06:47:06.044578Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5312) +2024-09-30T06:47:06.044831Z INFO fork_choice_control::block_processor: Validating block with slot: 5331 +2024-09-30T06:47:06.045775Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0dbe74076ac048e4c8cfece7ace139cb05d6cc24d9b5dad251525d81deb5fc2f, slot: 5331 +2024-09-30T06:47:06.048240Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5331 +2024-09-30T06:47:06.048251Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5331 +2024-09-30T06:47:06.063424Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5312) +2024-09-30T06:47:06.063699Z INFO fork_choice_control::block_processor: Validating block with slot: 5332 +2024-09-30T06:47:06.065435Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3c7f494e1283de662e28f5c855c5aa310ec3a5c0abbbe68cb396f92bb1539593, slot: 5332 +2024-09-30T06:47:06.069413Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5332 +2024-09-30T06:47:06.069424Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5332 +2024-09-30T06:47:06.084798Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5312) +2024-09-30T06:47:06.085045Z INFO fork_choice_control::block_processor: Validating block with slot: 5333 +2024-09-30T06:47:06.087012Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8104e80ab099c4160344bc0cce9d7a799f4a6cf68593416470a2baa8baa58048, slot: 5333 +2024-09-30T06:47:06.091316Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5333 +2024-09-30T06:47:06.091329Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5333 +2024-09-30T06:47:06.107159Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5312) +2024-09-30T06:47:06.107392Z INFO fork_choice_control::block_processor: Validating block with slot: 5334 +2024-09-30T06:47:06.108459Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc8f4829efce9874406569db5d012126c666326c257f67b20b72504a5d8162f62, slot: 5334 +2024-09-30T06:47:06.111147Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5334 +2024-09-30T06:47:06.111156Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5334 +2024-09-30T06:47:06.127099Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5312) +2024-09-30T06:47:06.127344Z INFO fork_choice_control::block_processor: Validating block with slot: 5335 +2024-09-30T06:47:06.128273Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x11c06cfc13dd15b946a4536fb3302eaae79afe1fdbfb740d24bc5ea76766a027, slot: 5335 +2024-09-30T06:47:06.130722Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5335 +2024-09-30T06:47:06.130731Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5335 +2024-09-30T06:47:06.147212Z INFO fork_choice_control::block_processor: Validating block with slot: 5336 +2024-09-30T06:47:06.148280Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7d9644135f3cb37e47d82b6a9e5c8698b1a9c2fcb43bf0b423070e62a72d90f1, slot: 5336 +2024-09-30T06:47:06.150926Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5336 +2024-09-30T06:47:06.150935Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5336 +2024-09-30T06:47:06.167501Z INFO fork_choice_control::block_processor: Validating block with slot: 5337 +2024-09-30T06:47:06.169811Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5e442c6991f45f69e1aa74546f67daf713bacaaa50d2b8bb3f1f6261a5cfcd8c, slot: 5337 +2024-09-30T06:47:06.174837Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5337 +2024-09-30T06:47:06.174857Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5337 +2024-09-30T06:47:06.191735Z INFO fork_choice_control::block_processor: Validating block with slot: 5338 +2024-09-30T06:47:06.192822Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaf22745923f24694175bcb4a2e03ce2a7772930fb83864645849d7177a1ebd85, slot: 5338 +2024-09-30T06:47:06.195474Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5338 +2024-09-30T06:47:06.195484Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5338 +2024-09-30T06:47:06.212402Z INFO fork_choice_control::block_processor: Validating block with slot: 5339 +2024-09-30T06:47:06.213618Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfe73a9fa34e21ee89428bcc04710bf5c3f8c8f65d4d17e31a935855977776273, slot: 5339 +2024-09-30T06:47:06.216524Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5339 +2024-09-30T06:47:06.216533Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5339 +2024-09-30T06:47:06.233745Z INFO fork_choice_control::block_processor: Validating block with slot: 5340 +2024-09-30T06:47:06.235069Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfc490025527b7f45546cf271cdf38077b9ebc11669930b748e0587f6351d1af4, slot: 5340 +2024-09-30T06:47:06.238452Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5340 +2024-09-30T06:47:06.238473Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5340 +2024-09-30T06:47:06.255828Z INFO fork_choice_control::block_processor: Validating block with slot: 5341 +2024-09-30T06:47:06.257101Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7b5c6d8128d955e9a5b97869e462b1bfe39d18c74f1ea7dba44b6b8e26779601, slot: 5341 +2024-09-30T06:47:06.260000Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5341 +2024-09-30T06:47:06.260011Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5341 +2024-09-30T06:47:06.277658Z INFO fork_choice_control::block_processor: Validating block with slot: 5342 +2024-09-30T06:47:06.278606Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x549f9a14e123324d1d975e6fee421e24df0383a2c0494775834b304e56c19b29, slot: 5342 +2024-09-30T06:47:06.281040Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5342 +2024-09-30T06:47:06.281051Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5342 +2024-09-30T06:47:06.298725Z INFO fork_choice_control::block_processor: Validating block with slot: 5343 +2024-09-30T06:47:06.299935Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc25531ad694d80ce69c64323bf3673d6763de38d26ba4330e119d1b4a1923e37, slot: 5343 +2024-09-30T06:47:06.302855Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5343 +2024-09-30T06:47:06.302864Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5343 +2024-09-30T06:47:06.320860Z INFO fork_choice_control::block_processor: Validating block with slot: 5344 +2024-09-30T06:47:06.323120Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6baffbe5bcbeb94e890a450eeb83eb38bca73358559adb1d585ee1641d4e81d6, slot: 5344 +2024-09-30T06:47:06.374986Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5344 +2024-09-30T06:47:06.375011Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5344 +2024-09-30T06:47:06.386694Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5344) +2024-09-30T06:47:06.386955Z INFO fork_choice_control::block_processor: Validating block with slot: 5345 +2024-09-30T06:47:06.387940Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfc5ad5e2b373f195fe0f771362692f11a5b03accd3dc191d368bb219ebb1914a, slot: 5345 +2024-09-30T06:47:06.456039Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5345 +2024-09-30T06:47:06.456064Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5345 +2024-09-30T06:47:06.466990Z INFO fork_choice_control::block_processor: Validating block with slot: 5347 +2024-09-30T06:47:06.469163Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbb273bdf004cc8e648b7fc73879498e96a7d7a413879a0879ceb7f1896ab9fb0, slot: 5347 +2024-09-30T06:47:06.544354Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5347 +2024-09-30T06:47:06.544378Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5347 +2024-09-30T06:47:06.556447Z INFO fork_choice_control::block_processor: Validating block with slot: 5348 +2024-09-30T06:47:06.557570Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc57d2011068b2e86d449958e74033343dfabc502b9e02ac5307bd7dc586fee48, slot: 5348 +2024-09-30T06:47:06.560341Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5348 +2024-09-30T06:47:06.560353Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5348 +2024-09-30T06:47:06.572548Z INFO fork_choice_control::block_processor: Validating block with slot: 5350 +2024-09-30T06:47:06.575494Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa995fbf06b54b21f847e6c2390d8189174eea4098b4c528db15be4f9113adae7, slot: 5350 +2024-09-30T06:47:06.585291Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5350 +2024-09-30T06:47:06.585305Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5350 +2024-09-30T06:47:06.598116Z INFO fork_choice_control::block_processor: Validating block with slot: 5351 +2024-09-30T06:47:06.599362Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x73d4489c9124f5a1fdcd12d7f61627b83e324565be7a93a954d0e1c13c935d30, slot: 5351 +2024-09-30T06:47:06.602330Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5351 +2024-09-30T06:47:06.602340Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5351 +2024-09-30T06:47:06.615252Z INFO fork_choice_control::block_processor: Validating block with slot: 5352 +2024-09-30T06:47:06.616222Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x602a9de5f497505fc3038dd2d16d16601514257a7baa5c0fa102cba82bf3cc44, slot: 5352 +2024-09-30T06:47:06.618708Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5352 +2024-09-30T06:47:06.618718Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5352 +2024-09-30T06:47:06.631803Z INFO fork_choice_control::block_processor: Validating block with slot: 5354 +2024-09-30T06:47:06.633933Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3e06f3aa236d831aaffa1fd07ceb7cda2e92ba5d56fc60d43ccf79567b93f37a, slot: 5354 +2024-09-30T06:47:06.643846Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5354 +2024-09-30T06:47:06.643864Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5354 +2024-09-30T06:47:06.657393Z INFO fork_choice_control::block_processor: Validating block with slot: 5355 +2024-09-30T06:47:06.658879Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x750663240cc8fdf40e4cc6c959f5c20fa9d215f6f6cfcf3c270bde7ff1ec040a, slot: 5355 +2024-09-30T06:47:06.662274Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5355 +2024-09-30T06:47:06.662284Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5355 +2024-09-30T06:47:06.675685Z INFO fork_choice_control::block_processor: Validating block with slot: 5356 +2024-09-30T06:47:06.676635Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x67c2007d21ca01c23ce0c9609adaa0f6353a8ad51f4e9785f50f74f83d25c12f, slot: 5356 +2024-09-30T06:47:06.679056Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5356 +2024-09-30T06:47:06.679066Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5356 +2024-09-30T06:47:06.692728Z INFO fork_choice_control::block_processor: Validating block with slot: 5357 +2024-09-30T06:47:06.694356Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3a7dc464b97e02c4971c8244641567a07a08427f73edd0d6365afdde841fdeca, slot: 5357 +2024-09-30T06:47:06.697905Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5357 +2024-09-30T06:47:06.697915Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5357 +2024-09-30T06:47:06.711761Z INFO fork_choice_control::block_processor: Validating block with slot: 5358 +2024-09-30T06:47:06.712698Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc7cce5a3fbbe6afd55e9a7c2cdf9c21a04434d8a7c6de4779359354310735f98, slot: 5358 +2024-09-30T06:47:06.715114Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5358 +2024-09-30T06:47:06.715123Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5358 +2024-09-30T06:47:06.729021Z INFO fork_choice_control::block_processor: Validating block with slot: 5359 +2024-09-30T06:47:06.730333Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc1d7f203ed56faca77b4b167c8cf535b962d2e6236ee1254f121a04d28f84dfb, slot: 5359 +2024-09-30T06:47:06.733444Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5359 +2024-09-30T06:47:06.733456Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5359 +2024-09-30T06:47:06.747644Z INFO fork_choice_control::block_processor: Validating block with slot: 5360 +2024-09-30T06:47:06.748722Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x69fa36b76ccbb0cb858b3a40c3b194a1d3f6379645a921066626d0b652ec0852, slot: 5360 +2024-09-30T06:47:06.751435Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5360 +2024-09-30T06:47:06.751445Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5360 +2024-09-30T06:47:06.766139Z INFO fork_choice_control::block_processor: Validating block with slot: 5362 +2024-09-30T06:47:06.767739Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xea3dd5bba889081207beefd34ff0570350c6ca007e7d1a4f3296a9e7ccf6b750, slot: 5362 +2024-09-30T06:47:06.779771Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5362 +2024-09-30T06:47:06.779792Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5362 +2024-09-30T06:47:06.794485Z INFO fork_choice_control::block_processor: Validating block with slot: 5363 +2024-09-30T06:47:06.795571Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0a82fcabd75332e78031050ef414ae7091de2f5f3e3dc8df6561df8fdb9c42a3, slot: 5363 +2024-09-30T06:47:06.798239Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5363 +2024-09-30T06:47:06.798250Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5363 +2024-09-30T06:47:06.813097Z INFO fork_choice_control::block_processor: Validating block with slot: 5364 +2024-09-30T06:47:06.816540Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc11877ebf57f0280648b684ccfeba85f8ad75f0a4cda93181fcf6d355caeab16, slot: 5364 +2024-09-30T06:47:06.823712Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5364 +2024-09-30T06:47:06.823730Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5364 +2024-09-30T06:47:06.838944Z INFO fork_choice_control::block_processor: Validating block with slot: 5365 +2024-09-30T06:47:06.840331Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xad2a1ffa06b9f8eaff709796fa07a080a32ebec78fe0395dba8ee1e5b3504953, slot: 5365 +2024-09-30T06:47:06.843507Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5365 +2024-09-30T06:47:06.843518Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5365 +2024-09-30T06:47:06.859078Z INFO fork_choice_control::block_processor: Validating block with slot: 5366 +2024-09-30T06:47:06.860276Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd0fd944690b4e92edc78340324a610bf40ac801bb39cb955cfaebdddecf72525, slot: 5366 +2024-09-30T06:47:06.863506Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5366 +2024-09-30T06:47:06.863520Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5366 +2024-09-30T06:47:06.879323Z INFO fork_choice_control::block_processor: Validating block with slot: 5367 +2024-09-30T06:47:06.880670Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0f8873376b15e02a2ac61c53319ef3d73babeea0caf7e8c6fdacd4e206f96add, slot: 5367 +2024-09-30T06:47:06.883813Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5367 +2024-09-30T06:47:06.883824Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5367 +2024-09-30T06:47:06.900704Z INFO fork_choice_control::block_processor: Validating block with slot: 5368 +2024-09-30T06:47:06.901668Z INFO fork_choice_control::block_processor: Validating block with slot: 5369 +2024-09-30T06:47:06.906721Z INFO database: database: /Users/mercynaps/.grandine/mainnet/beacon/sync with name sync +2024-09-30T06:47:06.911313Z INFO database: database: /Users/mercynaps/.grandine/mainnet/validator with name proposer-configs +2024-09-30T06:47:06.953818Z INFO discv5::service: Discv5 Service started mode=Ip4 +2024-09-30T06:47:06.986031Z INFO libp2p_swarm: local_peer_id=16Uiu2HAm1MjWUF4J3qsovL8Wzccfuzy28tTQ8dmA2sazksHeR3bs +2024-09-30T06:47:06.986517Z INFO fork_choice_control::block_processor: Validating block with slot: 5368 +2024-09-30T06:47:06.987515Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x270c2c2ccf9f79ae136fe39fb835a8a7938404cabae24fb7a88461813ea36ba3, slot: 5368 +2024-09-30T06:47:06.990401Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5368 +2024-09-30T06:47:06.990426Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5368 +2024-09-30T06:47:07.007363Z INFO fork_choice_control::block_processor: Validating block with slot: 5369 +2024-09-30T06:47:07.008359Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x78c81dd390e2a77f68cf2c64e7c4e98b7f9333c238a9e334af0bf912af5fd562, slot: 5369 +2024-09-30T06:47:07.010872Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5369 +2024-09-30T06:47:07.010882Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5369 +2024-09-30T06:47:17.030242Z INFO http_api::task: HTTP server listening on 127.0.0.1:5052 +2024-09-30T06:47:19.496008Z WARN discv5::handler: Authentication response already sent. Dropping session. Node: Node: 0x46bc..8e2e, addr: 158.178.236.60:10200 +2024-09-30T06:47:19.527371Z WARN discv5::service: RPC Request failed: id: c36805aadc8a9619, error InvalidRemotePacket +2024-09-30T06:47:19.527560Z WARN discv5::service: RPC Request failed: id: deae83e158abc8b4, error InvalidRemotePacket +2024-09-30T06:47:33.454386Z INFO fork_choice_control::block_processor: Validating block with slot: 5434 +2024-09-30T06:47:33.617576Z INFO fork_choice_control::block_processor: Validating block with slot: 5435 +2024-09-30T06:47:33.627897Z INFO fork_choice_control::block_processor: Validating block with slot: 5436 +2024-09-30T06:47:33.647011Z INFO fork_choice_control::block_processor: Validating block with slot: 5437 +2024-09-30T06:47:33.650665Z INFO fork_choice_control::block_processor: Validating block with slot: 5438 +2024-09-30T06:47:33.662636Z INFO fork_choice_control::block_processor: Validating block with slot: 5439 +2024-09-30T06:47:33.682478Z INFO fork_choice_control::block_processor: Validating block with slot: 5440 +2024-09-30T06:47:33.699899Z INFO fork_choice_control::block_processor: Validating block with slot: 5442 +2024-09-30T06:47:33.727121Z INFO fork_choice_control::block_processor: Validating block with slot: 5443 +2024-09-30T06:47:33.737193Z INFO fork_choice_control::block_processor: Validating block with slot: 5444 +2024-09-30T06:47:33.747971Z INFO fork_choice_control::block_processor: Validating block with slot: 5445 +2024-09-30T06:47:33.786965Z INFO fork_choice_control::block_processor: Validating block with slot: 5446 +2024-09-30T06:47:33.797149Z INFO fork_choice_control::block_processor: Validating block with slot: 5447 +2024-09-30T06:47:33.904489Z INFO fork_choice_control::block_processor: Validating block with slot: 5449 +2024-09-30T06:47:33.911655Z INFO fork_choice_control::block_processor: Validating block with slot: 5450 +2024-09-30T06:47:33.949350Z INFO fork_choice_control::block_processor: Validating block with slot: 5451 +2024-09-30T06:47:33.965843Z INFO fork_choice_control::block_processor: Validating block with slot: 5452 +2024-09-30T06:47:33.995073Z INFO fork_choice_control::block_processor: Validating block with slot: 5453 +2024-09-30T06:47:34.001999Z INFO fork_choice_control::block_processor: Validating block with slot: 5454 +2024-09-30T06:47:34.024314Z INFO fork_choice_control::block_processor: Validating block with slot: 5455 +2024-09-30T06:47:34.042953Z INFO fork_choice_control::block_processor: Validating block with slot: 5456 +2024-09-30T06:47:34.087454Z INFO fork_choice_control::block_processor: Validating block with slot: 5457 +2024-09-30T06:47:34.087463Z INFO fork_choice_control::block_processor: Validating block with slot: 5458 +2024-09-30T06:47:34.087482Z INFO fork_choice_control::block_processor: Validating block with slot: 5459 +2024-09-30T06:47:34.091674Z INFO fork_choice_control::block_processor: Validating block with slot: 5460 +2024-09-30T06:47:34.108404Z INFO fork_choice_control::block_processor: Validating block with slot: 5462 +2024-09-30T06:47:34.108413Z INFO fork_choice_control::block_processor: Validating block with slot: 5461 +2024-09-30T06:47:34.130877Z INFO fork_choice_control::block_processor: Validating block with slot: 5463 +2024-09-30T06:47:34.130901Z INFO fork_choice_control::block_processor: Validating block with slot: 5464 +2024-09-30T06:47:34.195399Z INFO fork_choice_control::block_processor: Validating block with slot: 5466 +2024-09-30T06:47:34.195425Z INFO fork_choice_control::block_processor: Validating block with slot: 5467 +2024-09-30T06:47:34.224563Z INFO fork_choice_control::block_processor: Validating block with slot: 5469 +2024-09-30T06:47:34.224591Z INFO fork_choice_control::block_processor: Validating block with slot: 5468 +2024-09-30T06:47:34.226190Z INFO fork_choice_control::block_processor: Validating block with slot: 5470 +2024-09-30T06:47:34.253881Z INFO fork_choice_control::block_processor: Validating block with slot: 5471 +2024-09-30T06:47:34.260142Z INFO fork_choice_control::block_processor: Validating block with slot: 5472 +2024-09-30T06:47:34.272583Z INFO fork_choice_control::block_processor: Validating block with slot: 5474 +2024-09-30T06:47:34.283894Z INFO fork_choice_control::block_processor: Validating block with slot: 5475 +2024-09-30T06:47:34.299127Z INFO fork_choice_control::block_processor: Validating block with slot: 5476 +2024-09-30T06:47:34.299132Z INFO fork_choice_control::block_processor: Validating block with slot: 5478 +2024-09-30T06:47:34.299169Z INFO fork_choice_control::block_processor: Validating block with slot: 5477 +2024-09-30T06:47:34.310595Z INFO fork_choice_control::block_processor: Validating block with slot: 5479 +2024-09-30T06:47:34.310597Z INFO fork_choice_control::block_processor: Validating block with slot: 5480 +2024-09-30T06:47:34.319809Z INFO fork_choice_control::block_processor: Validating block with slot: 5370 +2024-09-30T06:47:34.321080Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc1c610bb851fbd44c5ae94c89acc81c28372bb88eca61fa0107ac88c9591a9b0, slot: 5370 +2024-09-30T06:47:34.339898Z INFO fork_choice_control::block_processor: Validating block with slot: 5481 +2024-09-30T06:47:34.346263Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5370 +2024-09-30T06:47:34.346277Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5370 +2024-09-30T06:47:34.351634Z INFO fork_choice_control::block_processor: Validating block with slot: 5482 +2024-09-30T06:47:34.365979Z INFO fork_choice_control::block_processor: Validating block with slot: 5484 +2024-09-30T06:47:34.365984Z INFO fork_choice_control::block_processor: Validating block with slot: 5371 +2024-09-30T06:47:34.365989Z INFO fork_choice_control::block_processor: Validating block with slot: 5483 +2024-09-30T06:47:34.367120Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc2af0b355740dc4e2d0560ba2d2539886ea6c7596ee9744f60b085c54a27f37d, slot: 5371 +2024-09-30T06:47:34.380097Z INFO fork_choice_control::block_processor: Validating block with slot: 5372 +2024-09-30T06:47:34.383051Z INFO fork_choice_control::block_processor: Validating block with slot: 5373 +2024-09-30T06:47:34.386826Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5371 +2024-09-30T06:47:34.386856Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5371 +2024-09-30T06:47:34.393339Z INFO fork_choice_control::block_processor: Validating block with slot: 5375 +2024-09-30T06:47:34.393345Z INFO fork_choice_control::block_processor: Validating block with slot: 5374 +2024-09-30T06:47:34.399903Z INFO fork_choice_control::block_processor: Validating block with slot: 5377 +2024-09-30T06:47:34.399905Z INFO fork_choice_control::block_processor: Validating block with slot: 5376 +2024-09-30T06:47:34.403928Z INFO fork_choice_control::block_processor: Validating block with slot: 5372 +2024-09-30T06:47:34.404922Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd380bd87f486d39be2b061b747111ae4e7d0622e306100228f9a9f7cfba1c314, slot: 5372 +2024-09-30T06:47:34.409334Z INFO fork_choice_control::block_processor: Validating block with slot: 5485 +2024-09-30T06:47:34.424563Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5372 +2024-09-30T06:47:34.424586Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5372 +2024-09-30T06:47:34.441733Z INFO fork_choice_control::block_processor: Validating block with slot: 5373 +2024-09-30T06:47:34.443575Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2b2a5b0a108567fa3710f7d4733b65dd948dff103bdd85f88ce52d538e51ca52, slot: 5373 +2024-09-30T06:47:34.456241Z INFO fork_choice_control::block_processor: Validating block with slot: 5378 +2024-09-30T06:47:34.459825Z INFO fork_choice_control::block_processor: Validating block with slot: 5379 +2024-09-30T06:47:34.460766Z INFO fork_choice_control::block_processor: Validating block with slot: 5380 +2024-09-30T06:47:34.463545Z INFO fork_choice_control::block_processor: Validating block with slot: 5381 +2024-09-30T06:47:34.463795Z INFO fork_choice_control::block_processor: Validating block with slot: 5486 +2024-09-30T06:47:34.463807Z INFO fork_choice_control::block_processor: Validating block with slot: 5383 +2024-09-30T06:47:34.465580Z INFO fork_choice_control::block_processor: Validating block with slot: 5382 +2024-09-30T06:47:34.468323Z INFO fork_choice_control::block_processor: Validating block with slot: 5384 +2024-09-30T06:47:34.473398Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5373 +2024-09-30T06:47:34.473424Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5373 +2024-09-30T06:47:34.485615Z INFO fork_choice_control::block_processor: Validating block with slot: 5488 +2024-09-30T06:47:34.485859Z INFO fork_choice_control::block_processor: Validating block with slot: 5487 +2024-09-30T06:47:34.493266Z INFO fork_choice_control::block_processor: Validating block with slot: 5374 +2024-09-30T06:47:34.494686Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x88628c47316746c61453b6f6bf63d49836d0a1ca5c0e3a238bb130892cbe2678, slot: 5374 +2024-09-30T06:47:34.508567Z INFO fork_choice_control::block_processor: Validating block with slot: 5385 +2024-09-30T06:47:34.508684Z INFO fork_choice_control::block_processor: Validating block with slot: 5386 +2024-09-30T06:47:34.510698Z INFO fork_choice_control::block_processor: Validating block with slot: 5489 +2024-09-30T06:47:34.515668Z INFO fork_choice_control::block_processor: Validating block with slot: 5387 +2024-09-30T06:47:34.519160Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5374 +2024-09-30T06:47:34.519184Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5374 +2024-09-30T06:47:34.526103Z INFO fork_choice_control::block_processor: Validating block with slot: 5491 +2024-09-30T06:47:34.526113Z INFO fork_choice_control::block_processor: Validating block with slot: 5490 +2024-09-30T06:47:34.535332Z INFO fork_choice_control::block_processor: Validating block with slot: 5388 +2024-09-30T06:47:34.539384Z INFO fork_choice_control::block_processor: Validating block with slot: 5492 +2024-09-30T06:47:34.547802Z INFO fork_choice_control::block_processor: Validating block with slot: 5375 +2024-09-30T06:47:34.549077Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfb64d8f1967ea641e6bbfb69813945a05a7d7de3a15adad673afdbb82bfe9507, slot: 5375 +2024-09-30T06:47:34.552505Z INFO fork_choice_control::block_processor: Validating block with slot: 5389 +2024-09-30T06:47:34.556319Z INFO fork_choice_control::block_processor: Validating block with slot: 5493 +2024-09-30T06:47:34.556372Z INFO fork_choice_control::block_processor: Validating block with slot: 5390 +2024-09-30T06:47:34.565288Z INFO fork_choice_control::block_processor: Validating block with slot: 5494 +2024-09-30T06:47:34.565424Z INFO fork_choice_control::block_processor: Validating block with slot: 5495 +2024-09-30T06:47:34.566333Z INFO fork_choice_control::block_processor: Validating block with slot: 5391 +2024-09-30T06:47:34.570693Z INFO fork_choice_control::block_processor: Validating block with slot: 5393 +2024-09-30T06:47:34.572135Z INFO fork_choice_control::block_processor: Validating block with slot: 5496 +2024-09-30T06:47:34.575211Z INFO fork_choice_control::block_processor: Validating block with slot: 5394 +2024-09-30T06:47:34.575286Z INFO fork_choice_control::block_processor: Validating block with slot: 5395 +2024-09-30T06:47:34.580973Z INFO fork_choice_control::block_processor: Validating block with slot: 5396 +2024-09-30T06:47:34.580976Z INFO fork_choice_control::block_processor: Validating block with slot: 5498 +2024-09-30T06:47:34.581075Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5375 +2024-09-30T06:47:34.581088Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5375 +2024-09-30T06:47:34.594888Z INFO fork_choice_control::block_processor: Validating block with slot: 5497 +2024-09-30T06:47:34.598122Z INFO fork_choice_control::block_processor: Validating block with slot: 5397 +2024-09-30T06:47:34.599163Z INFO fork_choice_control::block_processor: Validating block with slot: 5376 +2024-09-30T06:47:34.600255Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe4c9fef875723a6c1bf7a0788fa52e7e235de50ac8f3f653cac12b3c8a0bc4fd, slot: 5376 +2024-09-30T06:47:34.604991Z INFO fork_choice_control::block_processor: Validating block with slot: 5398 +2024-09-30T06:47:34.605014Z INFO fork_choice_control::block_processor: Validating block with slot: 5499 +2024-09-30T06:47:34.607540Z INFO fork_choice_control::block_processor: Validating block with slot: 5399 +2024-09-30T06:47:34.614946Z INFO fork_choice_control::block_processor: Validating block with slot: 5500 +2024-09-30T06:47:34.614949Z INFO fork_choice_control::block_processor: Validating block with slot: 5400 +2024-09-30T06:47:34.620339Z INFO fork_choice_control::block_processor: Validating block with slot: 5401 +2024-09-30T06:47:34.620384Z INFO fork_choice_control::block_processor: Validating block with slot: 5501 +2024-09-30T06:47:34.625192Z INFO fork_choice_control::block_processor: Validating block with slot: 5402 +2024-09-30T06:47:34.629251Z INFO fork_choice_control::block_processor: Validating block with slot: 5502 +2024-09-30T06:47:34.654317Z INFO fork_choice_control::block_processor: Validating block with slot: 5403 +2024-09-30T06:47:34.654370Z INFO fork_choice_control::block_processor: Validating block with slot: 5404 +2024-09-30T06:47:34.655913Z INFO fork_choice_control::block_processor: Validating block with slot: 5405 +2024-09-30T06:47:34.656271Z INFO fork_choice_control::block_processor: Validating block with slot: 5406 +2024-09-30T06:47:34.659008Z INFO fork_choice_control::block_processor: Validating block with slot: 5407 +2024-09-30T06:47:34.659646Z INFO fork_choice_control::block_processor: Validating block with slot: 5503 +2024-09-30T06:47:34.666393Z INFO fork_choice_control::block_processor: Validating block with slot: 5409 +2024-09-30T06:47:34.666398Z INFO fork_choice_control::block_processor: Validating block with slot: 5408 +2024-09-30T06:47:34.666497Z INFO fork_choice_control::block_processor: Validating block with slot: 5504 +2024-09-30T06:47:34.682039Z INFO fork_choice_control::block_processor: Validating block with slot: 5412 +2024-09-30T06:47:34.682060Z INFO fork_choice_control::block_processor: Validating block with slot: 5413 +2024-09-30T06:47:34.682069Z INFO fork_choice_control::block_processor: Validating block with slot: 5410 +2024-09-30T06:47:34.682055Z INFO fork_choice_control::block_processor: Validating block with slot: 5411 +2024-09-30T06:47:34.686975Z INFO fork_choice_control::block_processor: Validating block with slot: 5414 +2024-09-30T06:47:34.686983Z INFO fork_choice_control::block_processor: Validating block with slot: 5415 +2024-09-30T06:47:34.689759Z INFO fork_choice_control::block_processor: Validating block with slot: 5505 +2024-09-30T06:47:34.695105Z INFO fork_choice_control::block_processor: Validating block with slot: 5417 +2024-09-30T06:47:34.695107Z INFO fork_choice_control::block_processor: Validating block with slot: 5416 +2024-09-30T06:47:34.698114Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5376 +2024-09-30T06:47:34.698139Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5376 +2024-09-30T06:47:34.701747Z INFO fork_choice_control::block_processor: Validating block with slot: 5418 +2024-09-30T06:47:34.708648Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5376) +2024-09-30T06:47:34.708841Z INFO fork_choice_control::block_processor: Validating block with slot: 5377 +2024-09-30T06:47:34.709955Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb0f6c336b5a608d28ceb08b88a632910e69fd74935843e51d4e543a2e6de5f00, slot: 5377 +2024-09-30T06:47:34.718674Z INFO fork_choice_control::block_processor: Validating block with slot: 5506 +2024-09-30T06:47:34.718695Z INFO fork_choice_control::block_processor: Validating block with slot: 5419 +2024-09-30T06:47:34.718714Z INFO fork_choice_control::block_processor: Validating block with slot: 5420 +2024-09-30T06:47:34.718841Z INFO fork_choice_control::block_processor: Validating block with slot: 5507 +2024-09-30T06:47:34.730397Z INFO fork_choice_control::block_processor: Validating block with slot: 5422 +2024-09-30T06:47:34.730405Z INFO fork_choice_control::block_processor: Validating block with slot: 5423 +2024-09-30T06:47:34.730433Z INFO fork_choice_control::block_processor: Validating block with slot: 5424 +2024-09-30T06:47:34.730562Z INFO fork_choice_control::block_processor: Validating block with slot: 5421 +2024-09-30T06:47:34.740347Z INFO fork_choice_control::block_processor: Validating block with slot: 5425 +2024-09-30T06:47:34.740382Z INFO fork_choice_control::block_processor: Validating block with slot: 5508 +2024-09-30T06:47:34.740373Z INFO fork_choice_control::block_processor: Validating block with slot: 5426 +2024-09-30T06:47:34.766145Z INFO fork_choice_control::block_processor: Validating block with slot: 5427 +2024-09-30T06:47:34.766174Z INFO fork_choice_control::block_processor: Validating block with slot: 5509 +2024-09-30T06:47:34.766385Z INFO fork_choice_control::block_processor: Validating block with slot: 5510 +2024-09-30T06:47:34.766531Z INFO fork_choice_control::block_processor: Validating block with slot: 5428 +2024-09-30T06:47:34.782780Z INFO fork_choice_control::block_processor: Validating block with slot: 5511 +2024-09-30T06:47:34.782880Z INFO fork_choice_control::block_processor: Validating block with slot: 5513 +2024-09-30T06:47:34.785259Z INFO fork_choice_control::block_processor: Validating block with slot: 5512 +2024-09-30T06:47:34.786541Z INFO fork_choice_control::block_processor: Validating block with slot: 5514 +2024-09-30T06:47:34.787720Z INFO fork_choice_control::block_processor: Validating block with slot: 5515 +2024-09-30T06:47:34.805059Z INFO fork_choice_control::block_processor: Validating block with slot: 5429 +2024-09-30T06:47:34.805071Z INFO fork_choice_control::block_processor: Validating block with slot: 5517 +2024-09-30T06:47:34.805090Z INFO fork_choice_control::block_processor: Validating block with slot: 5518 +2024-09-30T06:47:34.805122Z INFO fork_choice_control::block_processor: Validating block with slot: 5430 +2024-09-30T06:47:34.805447Z INFO fork_choice_control::block_processor: Validating block with slot: 5519 +2024-09-30T06:47:34.805945Z INFO fork_choice_control::block_processor: Validating block with slot: 5516 +2024-09-30T06:47:34.807201Z INFO fork_choice_control::block_processor: Validating block with slot: 5520 +2024-09-30T06:47:34.808030Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5377 +2024-09-30T06:47:34.808076Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5377 +2024-09-30T06:47:34.818927Z INFO fork_choice_control::block_processor: Validating block with slot: 5378 +2024-09-30T06:47:34.819143Z INFO fork_choice_control::block_processor: Validating block with slot: 5431 +2024-09-30T06:47:34.819169Z INFO fork_choice_control::block_processor: Validating block with slot: 5521 +2024-09-30T06:47:34.819216Z INFO fork_choice_control::block_processor: Validating block with slot: 5522 +2024-09-30T06:47:34.819304Z INFO fork_choice_control::block_processor: Validating block with slot: 5432 +2024-09-30T06:47:34.819764Z INFO fork_choice_control::block_processor: Validating block with slot: 5523 +2024-09-30T06:47:34.822008Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd13d36d11f9aeba70236e967deb21daa3578edb59b75f9d97da3c1bdba9f80d5, slot: 5378 +2024-09-30T06:47:34.823348Z INFO fork_choice_control::block_processor: Validating block with slot: 5524 +2024-09-30T06:47:34.832821Z INFO fork_choice_control::block_processor: Validating block with slot: 5525 +2024-09-30T06:47:34.839954Z INFO fork_choice_control::block_processor: Validating block with slot: 5433 +2024-09-30T06:47:34.851761Z INFO fork_choice_control::block_processor: Validating block with slot: 5530 +2024-09-30T06:47:34.851778Z INFO fork_choice_control::block_processor: Validating block with slot: 5527 +2024-09-30T06:47:34.851793Z INFO fork_choice_control::block_processor: Validating block with slot: 5528 +2024-09-30T06:47:34.851804Z INFO fork_choice_control::block_processor: Validating block with slot: 5526 +2024-09-30T06:47:34.853079Z INFO fork_choice_control::block_processor: Validating block with slot: 5531 +2024-09-30T06:47:34.853933Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5378 +2024-09-30T06:47:34.853943Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5378 +2024-09-30T06:47:34.865291Z INFO fork_choice_control::block_processor: Validating block with slot: 5379 +2024-09-30T06:47:34.867092Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x128b30ab56010d3e6c92b41b536f83f8b9a24524190b68ed422c9a45dbb683e7, slot: 5379 +2024-09-30T06:47:34.875136Z INFO fork_choice_control::block_processor: Validating block with slot: 5532 +2024-09-30T06:47:34.878110Z INFO fork_choice_control::block_processor: Validating block with slot: 5534 +2024-09-30T06:47:34.878382Z INFO fork_choice_control::block_processor: Validating block with slot: 5533 +2024-09-30T06:47:34.879513Z INFO fork_choice_control::block_processor: Validating block with slot: 5535 +2024-09-30T06:47:34.879605Z INFO fork_choice_control::block_processor: Validating block with slot: 5536 +2024-09-30T06:47:34.880677Z INFO fork_choice_control::block_processor: Validating block with slot: 5537 +2024-09-30T06:47:34.881755Z INFO fork_choice_control::block_processor: Validating block with slot: 5538 +2024-09-30T06:47:34.881762Z INFO fork_choice_control::block_processor: Validating block with slot: 5539 +2024-09-30T06:47:34.881835Z INFO fork_choice_control::block_processor: Validating block with slot: 5540 +2024-09-30T06:47:34.882855Z INFO fork_choice_control::block_processor: Validating block with slot: 5542 +2024-09-30T06:47:34.883266Z INFO fork_choice_control::block_processor: Validating block with slot: 5543 +2024-09-30T06:47:34.883522Z INFO fork_choice_control::block_processor: Validating block with slot: 5544 +2024-09-30T06:47:34.890024Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5379 +2024-09-30T06:47:34.890042Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5379 +2024-09-30T06:47:34.901524Z INFO fork_choice_control::block_processor: Validating block with slot: 5380 +2024-09-30T06:47:34.901691Z INFO fork_choice_control::block_processor: Validating block with slot: 5545 +2024-09-30T06:47:34.901773Z INFO fork_choice_control::block_processor: Validating block with slot: 5546 +2024-09-30T06:47:34.901775Z INFO fork_choice_control::block_processor: Validating block with slot: 5547 +2024-09-30T06:47:34.902663Z INFO fork_choice_control::block_processor: Validating block with slot: 5548 +2024-09-30T06:47:34.902735Z INFO fork_choice_control::block_processor: Validating block with slot: 5549 +2024-09-30T06:47:34.902734Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x64c8e251e1fcea7e3756114190f88b4eb940b74aed47bd2de9e205673e2128fe, slot: 5380 +2024-09-30T06:47:34.903331Z INFO fork_choice_control::block_processor: Validating block with slot: 5550 +2024-09-30T06:47:34.903612Z INFO fork_choice_control::block_processor: Validating block with slot: 5551 +2024-09-30T06:47:34.903951Z INFO fork_choice_control::block_processor: Validating block with slot: 5552 +2024-09-30T06:47:34.904405Z INFO fork_choice_control::block_processor: Validating block with slot: 5553 +2024-09-30T06:47:34.904892Z INFO fork_choice_control::block_processor: Validating block with slot: 5554 +2024-09-30T06:47:34.905834Z INFO fork_choice_control::block_processor: Validating block with slot: 5555 +2024-09-30T06:47:34.911775Z INFO fork_choice_control::block_processor: Validating block with slot: 5556 +2024-09-30T06:47:34.914789Z INFO fork_choice_control::block_processor: Validating block with slot: 5557 +2024-09-30T06:47:34.915520Z INFO fork_choice_control::block_processor: Validating block with slot: 5558 +2024-09-30T06:47:34.916560Z INFO fork_choice_control::block_processor: Validating block with slot: 5559 +2024-09-30T06:47:34.916719Z INFO fork_choice_control::block_processor: Validating block with slot: 5560 +2024-09-30T06:47:34.925208Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5380 +2024-09-30T06:47:34.925226Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5380 +2024-09-30T06:47:34.936439Z INFO fork_choice_control::block_processor: Validating block with slot: 5381 +2024-09-30T06:47:34.937776Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x09013ed2f74f09b44e6b26d96a984f74fe28c4f5075564ed5e6cbd06ed658b7f, slot: 5381 +2024-09-30T06:47:34.955497Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5381 +2024-09-30T06:47:34.955516Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5381 +2024-09-30T06:47:34.966904Z INFO fork_choice_control::block_processor: Validating block with slot: 5382 +2024-09-30T06:47:34.968302Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x833f3e39c1399d86e1a19527eabe75e1b520612b212c595fe2f48033c535f50d, slot: 5382 +2024-09-30T06:47:34.986300Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5382 +2024-09-30T06:47:34.986318Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5382 +2024-09-30T06:47:34.998122Z INFO fork_choice_control::block_processor: Validating block with slot: 5383 +2024-09-30T06:47:34.999084Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa8dad36929f26fe8531b9bb640a1bea0e9731307b44cf40dbcbb4f7f46aefbef, slot: 5383 +2024-09-30T06:47:35.014550Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5383 +2024-09-30T06:47:35.014564Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5383 +2024-09-30T06:47:35.026616Z INFO fork_choice_control::block_processor: Validating block with slot: 5384 +2024-09-30T06:47:35.027593Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xee28a4025738a03a1d009f5a30f476418cedec72f42c70b58f70359a9ec54534, slot: 5384 +2024-09-30T06:47:35.042253Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5384 +2024-09-30T06:47:35.042271Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5384 +2024-09-30T06:47:35.054252Z INFO fork_choice_control::block_processor: Validating block with slot: 5385 +2024-09-30T06:47:35.055347Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4db46a3d08dd91c46f8dfa6fdaeaabf4c4ee9df3a3b33ef32769f15ae87e8f41, slot: 5385 +2024-09-30T06:47:35.070453Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5385 +2024-09-30T06:47:35.070475Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5385 +2024-09-30T06:47:35.082425Z INFO fork_choice_control::block_processor: Validating block with slot: 5386 +2024-09-30T06:47:35.083518Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x38656d61a6c473b64088bd16bf2bf1e83d328f44156d5a3ae6c205080863f489, slot: 5386 +2024-09-30T06:47:35.105928Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5386 +2024-09-30T06:47:35.105948Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5386 +2024-09-30T06:47:35.117893Z INFO fork_choice_control::block_processor: Validating block with slot: 5387 +2024-09-30T06:47:35.118857Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3c42d501c2254cdb59ad2edcb42f57a3b46c34b51a6f29bf570c007837f56b0a, slot: 5387 +2024-09-30T06:47:35.134421Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5387 +2024-09-30T06:47:35.134439Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5387 +2024-09-30T06:47:35.147049Z INFO fork_choice_control::block_processor: Validating block with slot: 5388 +2024-09-30T06:47:35.148029Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x91dae401d7bc6e6d1e05b21f0414055fc3b0b7731722980335c5edf7d7bef4fe, slot: 5388 +2024-09-30T06:47:35.149192Z INFO fork_choice_control::block_processor: Validating block with slot: 5561 +2024-09-30T06:47:35.162906Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5388 +2024-09-30T06:47:35.162922Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5388 +2024-09-30T06:47:35.175600Z INFO fork_choice_control::block_processor: Validating block with slot: 5389 +2024-09-30T06:47:35.178040Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf3afaa72df4c1749540a44ded151cfe1ac06d6bffb5fe59eb866f3ce195b0d5b, slot: 5389 +2024-09-30T06:47:35.196040Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5389 +2024-09-30T06:47:35.196058Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5389 +2024-09-30T06:47:35.209420Z INFO fork_choice_control::block_processor: Validating block with slot: 5390 +2024-09-30T06:47:35.210515Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x21f970d66dbb80b8442c87895b107783d4c7de99aa56e04c5acce905a1acbc17, slot: 5390 +2024-09-30T06:47:35.227666Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5390 +2024-09-30T06:47:35.227687Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5390 +2024-09-30T06:47:35.240855Z INFO fork_choice_control::block_processor: Validating block with slot: 5391 +2024-09-30T06:47:35.241823Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd49f9cc5e1277a3a98f90596957d9560094a5f5ddedaab0156df48850a958242, slot: 5391 +2024-09-30T06:47:35.256929Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5391 +2024-09-30T06:47:35.256951Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5391 +2024-09-30T06:47:35.269825Z INFO fork_choice_control::block_processor: Validating block with slot: 5393 +2024-09-30T06:47:35.272099Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa95a2fea9414bb46078b3bee3e68fdcf994299567434b4be0bb96d9322c560ab, slot: 5393 +2024-09-30T06:47:35.298930Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5393 +2024-09-30T06:47:35.298947Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5393 +2024-09-30T06:47:35.312920Z INFO fork_choice_control::block_processor: Validating block with slot: 5394 +2024-09-30T06:47:35.314292Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe88d59b52e43b13f558d68418253ea4bebde8e11d686551158c2cc4276425cd2, slot: 5394 +2024-09-30T06:47:35.330700Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5394 +2024-09-30T06:47:35.330717Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5394 +2024-09-30T06:47:35.344710Z INFO fork_choice_control::block_processor: Validating block with slot: 5395 +2024-09-30T06:47:35.345802Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf62900d7324c4f6b768f60ac88c17cf572d993a3a8a54cc324676f17590b384a, slot: 5395 +2024-09-30T06:47:35.361636Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5395 +2024-09-30T06:47:35.361651Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5395 +2024-09-30T06:47:35.375554Z INFO fork_choice_control::block_processor: Validating block with slot: 5396 +2024-09-30T06:47:35.376510Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5e1e5955b2c2b4c6bac4742d777f8509f08c95b8e7b550dbbc1bbfc37b55a5a2, slot: 5396 +2024-09-30T06:47:35.393590Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5396 +2024-09-30T06:47:35.393613Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5396 +2024-09-30T06:47:35.407644Z INFO fork_choice_control::block_processor: Validating block with slot: 5397 +2024-09-30T06:47:35.409825Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd02d4ff31aa7bb0b497808d65116f1ba04eb953c23bdefad5dd48bdf5b3a416e, slot: 5397 +2024-09-30T06:47:35.431796Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5397 +2024-09-30T06:47:35.431815Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5397 +2024-09-30T06:47:35.446297Z INFO fork_choice_control::block_processor: Validating block with slot: 5398 +2024-09-30T06:47:35.447387Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xed3da2b631e96c12e7aff8a76a7b0903047cb384e604cf2a53fd4e8caaa7042e, slot: 5398 +2024-09-30T06:47:35.462870Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5398 +2024-09-30T06:47:35.462887Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5398 +2024-09-30T06:47:35.477569Z INFO fork_choice_control::block_processor: Validating block with slot: 5399 +2024-09-30T06:47:35.478540Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x72c43bae043812ee242a8da2eccdecafcaa408835a41f9c67c26b6b810620208, slot: 5399 +2024-09-30T06:47:35.494733Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5399 +2024-09-30T06:47:35.494750Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5399 +2024-09-30T06:47:35.514976Z INFO fork_choice_control::block_processor: Validating block with slot: 5400 +2024-09-30T06:47:35.514980Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 167, root: 0x6baffbe5bcbeb94e890a450eeb83eb38bca73358559adb1d585ee1641d4e81d6, head slot: 5399, head root: 0x72c43bae043812ee242a8da2eccdecafcaa408835a41f9c67c26b6b810620208) +2024-09-30T06:47:35.516240Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x473822c1b0c65b76c56a85d8eb2fa42380e7c90bc85080b8a45ce191e4091c68, slot: 5400 +2024-09-30T06:47:35.539893Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5400 +2024-09-30T06:47:35.539913Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5400 +2024-09-30T06:47:35.555157Z INFO fork_choice_control::block_processor: Validating block with slot: 5401 +2024-09-30T06:47:35.556562Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x82290eb35dc9e05201d03e00eb8b845ca387ba221ce8c4a0c32f16ec8fbd71e3, slot: 5401 +2024-09-30T06:47:35.578793Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5401 +2024-09-30T06:47:35.578815Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5401 +2024-09-30T06:47:35.594629Z INFO fork_choice_control::block_processor: Validating block with slot: 5402 +2024-09-30T06:47:35.596884Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x36678ca163ad308dad06eff4a168ef319d97d0e48b3dfdc5ebb74a70d47c8b97, slot: 5402 +2024-09-30T06:47:35.617249Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5402 +2024-09-30T06:47:35.617267Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5402 +2024-09-30T06:47:35.633488Z INFO fork_choice_control::block_processor: Validating block with slot: 5403 +2024-09-30T06:47:35.634610Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x18d7096434a1a1d4137423a88bafe1b478e6e6fd48be1dcc1c7e4dd4a4b2de2c, slot: 5403 +2024-09-30T06:47:35.645188Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 5344 +2024-09-30T06:47:35.652980Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5403 +2024-09-30T06:47:35.653003Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5403 +2024-09-30T06:47:35.669076Z INFO fork_choice_control::block_processor: Validating block with slot: 5404 +2024-09-30T06:47:35.671385Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x96eb82513d7e95987b3ebcb36b3f34828281426ca2d5154c955523f1bd584fe2, slot: 5404 +2024-09-30T06:47:35.690786Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5404 +2024-09-30T06:47:35.690808Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5404 +2024-09-30T06:47:35.707290Z INFO fork_choice_control::block_processor: Validating block with slot: 5405 +2024-09-30T06:47:35.709125Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1541330a63d61e664c48a8a962aa1d505f6d89377068488fe39155f1a67fdba0, slot: 5405 +2024-09-30T06:47:35.728361Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5405 +2024-09-30T06:47:35.728379Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5405 +2024-09-30T06:47:35.744928Z INFO fork_choice_control::block_processor: Validating block with slot: 5406 +2024-09-30T06:47:35.746617Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfba875c4cd38a95565f1504775ec63613c598bbbe8f3af54837bf82483bc0c27, slot: 5406 +2024-09-30T06:47:35.765110Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5406 +2024-09-30T06:47:35.765130Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5406 +2024-09-30T06:47:35.782022Z INFO fork_choice_control::block_processor: Validating block with slot: 5407 +2024-09-30T06:47:35.783008Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1228368409513fab24d88437816aa49815fc806c8a26edc2102989054ae397e6, slot: 5407 +2024-09-30T06:47:35.801334Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5407 +2024-09-30T06:47:35.801350Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5407 +2024-09-30T06:47:35.818477Z INFO fork_choice_control::block_processor: Validating block with slot: 5408 +2024-09-30T06:47:35.819575Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf8ebd813890cb8abfb1f5f732ee40c57471eddf1c0d1e55255e41638a7142053, slot: 5408 +2024-09-30T06:47:35.916849Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5408 +2024-09-30T06:47:35.916872Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5408 +2024-09-30T06:47:35.927232Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5408) +2024-09-30T06:47:35.927365Z INFO fork_choice_control::block_processor: Validating block with slot: 5409 +2024-09-30T06:47:35.928756Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1480eab58db38bd5ebd4a4af28af31f8bd9c483845ac0699209b5929c7577235, slot: 5409 +2024-09-30T06:47:36.002495Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5409 +2024-09-30T06:47:36.002514Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5409 +2024-09-30T06:47:36.013044Z INFO fork_choice_control::block_processor: Validating block with slot: 5410 +2024-09-30T06:47:36.014582Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5cc1830f0876e9c2a0fa4ab9c430bb4c98c34bb9c21e708868de73f11f7537be, slot: 5410 +2024-09-30T06:47:36.022706Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5410 +2024-09-30T06:47:36.022727Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5410 +2024-09-30T06:47:36.033494Z INFO fork_choice_control::block_processor: Validating block with slot: 5411 +2024-09-30T06:47:36.034618Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x25145394891e960655e3e14cef281af648366073effb063145782327069799a1, slot: 5411 +2024-09-30T06:47:36.041773Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5411 +2024-09-30T06:47:36.041792Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5411 +2024-09-30T06:47:36.052767Z INFO fork_choice_control::block_processor: Validating block with slot: 5412 +2024-09-30T06:47:36.056612Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7ed15bebc0b7815c0ab17eca2ebf43a5f31bc161e287bfb04d6ace63af617f3d, slot: 5412 +2024-09-30T06:47:36.069550Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5412 +2024-09-30T06:47:36.069565Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5412 +2024-09-30T06:47:36.081175Z INFO fork_choice_control::block_processor: Validating block with slot: 5413 +2024-09-30T06:47:36.083289Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc499b47d4b056f0029c8dec36c046e2be539b123af7def2d01e52e5bdee9f9d3, slot: 5413 +2024-09-30T06:47:36.094493Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5413 +2024-09-30T06:47:36.094515Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5413 +2024-09-30T06:47:36.106570Z INFO fork_choice_control::block_processor: Validating block with slot: 5414 +2024-09-30T06:47:36.107549Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x758670c08fd9314d6f0e8bb905ca6f839495d4ea07a3653d5094c25187c7adb3, slot: 5414 +2024-09-30T06:47:36.113947Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5414 +2024-09-30T06:47:36.113963Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5414 +2024-09-30T06:47:36.126366Z INFO fork_choice_control::block_processor: Validating block with slot: 5415 +2024-09-30T06:47:36.127481Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa37b2bc5f4409d6bf3b6d107379e10652c6c318345edf1fdafa91ac150acd730, slot: 5415 +2024-09-30T06:47:36.133566Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5415 +2024-09-30T06:47:36.133579Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5415 +2024-09-30T06:47:36.146428Z INFO fork_choice_control::block_processor: Validating block with slot: 5416 +2024-09-30T06:47:36.147697Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe90cf0ab64be37d3a17985f950ab62fa4d54060efea2e5af3c390cc9a95f4be1, slot: 5416 +2024-09-30T06:47:36.155029Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5416 +2024-09-30T06:47:36.155050Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5416 +2024-09-30T06:47:36.167427Z INFO fork_choice_control::block_processor: Validating block with slot: 5417 +2024-09-30T06:47:36.168390Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x50b0b45f3d5179e64c713f54591fae90f9787bfcb9f9c6ad6d85ef6efde1564e, slot: 5417 +2024-09-30T06:47:36.174181Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5417 +2024-09-30T06:47:36.174199Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5417 +2024-09-30T06:47:36.186663Z INFO fork_choice_control::block_processor: Validating block with slot: 5418 +2024-09-30T06:47:36.187663Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbbe6f5d4795163c1eac94d764df816fc01a45bb26f7d13ee667e0e87ff48371f, slot: 5418 +2024-09-30T06:47:36.193431Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5418 +2024-09-30T06:47:36.193444Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5418 +2024-09-30T06:47:36.206285Z INFO fork_choice_control::block_processor: Validating block with slot: 5419 +2024-09-30T06:47:36.207267Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x57b7bdca1cafad765578316a04fe52c36e4ced613c8365835a6ec40f5e909402, slot: 5419 +2024-09-30T06:47:36.213416Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5419 +2024-09-30T06:47:36.213428Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5419 +2024-09-30T06:47:36.226579Z INFO fork_choice_control::block_processor: Validating block with slot: 5420 +2024-09-30T06:47:36.227542Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x22ad9482bf4158cf3e1a988b0c25dd54bf0762bfc4ca245f8790bb0051fc07f2, slot: 5420 +2024-09-30T06:47:36.233528Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5420 +2024-09-30T06:47:36.233541Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5420 +2024-09-30T06:47:36.246865Z INFO fork_choice_control::block_processor: Validating block with slot: 5421 +2024-09-30T06:47:36.248092Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2a1a89619dc25c9fa28d22f49e5d1e69a3049ac999c2f3d32a426ac2f344a2ab, slot: 5421 +2024-09-30T06:47:36.254327Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5421 +2024-09-30T06:47:36.254350Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5421 +2024-09-30T06:47:36.267503Z INFO fork_choice_control::block_processor: Validating block with slot: 5422 +2024-09-30T06:47:36.268465Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8164c2d4d9f93882a2fabb9624167f511ae5b485afbd6c16cf5272dcdbb89880, slot: 5422 +2024-09-30T06:47:36.274266Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5422 +2024-09-30T06:47:36.274286Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5422 +2024-09-30T06:47:36.287780Z INFO fork_choice_control::block_processor: Validating block with slot: 5423 +2024-09-30T06:47:36.288749Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc3ce2be5f0273784b3d9583435f8f3f2403b33363bab651a49752988c4c13d99, slot: 5423 +2024-09-30T06:47:36.294400Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5423 +2024-09-30T06:47:36.294411Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5423 +2024-09-30T06:47:36.308041Z INFO fork_choice_control::block_processor: Validating block with slot: 5424 +2024-09-30T06:47:36.311328Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3946a92d1a2be3b6d7c832ed1cb921a12b074e18655967f4e660c2d452f7bf6e, slot: 5424 +2024-09-30T06:47:36.323038Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5424 +2024-09-30T06:47:36.323062Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5424 +2024-09-30T06:47:36.337222Z INFO fork_choice_control::block_processor: Validating block with slot: 5425 +2024-09-30T06:47:36.340388Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf83601d1c1ae231b7858f856b73ffef052225d2cef7a8206f5b2f764f9374b2d, slot: 5425 +2024-09-30T06:47:36.351651Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5425 +2024-09-30T06:47:36.351667Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5425 +2024-09-30T06:47:36.366373Z INFO fork_choice_control::block_processor: Validating block with slot: 5426 +2024-09-30T06:47:36.367920Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf0bf687aac6b2c99e7622d156e4cf2e50c4523fcb717a1afe2583a96d5aceffe, slot: 5426 +2024-09-30T06:47:36.376196Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5426 +2024-09-30T06:47:36.376218Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5426 +2024-09-30T06:47:36.391106Z INFO fork_choice_control::block_processor: Validating block with slot: 5427 +2024-09-30T06:47:36.392202Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x25dad6d341844ea3a4ee54696e382ca472b0dc492e4837806c43285c27eb0b51, slot: 5427 +2024-09-30T06:47:36.398234Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5427 +2024-09-30T06:47:36.398249Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5427 +2024-09-30T06:47:36.413461Z INFO fork_choice_control::block_processor: Validating block with slot: 5428 +2024-09-30T06:47:36.414818Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x77952f298cb2feaf655709135f4b88e4812b46b9f730f50c92857632e4e81c56, slot: 5428 +2024-09-30T06:47:36.421467Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5428 +2024-09-30T06:47:36.421500Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5428 +2024-09-30T06:47:36.436578Z INFO fork_choice_control::block_processor: Validating block with slot: 5429 +2024-09-30T06:47:36.437971Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc9584260534e6dfe01fb2b77a97c62f34932e8cccfe22b10808ebdd046311c36, slot: 5429 +2024-09-30T06:47:36.444488Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5429 +2024-09-30T06:47:36.444500Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5429 +2024-09-30T06:47:36.460111Z INFO fork_choice_control::block_processor: Validating block with slot: 5430 +2024-09-30T06:47:36.461072Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc88cad9b7a804c0d5bb88a36405b950fe3e0e221ce5479c85035aec85d02e6e8, slot: 5430 +2024-09-30T06:47:36.466974Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5430 +2024-09-30T06:47:36.466986Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5430 +2024-09-30T06:47:36.482487Z INFO fork_choice_control::block_processor: Validating block with slot: 5431 +2024-09-30T06:47:36.483582Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1a57e1b21a37a02ad7218d8a6b68d14f45d7dacb0f02db2104fa3d9b529b479e, slot: 5431 +2024-09-30T06:47:36.489968Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5431 +2024-09-30T06:47:36.489986Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5431 +2024-09-30T06:47:36.511074Z INFO fork_choice_control::block_processor: Validating block with slot: 5432 +2024-09-30T06:47:36.511077Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 168, root: 0xe4c9fef875723a6c1bf7a0788fa52e7e235de50ac8f3f653cac12b3c8a0bc4fd, head slot: 5431, head root: 0x1a57e1b21a37a02ad7218d8a6b68d14f45d7dacb0f02db2104fa3d9b529b479e) +2024-09-30T06:47:36.512198Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2ababfcef1ac1d5061b8d19808b2d287ea1d9a140ca498d9d85a1f57ad9c7214, slot: 5432 +2024-09-30T06:47:36.518504Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5432 +2024-09-30T06:47:36.518519Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5432 +2024-09-30T06:47:36.534452Z INFO fork_choice_control::block_processor: Validating block with slot: 5433 +2024-09-30T06:47:36.538729Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa111babfaca019237d3dac75680964ae7f5737552f5f7397b87b876562ba7085, slot: 5433 +2024-09-30T06:47:36.567213Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5433 +2024-09-30T06:47:36.567236Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5433 +2024-09-30T06:47:36.584953Z INFO fork_choice_control::block_processor: Validating block with slot: 5434 +2024-09-30T06:47:36.586793Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd79a32f73b8938a505778b3ef4017b991da8f769b404b1059928770ead351ffe, slot: 5434 +2024-09-30T06:47:36.595224Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5434 +2024-09-30T06:47:36.595241Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5434 +2024-09-30T06:47:36.612902Z INFO fork_choice_control::block_processor: Validating block with slot: 5435 +2024-09-30T06:47:36.614048Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc28bdec718fb2521d338693bf9db013e673175e89fe4e2cf12d4fec96bdd5cc2, slot: 5435 +2024-09-30T06:47:36.620297Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5435 +2024-09-30T06:47:36.620317Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5435 +2024-09-30T06:47:36.637604Z INFO fork_choice_control::block_processor: Validating block with slot: 5436 +2024-09-30T06:47:36.638762Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0acb3da97bd0188f456ec9094eae9876c1b5af35d9b43856de5de7e014805664, slot: 5436 +2024-09-30T06:47:36.645223Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5436 +2024-09-30T06:47:36.645237Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5436 +2024-09-30T06:47:36.648100Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 5376 +2024-09-30T06:47:36.663491Z INFO fork_choice_control::block_processor: Validating block with slot: 5437 +2024-09-30T06:47:36.664470Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x235c4dcfacc53ea7f084a48e9231a6235eead17b3dde0075865bd1355b81fec3, slot: 5437 +2024-09-30T06:47:36.670985Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5437 +2024-09-30T06:47:36.671021Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5437 +2024-09-30T06:47:36.688777Z INFO fork_choice_control::block_processor: Validating block with slot: 5438 +2024-09-30T06:47:36.689760Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x986a7bf473f4bf5bce29e54c156a7cd761d4b5d6a41441bfc85d292e6ef5d6ec, slot: 5438 +2024-09-30T06:47:36.695923Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5438 +2024-09-30T06:47:36.695939Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5438 +2024-09-30T06:47:36.714056Z INFO fork_choice_control::block_processor: Validating block with slot: 5439 +2024-09-30T06:47:36.715469Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x478814e1b335abef032b5e96fdf0b2bdc147942d198b4e05dd088039e26e8ff9, slot: 5439 +2024-09-30T06:47:36.725263Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5439 +2024-09-30T06:47:36.725286Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5439 +2024-09-30T06:47:36.743854Z INFO fork_choice_control::block_processor: Validating block with slot: 5440 +2024-09-30T06:47:36.744841Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x70191adf47a8199a2647603c5425d0e5aebc4f6eec23726ec6a80f323884038f, slot: 5440 +2024-09-30T06:47:36.845116Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5440 +2024-09-30T06:47:36.845140Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5440 +2024-09-30T06:47:36.856083Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5440) +2024-09-30T06:47:36.856243Z INFO fork_choice_control::block_processor: Validating block with slot: 5442 +2024-09-30T06:47:36.858034Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x75715c145bcb78e0d26571ecd56b76df9ecbbbf7b7f3a0fd99117f91a9f2e6c2, slot: 5442 +2024-09-30T06:47:36.934155Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5442 +2024-09-30T06:47:36.934179Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5442 +2024-09-30T06:47:36.945510Z INFO fork_choice_control::block_processor: Validating block with slot: 5443 +2024-09-30T06:47:36.947417Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc6ea94f2265112c0f54b0ea0cc93f6117565cf7efe51293119295c66862948cf, slot: 5443 +2024-09-30T06:47:36.956589Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5443 +2024-09-30T06:47:36.956610Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5443 +2024-09-30T06:47:36.968060Z INFO fork_choice_control::block_processor: Validating block with slot: 5444 +2024-09-30T06:47:36.969902Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbe124935d0026328326d02293502dab698528d402f888c94332e158c1f1cad7d, slot: 5444 +2024-09-30T06:47:36.978350Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5444 +2024-09-30T06:47:36.978367Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5444 +2024-09-30T06:47:36.990251Z INFO fork_choice_control::block_processor: Validating block with slot: 5445 +2024-09-30T06:47:36.991221Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0a9c04f3e96e4385f05782890e3d8322279c25f9c4770d0dfcad3cbd09921722, slot: 5445 +2024-09-30T06:47:36.997397Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5445 +2024-09-30T06:47:36.997409Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5445 +2024-09-30T06:47:37.009512Z INFO fork_choice_control::block_processor: Validating block with slot: 5446 +2024-09-30T06:47:37.012010Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7d028bb64aa3613db4f29962e7c6be05878f920218f8521a96f43a10b90f606a, slot: 5446 +2024-09-30T06:47:37.027385Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5446 +2024-09-30T06:47:37.027406Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5446 +2024-09-30T06:47:37.040275Z INFO fork_choice_control::block_processor: Validating block with slot: 5447 +2024-09-30T06:47:37.041544Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa703ef3103ae869b5a16a2e5197d2133ebe0512048594567719a076cec586283, slot: 5447 +2024-09-30T06:47:37.048909Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5447 +2024-09-30T06:47:37.048920Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5447 +2024-09-30T06:47:37.061846Z INFO fork_choice_control::block_processor: Validating block with slot: 5449 +2024-09-30T06:47:37.063535Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x22aeaec8a03148c6198e5fb6b6b00d715f9e6862588d71369a96de6ab543012b, slot: 5449 +2024-09-30T06:47:37.076620Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5449 +2024-09-30T06:47:37.076641Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5449 +2024-09-30T06:47:37.090025Z INFO fork_choice_control::block_processor: Validating block with slot: 5450 +2024-09-30T06:47:37.091154Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x06eafa09de8af0a85997b5236314a2b7cd720f401ce9e7a2a00283dc0f3eb091, slot: 5450 +2024-09-30T06:47:37.097739Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5450 +2024-09-30T06:47:37.097753Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5450 +2024-09-30T06:47:37.110844Z INFO fork_choice_control::block_processor: Validating block with slot: 5451 +2024-09-30T06:47:37.113645Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5b3ff578d9e0bb73e2ea744db994e31b44f32b812ec5f771d7d57569ed83dd7e, slot: 5451 +2024-09-30T06:47:37.124985Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5451 +2024-09-30T06:47:37.125009Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5451 +2024-09-30T06:47:37.138655Z INFO fork_choice_control::block_processor: Validating block with slot: 5452 +2024-09-30T06:47:37.140035Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5b52392a1b87c112ac945784e0f0cd344f6841a02d83f276633479f07d46baff, slot: 5452 +2024-09-30T06:47:37.146442Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5452 +2024-09-30T06:47:37.146453Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5452 +2024-09-30T06:47:37.160245Z INFO fork_choice_control::block_processor: Validating block with slot: 5453 +2024-09-30T06:47:37.162914Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1f8359b1c262c6450bc3a207b9abfb02efe5a3a20ec26eaaa269759379c11e43, slot: 5453 +2024-09-30T06:47:37.174538Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5453 +2024-09-30T06:47:37.174560Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5453 +2024-09-30T06:47:37.189413Z INFO fork_choice_control::block_processor: Validating block with slot: 5454 +2024-09-30T06:47:37.190388Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbb969f303520a38718ad91a45fc0c14bd412810d1f10529dba95563fc6a655fc, slot: 5454 +2024-09-30T06:47:37.196269Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5454 +2024-09-30T06:47:37.196283Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5454 +2024-09-30T06:47:37.210658Z INFO fork_choice_control::block_processor: Validating block with slot: 5455 +2024-09-30T06:47:37.211778Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x257fc19402ba4fa4c6eeab70a1f8067f71f23b6f839dd823a42fac4693837c99, slot: 5455 +2024-09-30T06:47:37.218224Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5455 +2024-09-30T06:47:37.218237Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5455 +2024-09-30T06:47:37.232728Z INFO fork_choice_control::block_processor: Validating block with slot: 5456 +2024-09-30T06:47:37.234782Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xabab5cf0bc491fd3f904ff7f611c62422e34a073a08acf4c8cd8f786611adb0e, slot: 5456 +2024-09-30T06:47:37.244896Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5456 +2024-09-30T06:47:37.244916Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5456 +2024-09-30T06:47:37.259956Z INFO fork_choice_control::block_processor: Validating block with slot: 5457 +2024-09-30T06:47:37.263635Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc00683e5e8e2c1e4b7b8d1729cfe1f2068e280df916979707b7af0022063943e, slot: 5457 +2024-09-30T06:47:37.279800Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5457 +2024-09-30T06:47:37.279818Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5457 +2024-09-30T06:47:37.295805Z INFO fork_choice_control::block_processor: Validating block with slot: 5458 +2024-09-30T06:47:37.296767Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb1d8d32bac1d2e6193d4be7ce010cb33a83fcaab11e9c85844790acfdf1d87c5, slot: 5458 +2024-09-30T06:47:37.302657Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5458 +2024-09-30T06:47:37.302675Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5458 +2024-09-30T06:47:37.318198Z INFO fork_choice_control::block_processor: Validating block with slot: 5459 +2024-09-30T06:47:37.319772Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd3aba518532c4988d754db2badd98daafa4496b6c5b997b98dac97dc396e94cc, slot: 5459 +2024-09-30T06:47:37.326743Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5459 +2024-09-30T06:47:37.326758Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5459 +2024-09-30T06:47:37.342723Z INFO fork_choice_control::block_processor: Validating block with slot: 5460 +2024-09-30T06:47:37.343686Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaa4dbc72ef85fc20abee0f9fc2cf17211332bc12f41a21fb995bedf0a0c035d2, slot: 5460 +2024-09-30T06:47:37.349095Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5460 +2024-09-30T06:47:37.349106Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5460 +2024-09-30T06:47:37.365325Z INFO fork_choice_control::block_processor: Validating block with slot: 5461 +2024-09-30T06:47:37.366681Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x820e5d09c018603c1b445b0ccbebd62a12090095afbea6f09b058882a9b17bbf, slot: 5461 +2024-09-30T06:47:37.373621Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5461 +2024-09-30T06:47:37.373643Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5461 +2024-09-30T06:47:37.390280Z INFO fork_choice_control::block_processor: Validating block with slot: 5462 +2024-09-30T06:47:37.391380Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfdd3403fcea293154111a5df70e5105eb0417bfe478428bf0655b6996f24c12f, slot: 5462 +2024-09-30T06:47:37.397650Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5462 +2024-09-30T06:47:37.397665Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5462 +2024-09-30T06:47:37.414355Z INFO fork_choice_control::block_processor: Validating block with slot: 5463 +2024-09-30T06:47:37.415331Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd9c3eda3959a8037f2887ce80557c7877450125d0b53cdba7e8f4f885c5c9a8f, slot: 5463 +2024-09-30T06:47:37.422189Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5463 +2024-09-30T06:47:37.422210Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5463 +2024-09-30T06:47:37.444255Z INFO fork_choice_control::block_processor: Validating block with slot: 5464 +2024-09-30T06:47:37.444302Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 169, root: 0xf8ebd813890cb8abfb1f5f732ee40c57471eddf1c0d1e55255e41638a7142053, head slot: 5463, head root: 0xd9c3eda3959a8037f2887ce80557c7877450125d0b53cdba7e8f4f885c5c9a8f) +2024-09-30T06:47:37.445373Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x44910b6ee87c436be9c60318b2347191132a5ab025205f7480a4681adb980827, slot: 5464 +2024-09-30T06:47:37.451978Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5464 +2024-09-30T06:47:37.451996Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5464 +2024-09-30T06:47:37.468837Z INFO fork_choice_control::block_processor: Validating block with slot: 5466 +2024-09-30T06:47:37.471233Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x01d91cff75ca80528d79a1b971e719af35668b1dd9b22c77380cef46879b2b0a, slot: 5466 +2024-09-30T06:47:37.482478Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5466 +2024-09-30T06:47:37.482493Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5466 +2024-09-30T06:47:37.500170Z INFO fork_choice_control::block_processor: Validating block with slot: 5467 +2024-09-30T06:47:37.501157Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2142f25dcac8a8b76932f6a5867df67692cc00107a629218559d31b90fd5ff4b, slot: 5467 +2024-09-30T06:47:37.508224Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5467 +2024-09-30T06:47:37.508245Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5467 +2024-09-30T06:47:37.525982Z INFO fork_choice_control::block_processor: Validating block with slot: 5468 +2024-09-30T06:47:37.529046Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x70cb526af71ad24a3b8aff8c2ec8c777b3e2e7b9355dab9457ada4c7741cfe06, slot: 5468 +2024-09-30T06:47:37.541599Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5468 +2024-09-30T06:47:37.541619Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5468 +2024-09-30T06:47:37.560371Z INFO fork_choice_control::block_processor: Validating block with slot: 5469 +2024-09-30T06:47:37.561777Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1fa56edea52ed4b191ceb76c68d63317e515810e8026d0757d9c68d9615e46cc, slot: 5469 +2024-09-30T06:47:37.570972Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5469 +2024-09-30T06:47:37.570995Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5469 +2024-09-30T06:47:37.574310Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 5408 +2024-09-30T06:47:37.589943Z INFO fork_choice_control::block_processor: Validating block with slot: 5470 +2024-09-30T06:47:37.591341Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe144b3640bcc1a8050aa6e2fe4de36ed4373cc86ba7921fd4d4439a63f5fa951, slot: 5470 +2024-09-30T06:47:37.599340Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5470 +2024-09-30T06:47:37.599361Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5470 +2024-09-30T06:47:37.618129Z INFO fork_choice_control::block_processor: Validating block with slot: 5471 +2024-09-30T06:47:37.619397Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x713a825599ad590148c74e7fc0112c17b83272f3b4fc72eea377d3e4a72fdccc, slot: 5471 +2024-09-30T06:47:37.626588Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5471 +2024-09-30T06:47:37.626606Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5471 +2024-09-30T06:47:37.645723Z INFO fork_choice_control::block_processor: Validating block with slot: 5472 +2024-09-30T06:47:37.646846Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc6f1b6eaf1a0730a0d8602255276fb6e5eabf61ed28a683a5f726f0b012e89ba, slot: 5472 +2024-09-30T06:47:37.748984Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5472 +2024-09-30T06:47:37.749004Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5472 +2024-09-30T06:47:37.760289Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5472) +2024-09-30T06:47:37.760449Z INFO fork_choice_control::block_processor: Validating block with slot: 5474 +2024-09-30T06:47:37.762261Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3ddd2bb6affb302d5863a1d0e4073352cea4c13b02b13e4807b4444898378b06, slot: 5474 +2024-09-30T06:47:37.838200Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5474 +2024-09-30T06:47:37.838222Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5474 +2024-09-30T06:47:37.849685Z INFO fork_choice_control::block_processor: Validating block with slot: 5475 +2024-09-30T06:47:37.851860Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6f623c3631a72d32e78381d2c3ac45e22d9bbad1134e922194a5513180b231be, slot: 5475 +2024-09-30T06:47:37.861631Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5475 +2024-09-30T06:47:37.861652Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5475 +2024-09-30T06:47:37.873500Z INFO fork_choice_control::block_processor: Validating block with slot: 5476 +2024-09-30T06:47:37.875563Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x350afa6ec5e52098da3701388686965b79d59acfb06e3b66d89559da9de76bad, slot: 5476 +2024-09-30T06:47:37.884916Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5476 +2024-09-30T06:47:37.884928Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5476 +2024-09-30T06:47:37.897236Z INFO fork_choice_control::block_processor: Validating block with slot: 5477 +2024-09-30T06:47:37.898476Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4b8dd50ba31e688f20eaba3693d9a5e3885872a2b33132388dc57f3b0a139ad3, slot: 5477 +2024-09-30T06:47:37.905758Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5477 +2024-09-30T06:47:37.905777Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5477 +2024-09-30T06:47:37.918421Z INFO fork_choice_control::block_processor: Validating block with slot: 5478 +2024-09-30T06:47:37.919695Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfb5982a949d955bb449458edfef85621f459968397e717b98c4a78e592d1d4ed, slot: 5478 +2024-09-30T06:47:37.927350Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5478 +2024-09-30T06:47:37.927368Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5478 +2024-09-30T06:47:37.940265Z INFO fork_choice_control::block_processor: Validating block with slot: 5479 +2024-09-30T06:47:37.941363Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa39e55b5b55a02e361a8c083c27e7bbec3d4285fe905dd38c64c7497e2f3e364, slot: 5479 +2024-09-30T06:47:37.947994Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5479 +2024-09-30T06:47:37.948006Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5479 +2024-09-30T06:47:37.960989Z INFO fork_choice_control::block_processor: Validating block with slot: 5480 +2024-09-30T06:47:37.961977Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x773aece7c93319e28cb3fd3c4f94f77fab250e7bd329da0f43bd6d0481931609, slot: 5480 +2024-09-30T06:47:37.967921Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5480 +2024-09-30T06:47:37.967937Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5480 +2024-09-30T06:47:37.980965Z INFO fork_choice_control::block_processor: Validating block with slot: 5481 +2024-09-30T06:47:37.983757Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x197016000c053ee80eaeaa3a53788a6b1a767b8cbfc13121951340fab8a51ec5, slot: 5481 +2024-09-30T06:47:37.995007Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5481 +2024-09-30T06:47:37.995026Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5481 +2024-09-30T06:47:38.008543Z INFO fork_choice_control::block_processor: Validating block with slot: 5482 +2024-09-30T06:47:38.009517Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6cccab4314531188f1ca7665e6e28b628abb455e3cf99f7285a1080cc9b70e83, slot: 5482 +2024-09-30T06:47:38.015873Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5482 +2024-09-30T06:47:38.015890Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5482 +2024-09-30T06:47:38.029524Z INFO fork_choice_control::block_processor: Validating block with slot: 5483 +2024-09-30T06:47:38.032653Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9b8304f41c77b8c426e638b9d4d6283d435eb4ae0238a0cf333ebb3dcc18bd0f, slot: 5483 +2024-09-30T06:47:38.045717Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5483 +2024-09-30T06:47:38.045738Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5483 +2024-09-30T06:47:38.060164Z INFO fork_choice_control::block_processor: Validating block with slot: 5484 +2024-09-30T06:47:38.061416Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb6699cc7c332241a8b811807a821a2b2316637803d2e7a81286ebeebd6e30f44, slot: 5484 +2024-09-30T06:47:38.067650Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5484 +2024-09-30T06:47:38.067667Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5484 +2024-09-30T06:47:38.082003Z INFO fork_choice_control::block_processor: Validating block with slot: 5485 +2024-09-30T06:47:38.083518Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x952bd2c727aa1e07870e5ad9e01da61cd60d6c09aceb667401b476507c62249e, slot: 5485 +2024-09-30T06:47:38.090712Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5485 +2024-09-30T06:47:38.090729Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5485 +2024-09-30T06:47:38.105501Z INFO fork_choice_control::block_processor: Validating block with slot: 5486 +2024-09-30T06:47:38.106632Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9af975f56e28678b8ddd411f8952a4bb7a8ef52c27598e3e0dc46e9ba9354dc6, slot: 5486 +2024-09-30T06:47:38.112751Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5486 +2024-09-30T06:47:38.112768Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5486 +2024-09-30T06:47:38.127880Z INFO fork_choice_control::block_processor: Validating block with slot: 5487 +2024-09-30T06:47:38.130486Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3e5474bcd18afd4ee4eab33e3afcfecf1bb63185233a917539aa2e031661f654, slot: 5487 +2024-09-30T06:47:38.140803Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5487 +2024-09-30T06:47:38.140821Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5487 +2024-09-30T06:47:38.156358Z INFO fork_choice_control::block_processor: Validating block with slot: 5488 +2024-09-30T06:47:38.157475Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4b6eec872e1b1a1dd6ddc066636644dec897441e51f652da634ee5bed4ec1be1, slot: 5488 +2024-09-30T06:47:38.163406Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5488 +2024-09-30T06:47:38.163421Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5488 +2024-09-30T06:47:38.178820Z INFO fork_choice_control::block_processor: Validating block with slot: 5489 +2024-09-30T06:47:38.179919Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7c6649949a2a1d26cf34909a5cc7b4c4902c3a74a4ce9fed0137e99090639514, slot: 5489 +2024-09-30T06:47:38.187113Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5489 +2024-09-30T06:47:38.187137Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5489 +2024-09-30T06:47:38.202953Z INFO fork_choice_control::block_processor: Validating block with slot: 5490 +2024-09-30T06:47:38.204850Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2ca68c64ab66bdc64d1b92696a715f0646c02f7f95ac909548818ad32e7d62cf, slot: 5490 +2024-09-30T06:47:38.212722Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5490 +2024-09-30T06:47:38.212742Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5490 +2024-09-30T06:47:38.229147Z INFO fork_choice_control::block_processor: Validating block with slot: 5491 +2024-09-30T06:47:38.230590Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x450631ee4e48c5d000fc6ec91643885da9089d4b58a0e6e74dc07a002d91d301, slot: 5491 +2024-09-30T06:47:38.237572Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5491 +2024-09-30T06:47:38.237594Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5491 +2024-09-30T06:47:38.253582Z INFO fork_choice_control::block_processor: Validating block with slot: 5492 +2024-09-30T06:47:38.255410Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf48ae35b9b50592323a334d97b57ccc2e14786817aea4cd5aa4207b5efb07c20, slot: 5492 +2024-09-30T06:47:38.263306Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5492 +2024-09-30T06:47:38.263319Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5492 +2024-09-30T06:47:38.279570Z INFO fork_choice_control::block_processor: Validating block with slot: 5493 +2024-09-30T06:47:38.280658Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x15e41d8af961e6b960b2cca8bed9c834c995a61b17f7f48ca7ed6872e86975b4, slot: 5493 +2024-09-30T06:47:38.286727Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5493 +2024-09-30T06:47:38.286746Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5493 +2024-09-30T06:47:38.303106Z INFO fork_choice_control::block_processor: Validating block with slot: 5494 +2024-09-30T06:47:38.304233Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x894c56309a37499375a3be3e5ebb2d030829340b6a6c56d3f59d568c998729bf, slot: 5494 +2024-09-30T06:47:38.310312Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5494 +2024-09-30T06:47:38.310326Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5494 +2024-09-30T06:47:38.327384Z INFO fork_choice_control::block_processor: Validating block with slot: 5495 +2024-09-30T06:47:38.328504Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x56147887aad69d25302faf84f1a1afd57e92e2e73fcd1de50ac9d390d8cc405d, slot: 5495 +2024-09-30T06:47:38.334965Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5495 +2024-09-30T06:47:38.334980Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5495 +2024-09-30T06:47:38.357505Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 170, root: 0x70191adf47a8199a2647603c5425d0e5aebc4f6eec23726ec6a80f323884038f, head slot: 5495, head root: 0x56147887aad69d25302faf84f1a1afd57e92e2e73fcd1de50ac9d390d8cc405d) +2024-09-30T06:47:38.357523Z INFO fork_choice_control::block_processor: Validating block with slot: 5496 +2024-09-30T06:47:38.358712Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9b808b80a5561e1bfc17e54903c2309ccb62abc79ce863d9319fdceffe22c8cf, slot: 5496 +2024-09-30T06:47:38.365071Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5496 +2024-09-30T06:47:38.365087Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5496 +2024-09-30T06:47:38.382490Z INFO fork_choice_control::block_processor: Validating block with slot: 5497 +2024-09-30T06:47:38.385853Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x61f9f10cfcd13a9f5d93d5f8bc8c42b9bb077cb7db49cd4ab305aa14bd0ee4f5, slot: 5497 +2024-09-30T06:47:38.400352Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5497 +2024-09-30T06:47:38.400373Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5497 +2024-09-30T06:47:38.418063Z INFO fork_choice_control::block_processor: Validating block with slot: 5498 +2024-09-30T06:47:38.419187Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4f39a8981d09063395632ef784e7763d0010bec09dc55374f616365434f14db6, slot: 5498 +2024-09-30T06:47:38.426047Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5498 +2024-09-30T06:47:38.426065Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5498 +2024-09-30T06:47:38.444390Z INFO fork_choice_control::block_processor: Validating block with slot: 5499 +2024-09-30T06:47:38.446074Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4cb35eb195c9a10c850536e462af8078d8102b9f5263dd539f7282fd505fd5b8, slot: 5499 +2024-09-30T06:47:38.456004Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5499 +2024-09-30T06:47:38.456023Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5499 +2024-09-30T06:47:38.475175Z INFO fork_choice_control::block_processor: Validating block with slot: 5500 +2024-09-30T06:47:38.476592Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0c106e591d3f029d2ffc37e67000ea2db97fe89713ce392a54e32f5847e09671, slot: 5500 +2024-09-30T06:47:38.483650Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5500 +2024-09-30T06:47:38.483666Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5500 +2024-09-30T06:47:38.485896Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 5440 +2024-09-30T06:47:38.502367Z INFO fork_choice_control::block_processor: Validating block with slot: 5501 +2024-09-30T06:47:38.503361Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc0d2af132225fe7105aaef6f4aeadd8731589ae9fe7019ca3f0f6fe51c55e642, slot: 5501 +2024-09-30T06:47:38.509493Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5501 +2024-09-30T06:47:38.509509Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5501 +2024-09-30T06:47:38.528196Z INFO fork_choice_control::block_processor: Validating block with slot: 5502 +2024-09-30T06:47:38.529185Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7f32a66465a8b62aa43f5d5ab4a770501681996755bc299c9dc7cddbefacc954, slot: 5502 +2024-09-30T06:47:38.535161Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5502 +2024-09-30T06:47:38.535174Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5502 +2024-09-30T06:47:38.556958Z INFO fork_choice_control::block_processor: Validating block with slot: 5503 +2024-09-30T06:47:38.559169Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4169b3fe928374ad779f7382cb22ab753cc936ae22ece4bbd41b33b9b3032592, slot: 5503 +2024-09-30T06:47:38.569468Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5503 +2024-09-30T06:47:38.569526Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5503 +2024-09-30T06:47:38.589292Z INFO fork_choice_control::block_processor: Validating block with slot: 5504 +2024-09-30T06:47:38.591253Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc4ee4d068095133870825c431fb7af70d8ad661dfb7a0eed01339fa97763c60e, slot: 5504 +2024-09-30T06:47:38.695111Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5504 +2024-09-30T06:47:38.695134Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5504 +2024-09-30T06:47:38.706394Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5504) +2024-09-30T06:47:38.706512Z INFO fork_choice_control::block_processor: Validating block with slot: 5505 +2024-09-30T06:47:38.707475Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc73e76b92af4231c5e844afe9fd9c4d27d0216d73416c23d03eddbbbfe86feb4, slot: 5505 +2024-09-30T06:47:38.780929Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5505 +2024-09-30T06:47:38.780952Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5505 +2024-09-30T06:47:38.792428Z INFO fork_choice_control::block_processor: Validating block with slot: 5506 +2024-09-30T06:47:38.795494Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe421db6a501e05982b1818d65cb841f4bcc96c722390ac3702d761a57495a21e, slot: 5506 +2024-09-30T06:47:38.807895Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5506 +2024-09-30T06:47:38.807913Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5506 +2024-09-30T06:47:38.819957Z INFO fork_choice_control::block_processor: Validating block with slot: 5507 +2024-09-30T06:47:38.821074Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbd917303eb04b3ef80452e1a1c140829ccc128688f1178387796e8538585bb55, slot: 5507 +2024-09-30T06:47:38.828483Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5507 +2024-09-30T06:47:38.828498Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5507 +2024-09-30T06:47:38.840805Z INFO fork_choice_control::block_processor: Validating block with slot: 5508 +2024-09-30T06:47:38.842051Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe01e646784c1800ca44b88f0ea011e9de9d1f3383f506a9c3eaff34835f1aedb, slot: 5508 +2024-09-30T06:47:38.849422Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5508 +2024-09-30T06:47:38.849445Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5508 +2024-09-30T06:47:38.862230Z INFO fork_choice_control::block_processor: Validating block with slot: 5509 +2024-09-30T06:47:38.863233Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd8ed45bb9ce35b545067bd03a4a2f404ab77a19577a6ae8e7c5316709a9a9f1b, slot: 5509 +2024-09-30T06:47:38.871273Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5509 +2024-09-30T06:47:38.871298Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5509 +2024-09-30T06:47:38.883816Z INFO fork_choice_control::block_processor: Validating block with slot: 5510 +2024-09-30T06:47:38.884805Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x734abaf5708fd0205a617ab1d74a522a2fb09a00efc98f9d42385b0c27d7a7d5, slot: 5510 +2024-09-30T06:47:38.890923Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5510 +2024-09-30T06:47:38.890944Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5510 +2024-09-30T06:47:38.903680Z INFO fork_choice_control::block_processor: Validating block with slot: 5511 +2024-09-30T06:47:38.904833Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x605eba71a3e3cc08dc0b837cbd824524a97dbda89ea6e96e36cbeae6dd9589f0, slot: 5511 +2024-09-30T06:47:38.910936Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5511 +2024-09-30T06:47:38.910949Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5511 +2024-09-30T06:47:38.923761Z INFO fork_choice_control::block_processor: Validating block with slot: 5512 +2024-09-30T06:47:38.925100Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe125bb8d61d384ffc316407a262a590fb8f6acaf6c8c0d9b72c10d576b71ba8b, slot: 5512 +2024-09-30T06:47:38.931909Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5512 +2024-09-30T06:47:38.931923Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5512 +2024-09-30T06:47:38.945123Z INFO fork_choice_control::block_processor: Validating block with slot: 5513 +2024-09-30T06:47:38.946771Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9f6fb4d23040006d32832cab81b1de3701793696ed5e959623a2ba84523f9257, slot: 5513 +2024-09-30T06:47:38.955154Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5513 +2024-09-30T06:47:38.955177Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5513 +2024-09-30T06:47:38.968200Z INFO fork_choice_control::block_processor: Validating block with slot: 5514 +2024-09-30T06:47:38.969306Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x419450d421ce42f60756b98fce915a104918bc1999d70059857abf7f944bd6fd, slot: 5514 +2024-09-30T06:47:38.975775Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5514 +2024-09-30T06:47:38.975796Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5514 +2024-09-30T06:47:38.989374Z INFO fork_choice_control::block_processor: Validating block with slot: 5515 +2024-09-30T06:47:38.990347Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe3c26decaf302977ccbcc2319d5cc907404fe6385c0b3a19f3623bde7ee01308, slot: 5515 +2024-09-30T06:47:38.996025Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5515 +2024-09-30T06:47:38.996038Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5515 +2024-09-30T06:47:39.009976Z INFO fork_choice_control::block_processor: Validating block with slot: 5516 +2024-09-30T06:47:39.011634Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x57e5950a6e68839496d3f5d45c442f82766046eb9d9ee67c63c4c761b5a49076, slot: 5516 +2024-09-30T06:47:39.018770Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5516 +2024-09-30T06:47:39.018781Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5516 +2024-09-30T06:47:39.032494Z INFO fork_choice_control::block_processor: Validating block with slot: 5517 +2024-09-30T06:47:39.033590Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x034883ebf6c2c434eb4962554b7d9758a331c64895cb0afabde0e3c89f25d308, slot: 5517 +2024-09-30T06:47:39.039967Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5517 +2024-09-30T06:47:39.039987Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5517 +2024-09-30T06:47:39.053990Z INFO fork_choice_control::block_processor: Validating block with slot: 5518 +2024-09-30T06:47:39.055569Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x96f221ea2ce5c44458a3d2e357f0cf50ffb2cecdd83d643266d115ca538e61d5, slot: 5518 +2024-09-30T06:47:39.062672Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5518 +2024-09-30T06:47:39.062691Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5518 +2024-09-30T06:47:39.076952Z INFO fork_choice_control::block_processor: Validating block with slot: 5519 +2024-09-30T06:47:39.078055Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6662c713840c90c9f5612d3516be6b0f7b7ed32198b85e7cac1eba60ac831b9e, slot: 5519 +2024-09-30T06:47:39.083898Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5519 +2024-09-30T06:47:39.083911Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5519 +2024-09-30T06:47:39.098364Z INFO fork_choice_control::block_processor: Validating block with slot: 5520 +2024-09-30T06:47:39.101642Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xec2086039579671f30b6c022aab6ce9a4214f867aa0289efa53cf26fd3785e75, slot: 5520 +2024-09-30T06:47:39.113596Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5520 +2024-09-30T06:47:39.113614Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5520 +2024-09-30T06:47:39.128572Z INFO fork_choice_control::block_processor: Validating block with slot: 5521 +2024-09-30T06:47:39.130355Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x58dba25148324cc6ed15beb218643ce50fae956ff263e7aa283543006ee4995e, slot: 5521 +2024-09-30T06:47:39.138405Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5521 +2024-09-30T06:47:39.138426Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5521 +2024-09-30T06:47:39.153809Z INFO fork_choice_control::block_processor: Validating block with slot: 5522 +2024-09-30T06:47:39.154954Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xba9df80e9e61fc2ce893c3ede6a4f332c073b8705537991b2ea036760310724e, slot: 5522 +2024-09-30T06:47:39.161186Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5522 +2024-09-30T06:47:39.161201Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5522 +2024-09-30T06:47:39.176719Z INFO fork_choice_control::block_processor: Validating block with slot: 5523 +2024-09-30T06:47:39.177813Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9b76b8d0a14a43a64ad8f7490baaf82d4a67f1630ec637635e9e091f4c348302, slot: 5523 +2024-09-30T06:47:39.183810Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5523 +2024-09-30T06:47:39.183823Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5523 +2024-09-30T06:47:39.199501Z INFO fork_choice_control::block_processor: Validating block with slot: 5524 +2024-09-30T06:47:39.200470Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0fd4e33cd387de89283d2e5a4135af41cdf97035eabdff9bdf367e16a7b2e699, slot: 5524 +2024-09-30T06:47:39.206786Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5524 +2024-09-30T06:47:39.206807Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5524 +2024-09-30T06:47:39.222895Z INFO fork_choice_control::block_processor: Validating block with slot: 5525 +2024-09-30T06:47:39.224859Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x42199e52afc565083901e10ececadeb9c2f6b10c86b9c35aa269df492bfd0538, slot: 5525 +2024-09-30T06:47:39.233595Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5525 +2024-09-30T06:47:39.233608Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5525 +2024-09-30T06:47:39.249920Z INFO fork_choice_control::block_processor: Validating block with slot: 5526 +2024-09-30T06:47:39.250914Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf8418b7de4fc19021924166239aa9bf110bc369ce33cb8ffc1759a8296cabf59, slot: 5526 +2024-09-30T06:47:39.257719Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5526 +2024-09-30T06:47:39.257740Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5526 +2024-09-30T06:47:39.274372Z INFO fork_choice_control::block_processor: Validating block with slot: 5527 +2024-09-30T06:47:39.276282Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcbe57c4873e43568bae8c262531a9014f3eba9b400907291c4813eb527a35bb4, slot: 5527 +2024-09-30T06:47:39.284124Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5527 +2024-09-30T06:47:39.284135Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5527 +2024-09-30T06:47:39.306105Z INFO fork_choice_control::block_processor: Validating block with slot: 5528 +2024-09-30T06:47:39.306107Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 171, root: 0xc6f1b6eaf1a0730a0d8602255276fb6e5eabf61ed28a683a5f726f0b012e89ba, head slot: 5527, head root: 0xcbe57c4873e43568bae8c262531a9014f3eba9b400907291c4813eb527a35bb4) +2024-09-30T06:47:39.307366Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6804361ac466713e33de531fab06dbda9035e56a17e700d3691ea12116b219ff, slot: 5528 +2024-09-30T06:47:39.314353Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5528 +2024-09-30T06:47:39.314371Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5528 +2024-09-30T06:47:39.331566Z INFO fork_choice_control::block_processor: Validating block with slot: 5530 +2024-09-30T06:47:39.333672Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x18e629f3b93dc52f58a928ceeed7e2ada7870d869fb94ee0cf4bb0902eaed9f0, slot: 5530 +2024-09-30T06:47:39.344276Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5530 +2024-09-30T06:47:39.344294Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5530 +2024-09-30T06:47:39.361722Z INFO fork_choice_control::block_processor: Validating block with slot: 5531 +2024-09-30T06:47:39.362707Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa019292e9f1eeb8251010be84866b282a2def69cab99dca75908e2d770c54c82, slot: 5531 +2024-09-30T06:47:39.370176Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5531 +2024-09-30T06:47:39.370209Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5531 +2024-09-30T06:47:39.387707Z INFO fork_choice_control::block_processor: Validating block with slot: 5532 +2024-09-30T06:47:39.389155Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x93913e93989bb838847bbc112cf294415388013918807ed709a29b61ff05f36d, slot: 5532 +2024-09-30T06:47:39.396600Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5532 +2024-09-30T06:47:39.396615Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5532 +2024-09-30T06:47:39.414288Z INFO fork_choice_control::block_processor: Validating block with slot: 5533 +2024-09-30T06:47:39.415556Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xffafe457f422ace7d9d6d88fd3075db54e431e948d61bbf4d29ce8129b9c438a, slot: 5533 +2024-09-30T06:47:39.422958Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5533 +2024-09-30T06:47:39.422976Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5533 +2024-09-30T06:47:39.434978Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 5472 +2024-09-30T06:47:39.441018Z INFO fork_choice_control::block_processor: Validating block with slot: 5534 +2024-09-30T06:47:39.442282Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4230cd0c946a2915146df8caf2d4462fb266a8123d4e1c5aff89a1574fbc89ae, slot: 5534 +2024-09-30T06:47:39.449081Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5534 +2024-09-30T06:47:39.449097Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5534 +2024-09-30T06:47:39.468385Z INFO fork_choice_control::block_processor: Validating block with slot: 5535 +2024-09-30T06:47:39.469526Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc5bf0a605b01b8afa9cdcf23fe86edcff95c4cdc717d787308460088973e3bae, slot: 5535 +2024-09-30T06:47:39.480588Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5535 +2024-09-30T06:47:39.480609Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5535 +2024-09-30T06:47:39.499411Z INFO fork_choice_control::block_processor: Validating block with slot: 5536 +2024-09-30T06:47:39.500526Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x03e657dc5f1e1f2dc668fe2f8be988a6b840f00425e86e965c0fc2c2c79c1457, slot: 5536 +2024-09-30T06:47:39.600008Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5536 +2024-09-30T06:47:39.600031Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5536 +2024-09-30T06:47:39.610932Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5536) +2024-09-30T06:47:39.611041Z INFO fork_choice_control::block_processor: Validating block with slot: 5537 +2024-09-30T06:47:39.612149Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0e548990d838d5b6f0518853b241e8ca1881e2008f2aa9c438647d2500ecc7f0, slot: 5537 +2024-09-30T06:47:39.685646Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5537 +2024-09-30T06:47:39.685670Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5537 +2024-09-30T06:47:39.696227Z INFO fork_choice_control::block_processor: Validating block with slot: 5538 +2024-09-30T06:47:39.697768Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf8ea3211409b16c788d8a3bb5f9b43f7df791510256fe66c35ac847b2b72c42a, slot: 5538 +2024-09-30T06:47:39.706764Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5538 +2024-09-30T06:47:39.706783Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5538 +2024-09-30T06:47:39.717652Z INFO fork_choice_control::block_processor: Validating block with slot: 5539 +2024-09-30T06:47:39.720604Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x933c1c560bdb8ecf6e1ece247ebf5ed3fda319c808a2f305304363ba5770c671, slot: 5539 +2024-09-30T06:47:39.731845Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5539 +2024-09-30T06:47:39.731858Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5539 +2024-09-30T06:47:39.743376Z INFO fork_choice_control::block_processor: Validating block with slot: 5540 +2024-09-30T06:47:39.744736Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb1fce9dc8c6a7a087d9550085be14b73da2810514c8a6e21610759e523c5da72, slot: 5540 +2024-09-30T06:47:39.751927Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5540 +2024-09-30T06:47:39.751941Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5540 +2024-09-30T06:47:39.763684Z INFO fork_choice_control::block_processor: Validating block with slot: 5542 +2024-09-30T06:47:39.765641Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x10802569cc764a701a8bf7941bd99d6c70ff96816dfdc6af03df7efe5638178c, slot: 5542 +2024-09-30T06:47:39.777345Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5542 +2024-09-30T06:47:39.777364Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5542 +2024-09-30T06:47:39.789771Z INFO fork_choice_control::block_processor: Validating block with slot: 5543 +2024-09-30T06:47:39.791301Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8b2fcaaa9bdd9cb9c294f72c3ad8f483171367c87a1a0ec4f0b8b1cbe5d4a986, slot: 5543 +2024-09-30T06:47:39.798658Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5543 +2024-09-30T06:47:39.798675Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5543 +2024-09-30T06:47:39.810962Z INFO fork_choice_control::block_processor: Validating block with slot: 5544 +2024-09-30T06:47:39.812369Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x934464406781e31428fd9dbede0d044e46b29f1b146eaecce67c88862b4fddde, slot: 5544 +2024-09-30T06:47:39.819897Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5544 +2024-09-30T06:47:39.819923Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5544 +2024-09-30T06:47:39.832270Z INFO fork_choice_control::block_processor: Validating block with slot: 5545 +2024-09-30T06:47:39.833387Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1e3c45a1f10e89b44755db265a47188f677feccaadda2e00f2fd9419f93ef3a7, slot: 5545 +2024-09-30T06:47:39.840630Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5545 +2024-09-30T06:47:39.840652Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5545 +2024-09-30T06:47:39.853215Z INFO fork_choice_control::block_processor: Validating block with slot: 5546 +2024-09-30T06:47:39.854200Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x01cf8a38d38d855c6f37ed08e1aa2a6958e1783f2c1fb4b7927a7b613ba0556b, slot: 5546 +2024-09-30T06:47:39.860474Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5546 +2024-09-30T06:47:39.860490Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5546 +2024-09-30T06:47:39.873705Z INFO fork_choice_control::block_processor: Validating block with slot: 5547 +2024-09-30T06:47:39.874688Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd4b1a76d7b2b8e84b4bd25390e8016f17dfade2cffd0f68bbd5b855c85e71b01, slot: 5547 +2024-09-30T06:47:39.880877Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5547 +2024-09-30T06:47:39.880890Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5547 +2024-09-30T06:47:39.894129Z INFO fork_choice_control::block_processor: Validating block with slot: 5548 +2024-09-30T06:47:39.895093Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0202f046379c6f7f84f46a47f00080f8fcbe4291f6ae98a8de3c10dc22f8b17b, slot: 5548 +2024-09-30T06:47:39.900615Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5548 +2024-09-30T06:47:39.900628Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5548 +2024-09-30T06:47:39.913727Z INFO fork_choice_control::block_processor: Validating block with slot: 5549 +2024-09-30T06:47:39.914964Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x34adcdc392b8f4281211aae65fa7a0b5cb75824162b61d151b7eacea1f39b20f, slot: 5549 +2024-09-30T06:47:39.921570Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5549 +2024-09-30T06:47:39.921589Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5549 +2024-09-30T06:47:39.934527Z INFO fork_choice_control::block_processor: Validating block with slot: 5550 +2024-09-30T06:47:39.935636Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8b740747dbcc1ca88caeddd22d3deffaf277d6c2272da287cda0028631e368d2, slot: 5550 +2024-09-30T06:47:39.941599Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5550 +2024-09-30T06:47:39.941616Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5550 +2024-09-30T06:47:39.955096Z INFO fork_choice_control::block_processor: Validating block with slot: 5551 +2024-09-30T06:47:39.957788Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb40764779265e11714854d4697875b9df34a3bc4584941d8a833fe6da191c193, slot: 5551 +2024-09-30T06:47:39.967674Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5551 +2024-09-30T06:47:39.967685Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5551 +2024-09-30T06:47:39.981365Z INFO fork_choice_control::block_processor: Validating block with slot: 5552 +2024-09-30T06:47:39.982329Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcf89564a0f132ae55429cc1bc7b7af8b0f51430136e7c2b9842f96cc5c134b7a, slot: 5552 +2024-09-30T06:47:39.988212Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5552 +2024-09-30T06:47:39.988232Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5552 +2024-09-30T06:47:40.001969Z INFO fork_choice_control::block_processor: Validating block with slot: 5553 +2024-09-30T06:47:40.003820Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x45534af4916b9ab5e4eb2edd0bcfe25746a92aa80b61e7af57fb9275b10d482e, slot: 5553 +2024-09-30T06:47:40.011707Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5553 +2024-09-30T06:47:40.011727Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5553 +2024-09-30T06:47:40.026140Z INFO fork_choice_control::block_processor: Validating block with slot: 5554 +2024-09-30T06:47:40.027107Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1d8cea9ede58368fdc54d4f100ad24bad4c856fb0b2d0a1803150f7ef84eaeb6, slot: 5554 +2024-09-30T06:47:40.033027Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5554 +2024-09-30T06:47:40.033040Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5554 +2024-09-30T06:47:40.047487Z INFO fork_choice_control::block_processor: Validating block with slot: 5555 +2024-09-30T06:47:40.048849Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8f62b96fa5d378c6c92dc79b64a74ffa1191a31b989db5ea10a0b500899cc91b, slot: 5555 +2024-09-30T06:47:40.055843Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5555 +2024-09-30T06:47:40.055868Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5555 +2024-09-30T06:47:40.070679Z INFO fork_choice_control::block_processor: Validating block with slot: 5556 +2024-09-30T06:47:40.071792Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0c4d30d0718e5ada7653813cd5a560d99d428ba43f3849d7894d3cf281aaa040, slot: 5556 +2024-09-30T06:47:40.077703Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5556 +2024-09-30T06:47:40.077715Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5556 +2024-09-30T06:47:40.092654Z INFO fork_choice_control::block_processor: Validating block with slot: 5557 +2024-09-30T06:47:40.094633Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x921cc99a64fec1343140e90af04f7b5ad468419636db07bcfc6b38fa6f7126fd, slot: 5557 +2024-09-30T06:47:40.102668Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5557 +2024-09-30T06:47:40.102686Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5557 +2024-09-30T06:47:40.117636Z INFO fork_choice_control::block_processor: Validating block with slot: 5558 +2024-09-30T06:47:40.118611Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xec68a62ea52514ba7e5483057a86d4e23788d7b9ebed1facedde1cacabfe899e, slot: 5558 +2024-09-30T06:47:40.124416Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5558 +2024-09-30T06:47:40.124436Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5558 +2024-09-30T06:47:40.139716Z INFO fork_choice_control::block_processor: Validating block with slot: 5559 +2024-09-30T06:47:40.140671Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1929682532ad60bb0deb07439923a32f2a4738767f076d47cd0629d8c6dfbc6b, slot: 5559 +2024-09-30T06:47:40.146824Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5559 +2024-09-30T06:47:40.146835Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5559 +2024-09-30T06:47:40.167935Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 172, root: 0xc4ee4d068095133870825c431fb7af70d8ad661dfb7a0eed01339fa97763c60e, head slot: 5559, head root: 0x1929682532ad60bb0deb07439923a32f2a4738767f076d47cd0629d8c6dfbc6b) +2024-09-30T06:47:40.167950Z INFO fork_choice_control::block_processor: Validating block with slot: 5560 +2024-09-30T06:47:40.169890Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7b8b7d6770aa78df0091cf3dcc77de5cc806249214eaa4cfd61484dad2e1a963, slot: 5560 +2024-09-30T06:47:40.178283Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5560 +2024-09-30T06:47:40.178304Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5560 +2024-09-30T06:47:40.194243Z INFO fork_choice_control::block_processor: Validating block with slot: 5561 +2024-09-30T06:47:40.195362Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7549842a83c6a897a50bc1da112a687992ba4693696f7b618b000c89e19bc4bf, slot: 5561 +2024-09-30T06:47:40.202342Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5561 +2024-09-30T06:47:40.202362Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5561 +2024-09-30T06:47:40.293871Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 5504 +2024-09-30T06:47:53.395899Z INFO fork_choice_control::block_processor: Validating block with slot: 5633 +2024-09-30T06:47:53.399595Z INFO fork_choice_control::block_processor: Validating block with slot: 5634 +2024-09-30T06:47:53.432457Z INFO fork_choice_control::block_processor: Validating block with slot: 5635 +2024-09-30T06:47:53.432462Z INFO fork_choice_control::block_processor: Validating block with slot: 5637 +2024-09-30T06:47:53.432524Z INFO fork_choice_control::block_processor: Validating block with slot: 5636 +2024-09-30T06:47:53.851511Z INFO fork_choice_control::block_processor: Validating block with slot: 5638 +2024-09-30T06:47:53.851524Z INFO fork_choice_control::block_processor: Validating block with slot: 5639 +2024-09-30T06:47:53.851543Z INFO fork_choice_control::block_processor: Validating block with slot: 5640 +2024-09-30T06:47:53.851572Z INFO fork_choice_control::block_processor: Validating block with slot: 5642 +2024-09-30T06:47:53.851650Z INFO fork_choice_control::block_processor: Validating block with slot: 5643 +2024-09-30T06:47:53.868185Z INFO fork_choice_control::block_processor: Validating block with slot: 5644 +2024-09-30T06:47:53.894824Z INFO fork_choice_control::block_processor: Validating block with slot: 5645 +2024-09-30T06:47:54.299115Z INFO fork_choice_control::block_processor: Validating block with slot: 5646 +2024-09-30T06:47:54.299126Z INFO fork_choice_control::block_processor: Validating block with slot: 5651 +2024-09-30T06:47:54.299138Z INFO fork_choice_control::block_processor: Validating block with slot: 5652 +2024-09-30T06:47:54.299176Z INFO fork_choice_control::block_processor: Validating block with slot: 5649 +2024-09-30T06:47:54.299397Z INFO fork_choice_control::block_processor: Validating block with slot: 5650 +2024-09-30T06:47:54.299746Z INFO fork_choice_control::block_processor: Validating block with slot: 5647 +2024-09-30T06:47:54.317976Z INFO fork_choice_control::block_processor: Validating block with slot: 5653 +2024-09-30T06:47:54.317980Z INFO fork_choice_control::block_processor: Validating block with slot: 5654 +2024-09-30T06:47:54.327164Z INFO fork_choice_control::block_processor: Validating block with slot: 5655 +2024-09-30T06:47:54.327166Z INFO fork_choice_control::block_processor: Validating block with slot: 5656 +2024-09-30T06:47:54.330135Z INFO fork_choice_control::block_processor: Validating block with slot: 5657 +2024-09-30T06:47:54.330139Z INFO fork_choice_control::block_processor: Validating block with slot: 5658 +2024-09-30T06:47:54.744124Z INFO fork_choice_control::block_processor: Validating block with slot: 5660 +2024-09-30T06:47:54.744131Z INFO fork_choice_control::block_processor: Validating block with slot: 5665 +2024-09-30T06:47:54.744170Z INFO fork_choice_control::block_processor: Validating block with slot: 5664 +2024-09-30T06:47:54.744198Z INFO fork_choice_control::block_processor: Validating block with slot: 5661 +2024-09-30T06:47:54.744201Z INFO fork_choice_control::block_processor: Validating block with slot: 5659 +2024-09-30T06:47:54.744252Z INFO fork_choice_control::block_processor: Validating block with slot: 5662 +2024-09-30T06:47:54.744483Z INFO fork_choice_control::block_processor: Validating block with slot: 5663 +2024-09-30T06:47:54.754225Z INFO fork_choice_control::block_processor: Validating block with slot: 5667 +2024-09-30T06:47:54.754222Z INFO fork_choice_control::block_processor: Validating block with slot: 5666 +2024-09-30T06:47:54.991619Z INFO fork_choice_control::block_processor: Validating block with slot: 5669 +2024-09-30T06:47:54.991628Z INFO fork_choice_control::block_processor: Validating block with slot: 5671 +2024-09-30T06:47:54.991632Z INFO fork_choice_control::block_processor: Validating block with slot: 5670 +2024-09-30T06:47:54.991670Z INFO fork_choice_control::block_processor: Validating block with slot: 5668 +2024-09-30T06:47:55.173542Z INFO fork_choice_control::block_processor: Validating block with slot: 5672 +2024-09-30T06:47:55.197451Z INFO fork_choice_control::block_processor: Validating block with slot: 5674 +2024-09-30T06:47:55.197457Z INFO fork_choice_control::block_processor: Validating block with slot: 5680 +2024-09-30T06:47:55.197495Z INFO fork_choice_control::block_processor: Validating block with slot: 5678 +2024-09-30T06:47:55.197525Z INFO fork_choice_control::block_processor: Validating block with slot: 5675 +2024-09-30T06:47:55.197542Z INFO fork_choice_control::block_processor: Validating block with slot: 5676 +2024-09-30T06:47:55.197577Z INFO fork_choice_control::block_processor: Validating block with slot: 5679 +2024-09-30T06:47:55.197761Z INFO fork_choice_control::block_processor: Validating block with slot: 5673 +2024-09-30T06:47:55.198068Z INFO fork_choice_control::block_processor: Validating block with slot: 5677 +2024-09-30T06:47:55.198855Z INFO fork_choice_control::block_processor: Validating block with slot: 5681 +2024-09-30T06:47:55.220815Z INFO fork_choice_control::block_processor: Validating block with slot: 5683 +2024-09-30T06:47:55.220818Z INFO fork_choice_control::block_processor: Validating block with slot: 5682 +2024-09-30T06:47:55.220825Z INFO fork_choice_control::block_processor: Validating block with slot: 5684 +2024-09-30T06:47:55.441081Z INFO fork_choice_control::block_processor: Validating block with slot: 5689 +2024-09-30T06:47:55.441091Z INFO fork_choice_control::block_processor: Validating block with slot: 5685 +2024-09-30T06:47:55.441096Z INFO fork_choice_control::block_processor: Validating block with slot: 5690 +2024-09-30T06:47:55.441108Z INFO fork_choice_control::block_processor: Validating block with slot: 5687 +2024-09-30T06:47:55.441110Z INFO fork_choice_control::block_processor: Validating block with slot: 5686 +2024-09-30T06:47:55.441235Z INFO fork_choice_control::block_processor: Validating block with slot: 5688 +2024-09-30T06:47:55.441322Z INFO fork_choice_control::block_processor: Validating block with slot: 5691 +2024-09-30T06:47:55.619502Z INFO fork_choice_control::block_processor: Validating block with slot: 5692 +2024-09-30T06:47:55.623559Z INFO fork_choice_control::block_processor: Validating block with slot: 5693 +2024-09-30T06:47:55.623564Z INFO fork_choice_control::block_processor: Validating block with slot: 5694 +2024-09-30T06:47:55.626853Z INFO fork_choice_control::block_processor: Validating block with slot: 5695 +2024-09-30T06:47:55.626894Z INFO fork_choice_control::block_processor: Validating block with slot: 5696 +2024-09-30T06:47:57.597340Z INFO fork_choice_control::block_processor: Validating block with slot: 5594 +2024-09-30T06:47:57.648889Z INFO fork_choice_control::block_processor: Validating block with slot: 5595 +2024-09-30T06:47:57.648898Z INFO fork_choice_control::block_processor: Validating block with slot: 5600 +2024-09-30T06:47:57.648904Z INFO fork_choice_control::block_processor: Validating block with slot: 5601 +2024-09-30T06:47:57.648911Z INFO fork_choice_control::block_processor: Validating block with slot: 5596 +2024-09-30T06:47:57.648943Z INFO fork_choice_control::block_processor: Validating block with slot: 5599 +2024-09-30T06:47:57.648939Z INFO fork_choice_control::block_processor: Validating block with slot: 5598 +2024-09-30T06:47:57.648959Z INFO fork_choice_control::block_processor: Validating block with slot: 5597 +2024-09-30T06:47:57.649458Z INFO fork_choice_control::block_processor: Validating block with slot: 5602 +2024-09-30T06:47:57.650233Z INFO fork_choice_control::block_processor: Validating block with slot: 5603 +2024-09-30T06:47:57.650241Z INFO fork_choice_control::block_processor: Validating block with slot: 5604 +2024-09-30T06:47:57.650397Z INFO fork_choice_control::block_processor: Validating block with slot: 5605 +2024-09-30T06:47:57.650595Z INFO fork_choice_control::block_processor: Validating block with slot: 5606 +2024-09-30T06:47:57.651520Z INFO fork_choice_control::block_processor: Validating block with slot: 5607 +2024-09-30T06:47:57.651710Z INFO fork_choice_control::block_processor: Validating block with slot: 5608 +2024-09-30T06:47:57.651951Z INFO fork_choice_control::block_processor: Validating block with slot: 5609 +2024-09-30T06:47:57.652071Z INFO fork_choice_control::block_processor: Validating block with slot: 5610 +2024-09-30T06:47:57.796112Z INFO fork_choice_control::block_processor: Validating block with slot: 5612 +2024-09-30T06:47:57.796132Z INFO fork_choice_control::block_processor: Validating block with slot: 5614 +2024-09-30T06:47:57.796173Z INFO fork_choice_control::block_processor: Validating block with slot: 5611 +2024-09-30T06:47:57.796234Z INFO fork_choice_control::block_processor: Validating block with slot: 5613 +2024-09-30T06:47:58.109200Z INFO fork_choice_control::block_processor: Validating block with slot: 5615 +2024-09-30T06:47:58.110513Z INFO fork_choice_control::block_processor: Validating block with slot: 5616 +2024-09-30T06:47:58.111844Z INFO fork_choice_control::block_processor: Validating block with slot: 5617 +2024-09-30T06:47:58.114103Z INFO fork_choice_control::block_processor: Validating block with slot: 5618 +2024-09-30T06:47:58.115628Z INFO fork_choice_control::block_processor: Validating block with slot: 5619 +2024-09-30T06:47:58.117122Z INFO fork_choice_control::block_processor: Validating block with slot: 5620 +2024-09-30T06:47:58.118301Z INFO fork_choice_control::block_processor: Validating block with slot: 5621 +2024-09-30T06:47:58.121187Z INFO fork_choice_control::block_processor: Validating block with slot: 5622 +2024-09-30T06:47:58.122439Z INFO fork_choice_control::block_processor: Validating block with slot: 5623 +2024-09-30T06:47:58.123570Z INFO fork_choice_control::block_processor: Validating block with slot: 5624 +2024-09-30T06:47:58.124601Z INFO fork_choice_control::block_processor: Validating block with slot: 5625 +2024-09-30T06:47:58.125653Z INFO fork_choice_control::block_processor: Validating block with slot: 5626 +2024-09-30T06:47:58.126814Z INFO fork_choice_control::block_processor: Validating block with slot: 5627 +2024-09-30T06:47:58.129691Z INFO fork_choice_control::block_processor: Validating block with slot: 5628 +2024-09-30T06:47:58.229899Z INFO fork_choice_control::block_processor: Validating block with slot: 5629 +2024-09-30T06:47:58.242696Z INFO fork_choice_control::block_processor: Validating block with slot: 5632 +2024-09-30T06:47:58.242693Z INFO fork_choice_control::block_processor: Validating block with slot: 5631 +2024-09-30T06:48:01.311241Z INFO fork_choice_control::block_processor: Validating block with slot: 5562 +2024-09-30T06:48:01.311254Z INFO fork_choice_control::block_processor: Validating block with slot: 5563 +2024-09-30T06:48:01.313611Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x62b63f30305db261f45a0f7f3ef9449da97ff32efd26dc63551b47ab5856dd22, slot: 5562 +2024-09-30T06:48:01.323995Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5562 +2024-09-30T06:48:01.324022Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5562 +2024-09-30T06:48:01.343880Z INFO fork_choice_control::block_processor: Validating block with slot: 5563 +2024-09-30T06:48:01.345552Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4e657b7dbef1cde1b9e549b64b12cf2b488171bafba05a18de4b5676e9256a0d, slot: 5563 +2024-09-30T06:48:01.352925Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5563 +2024-09-30T06:48:01.352942Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5563 +2024-09-30T06:48:01.443921Z INFO fork_choice_control::block_processor: Validating block with slot: 5564 +2024-09-30T06:48:01.443969Z INFO fork_choice_control::block_processor: Validating block with slot: 5565 +2024-09-30T06:48:01.443972Z INFO fork_choice_control::block_processor: Validating block with slot: 5566 +2024-09-30T06:48:01.443975Z INFO fork_choice_control::block_processor: Validating block with slot: 5567 +2024-09-30T06:48:01.444075Z INFO fork_choice_control::block_processor: Validating block with slot: 5568 +2024-09-30T06:48:01.445080Z INFO fork_choice_control::block_processor: Validating block with slot: 5570 +2024-09-30T06:48:01.445488Z INFO fork_choice_control::block_processor: Validating block with slot: 5571 +2024-09-30T06:48:01.446927Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x73336e2767841e6c25ef2a82411efbd2a27fc61f93365d2151ce3b6f00ea4d80, slot: 5564 +2024-09-30T06:48:01.454155Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5564 +2024-09-30T06:48:01.454185Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5564 +2024-09-30T06:48:01.471687Z INFO fork_choice_control::block_processor: Validating block with slot: 5565 +2024-09-30T06:48:01.472667Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x51c9fc0b1b17a90db061a904d8b393527970d42b829984e573bf63fb0636ec83, slot: 5565 +2024-09-30T06:48:01.478463Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5565 +2024-09-30T06:48:01.478482Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5565 +2024-09-30T06:48:01.494894Z INFO fork_choice_control::block_processor: Validating block with slot: 5566 +2024-09-30T06:48:01.497293Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe6c230848d57dae72252fc7df9a162d99737c4ad3cec52c23efdde0915ead6bb, slot: 5566 +2024-09-30T06:48:01.506542Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5566 +2024-09-30T06:48:01.506566Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5566 +2024-09-30T06:48:01.523351Z INFO fork_choice_control::block_processor: Validating block with slot: 5567 +2024-09-30T06:48:01.525415Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa89e1c51bd1387a73c146c45ed1db08b0c4238d8ebe9dd986235cff8ced5bfe8, slot: 5567 +2024-09-30T06:48:01.533919Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5567 +2024-09-30T06:48:01.533935Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5567 +2024-09-30T06:48:01.557283Z INFO fork_choice_control::block_processor: Validating block with slot: 5568 +2024-09-30T06:48:01.558173Z INFO fork_choice_control::block_processor: Validating block with slot: 5572 +2024-09-30T06:48:01.559225Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xff646837892091dcb281712478b266404707cad76022476cd7f1f6b8869fdd4b, slot: 5568 +2024-09-30T06:48:01.562877Z INFO fork_choice_control::block_processor: Validating block with slot: 5573 +2024-09-30T06:48:01.572510Z INFO fork_choice_control::block_processor: Validating block with slot: 5574 +2024-09-30T06:48:01.664977Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5568 +2024-09-30T06:48:01.665001Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5568 +2024-09-30T06:48:01.676181Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5568) +2024-09-30T06:48:01.676297Z INFO fork_choice_control::block_processor: Validating block with slot: 5570 +2024-09-30T06:48:01.678121Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeed56c166da476203ce25d6602e7597b81392e69e1af3e34d3037ebae21ebc47, slot: 5570 +2024-09-30T06:48:01.718300Z INFO fork_choice_control::block_processor: Validating block with slot: 5576 +2024-09-30T06:48:01.718312Z INFO fork_choice_control::block_processor: Validating block with slot: 5577 +2024-09-30T06:48:01.718328Z INFO fork_choice_control::block_processor: Validating block with slot: 5575 +2024-09-30T06:48:01.718350Z INFO fork_choice_control::block_processor: Validating block with slot: 5578 +2024-09-30T06:48:01.720793Z INFO fork_choice_control::block_processor: Validating block with slot: 5579 +2024-09-30T06:48:01.738404Z INFO fork_choice_control::block_processor: Validating block with slot: 5582 +2024-09-30T06:48:01.738402Z INFO fork_choice_control::block_processor: Validating block with slot: 5581 +2024-09-30T06:48:01.738450Z INFO fork_choice_control::block_processor: Validating block with slot: 5580 +2024-09-30T06:48:01.738451Z INFO fork_choice_control::block_processor: Validating block with slot: 5584 +2024-09-30T06:48:01.738463Z INFO fork_choice_control::block_processor: Validating block with slot: 5585 +2024-09-30T06:48:01.738721Z INFO fork_choice_control::block_processor: Validating block with slot: 5583 +2024-09-30T06:48:01.757308Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5570 +2024-09-30T06:48:01.757328Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5570 +2024-09-30T06:48:01.768088Z INFO fork_choice_control::block_processor: Validating block with slot: 5571 +2024-09-30T06:48:01.771177Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8476373ff041c8fd094c075a5640849720aa5bb23787d98888f6be51fcacbc96, slot: 5571 +2024-09-30T06:48:01.782802Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5571 +2024-09-30T06:48:01.782818Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5571 +2024-09-30T06:48:01.794626Z INFO fork_choice_control::block_processor: Validating block with slot: 5572 +2024-09-30T06:48:01.795730Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x74f184c89378c584b183c27c2e49490529960f354a45c4849e663f2671d9d84b, slot: 5572 +2024-09-30T06:48:01.802336Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5572 +2024-09-30T06:48:01.802351Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5572 +2024-09-30T06:48:01.814223Z INFO fork_choice_control::block_processor: Validating block with slot: 5573 +2024-09-30T06:48:01.816170Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa2433a5f024f8b379a5306cedc16f0f4e4f6c8c92a64794121c4f5948034812b, slot: 5573 +2024-09-30T06:48:01.826084Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5573 +2024-09-30T06:48:01.826106Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5573 +2024-09-30T06:48:01.841117Z INFO fork_choice_control::block_processor: Validating block with slot: 5574 +2024-09-30T06:48:01.842235Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc0dd04981333d37899d4623002abbb08cae6d607673ed80da5fc328faf282691, slot: 5574 +2024-09-30T06:48:01.848496Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5574 +2024-09-30T06:48:01.848511Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5574 +2024-09-30T06:48:01.861070Z INFO fork_choice_control::block_processor: Validating block with slot: 5575 +2024-09-30T06:48:01.863444Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3f940e5a344ba89924d12cd1a80f67aa988ecf8760491600c096985ec0429037, slot: 5575 +2024-09-30T06:48:01.873672Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5575 +2024-09-30T06:48:01.873697Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5575 +2024-09-30T06:48:01.886877Z INFO fork_choice_control::block_processor: Validating block with slot: 5576 +2024-09-30T06:48:01.888308Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xca33985b04bec7b576955b57deff96676966391999c9da752e58d8846712fe08, slot: 5576 +2024-09-30T06:48:01.894016Z INFO fork_choice_control::block_processor: Validating block with slot: 5586 +2024-09-30T06:48:01.894043Z INFO fork_choice_control::block_processor: Validating block with slot: 5588 +2024-09-30T06:48:01.894057Z INFO fork_choice_control::block_processor: Validating block with slot: 5587 +2024-09-30T06:48:01.894086Z INFO fork_choice_control::block_processor: Validating block with slot: 5589 +2024-09-30T06:48:01.894431Z INFO fork_choice_control::block_processor: Validating block with slot: 5591 +2024-09-30T06:48:01.895113Z INFO fork_choice_control::block_processor: Validating block with slot: 5590 +2024-09-30T06:48:01.895515Z INFO fork_choice_control::block_processor: Validating block with slot: 5592 +2024-09-30T06:48:01.895780Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5576 +2024-09-30T06:48:01.895806Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5576 +2024-09-30T06:48:01.896186Z INFO fork_choice_control::block_processor: Validating block with slot: 5593 +2024-09-30T06:48:01.910518Z INFO fork_choice_control::block_processor: Validating block with slot: 5577 +2024-09-30T06:48:01.912207Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x10eacdda88f19d23cebf8996f0f7c205b8a57dcfc8193b680b9526421b6bbc5f, slot: 5577 +2024-09-30T06:48:01.919229Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5577 +2024-09-30T06:48:01.919245Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5577 +2024-09-30T06:48:01.932048Z INFO fork_choice_control::block_processor: Validating block with slot: 5578 +2024-09-30T06:48:01.933010Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4daf46ca30133376a28b2ed35f6a19df93836f31fdc7978911e7527447e11043, slot: 5578 +2024-09-30T06:48:01.939488Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5578 +2024-09-30T06:48:01.939510Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5578 +2024-09-30T06:48:01.952395Z INFO fork_choice_control::block_processor: Validating block with slot: 5579 +2024-09-30T06:48:01.953525Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x48860958bd5b4bce29ec1a19925074fa163c3e5a24207468e884054715616586, slot: 5579 +2024-09-30T06:48:01.959514Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5579 +2024-09-30T06:48:01.959533Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5579 +2024-09-30T06:48:01.972979Z INFO fork_choice_control::block_processor: Validating block with slot: 5580 +2024-09-30T06:48:01.975426Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe0db1c737080e1c293b2b995ecd781a042a7f25f374f706969cc3f0d1367b084, slot: 5580 +2024-09-30T06:48:01.984917Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5580 +2024-09-30T06:48:01.984930Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5580 +2024-09-30T06:48:01.998536Z INFO fork_choice_control::block_processor: Validating block with slot: 5581 +2024-09-30T06:48:01.999631Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6895027c0483fc20b73d2489da2b97b8493b1ebd2a8c0b11dafb99aa0ec8a670, slot: 5581 +2024-09-30T06:48:02.005945Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5581 +2024-09-30T06:48:02.005965Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5581 +2024-09-30T06:48:02.020009Z INFO fork_choice_control::block_processor: Validating block with slot: 5582 +2024-09-30T06:48:02.021579Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x25fbedc6ac83d46b76a39c2a4c657c6058883490716121a4ac224314b10da2d2, slot: 5582 +2024-09-30T06:48:02.029134Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5582 +2024-09-30T06:48:02.029149Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5582 +2024-09-30T06:48:02.043583Z INFO fork_choice_control::block_processor: Validating block with slot: 5583 +2024-09-30T06:48:02.045378Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xadbe0614d64ad319df24d0ba7ff0250b2a9197576a3e15eb36e3b8b35d4b3c1e, slot: 5583 +2024-09-30T06:48:02.053007Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5583 +2024-09-30T06:48:02.053031Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5583 +2024-09-30T06:48:02.067203Z INFO fork_choice_control::block_processor: Validating block with slot: 5584 +2024-09-30T06:48:02.068709Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x79cbf41d156bd3de186f9c0cafc7b14910bc5e116f2fc6efc966f6f8e537ff85, slot: 5584 +2024-09-30T06:48:02.075769Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5584 +2024-09-30T06:48:02.075785Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5584 +2024-09-30T06:48:02.090308Z INFO fork_choice_control::block_processor: Validating block with slot: 5585 +2024-09-30T06:48:02.091399Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb3d06dfa565ba6d699a83cd3d7497986d6b63086a0d150f1e87093dfcf783ed5, slot: 5585 +2024-09-30T06:48:02.097181Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5585 +2024-09-30T06:48:02.097193Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5585 +2024-09-30T06:48:02.112157Z INFO fork_choice_control::block_processor: Validating block with slot: 5586 +2024-09-30T06:48:02.116090Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x091d35e147de3cb86960ee0a1754d5722669842cc05f66316aac8a05998028bb, slot: 5586 +2024-09-30T06:48:02.130380Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5586 +2024-09-30T06:48:02.130399Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5586 +2024-09-30T06:48:02.146095Z INFO fork_choice_control::block_processor: Validating block with slot: 5587 +2024-09-30T06:48:02.147185Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdf9b50c19b209f970234b3da5bb61b29a5691d8172eda06e091da5ea20c14fe0, slot: 5587 +2024-09-30T06:48:02.153616Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5587 +2024-09-30T06:48:02.153641Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5587 +2024-09-30T06:48:02.169129Z INFO fork_choice_control::block_processor: Validating block with slot: 5588 +2024-09-30T06:48:02.170263Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x54f76be797eddfa639de3251d0afda18e80584ac6dbf7d157bd0183188a2ad3f, slot: 5588 +2024-09-30T06:48:02.176313Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5588 +2024-09-30T06:48:02.176330Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5588 +2024-09-30T06:48:02.192209Z INFO fork_choice_control::block_processor: Validating block with slot: 5589 +2024-09-30T06:48:02.193863Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5682b1baf76f1512e35ad95f384070a975d6327ecface6e07670dc52d897e36d, slot: 5589 +2024-09-30T06:48:02.201291Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5589 +2024-09-30T06:48:02.201303Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5589 +2024-09-30T06:48:02.217085Z INFO fork_choice_control::block_processor: Validating block with slot: 5590 +2024-09-30T06:48:02.218749Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x11321c9c1e99f9950ffb09c3c3370f120f55cfdf39e5b48765647e51e6f31c0d, slot: 5590 +2024-09-30T06:48:02.227120Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5590 +2024-09-30T06:48:02.227140Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5590 +2024-09-30T06:48:02.243649Z INFO fork_choice_control::block_processor: Validating block with slot: 5591 +2024-09-30T06:48:02.244752Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x76771840532ad81ab280528e88a6203fdf609be0a223f36e8e5b5fb9419e70a4, slot: 5591 +2024-09-30T06:48:02.250626Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5591 +2024-09-30T06:48:02.250639Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5591 +2024-09-30T06:48:02.272674Z INFO fork_choice_control::block_processor: Validating block with slot: 5592 +2024-09-30T06:48:02.272677Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 173, root: 0x03e657dc5f1e1f2dc668fe2f8be988a6b840f00425e86e965c0fc2c2c79c1457, head slot: 5591, head root: 0x76771840532ad81ab280528e88a6203fdf609be0a223f36e8e5b5fb9419e70a4) +2024-09-30T06:48:02.273809Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x698a7f58cda1d2c10b64160439ae747fb251ff85bf746f295e75b156ae6fd791, slot: 5592 +2024-09-30T06:48:02.280235Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5592 +2024-09-30T06:48:02.280255Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5592 +2024-09-30T06:48:02.297362Z INFO fork_choice_control::block_processor: Validating block with slot: 5593 +2024-09-30T06:48:02.298774Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x32a34d580e1c95fafe147ac7fbc270c88382f622f7b0a00c02995f43c5f88352, slot: 5593 +2024-09-30T06:48:02.314001Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5593 +2024-09-30T06:48:02.314022Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5593 +2024-09-30T06:48:02.333120Z INFO fork_choice_control::block_processor: Validating block with slot: 5594 +2024-09-30T06:48:02.334610Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3ed8bb320cc3fecb3760f916209ffcd70b6ea06f073537a0ae1902e0875d00f9, slot: 5594 +2024-09-30T06:48:02.345559Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5594 +2024-09-30T06:48:02.345577Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5594 +2024-09-30T06:48:02.362981Z INFO fork_choice_control::block_processor: Validating block with slot: 5595 +2024-09-30T06:48:02.364263Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x67702344259a62e88f5422f83944d75c232c3bc642ef9f46923bbc7c23bb57a5, slot: 5595 +2024-09-30T06:48:02.371547Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5595 +2024-09-30T06:48:02.371569Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5595 +2024-09-30T06:48:02.389348Z INFO fork_choice_control::block_processor: Validating block with slot: 5596 +2024-09-30T06:48:02.390474Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1b9d52f667b88e12634cb06951e7eb38ff89b6ec2c471c837c81b9acc2474307, slot: 5596 +2024-09-30T06:48:02.396816Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5596 +2024-09-30T06:48:02.396829Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5596 +2024-09-30T06:48:02.403417Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 5536 +2024-09-30T06:48:02.414828Z INFO fork_choice_control::block_processor: Validating block with slot: 5597 +2024-09-30T06:48:02.415827Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3dd532a3449b95bf43b756cfb017599605f597aead953a16766c5786ccd08146, slot: 5597 +2024-09-30T06:48:02.422689Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5597 +2024-09-30T06:48:02.422715Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5597 +2024-09-30T06:48:02.440844Z INFO fork_choice_control::block_processor: Validating block with slot: 5598 +2024-09-30T06:48:02.443516Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xad3877f43c373ec744eedac649b70678b18d6dc1fa69dd26701be1ba9f01151c, slot: 5598 +2024-09-30T06:48:02.455119Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5598 +2024-09-30T06:48:02.455149Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5598 +2024-09-30T06:48:02.473678Z INFO fork_choice_control::block_processor: Validating block with slot: 5599 +2024-09-30T06:48:02.474669Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1d470f2cb92501aa8c4ce8e298f33865667b3e92327b6589851b2e66f8b5649e, slot: 5599 +2024-09-30T06:48:02.480801Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5599 +2024-09-30T06:48:02.480814Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5599 +2024-09-30T06:48:02.499375Z INFO fork_choice_control::block_processor: Validating block with slot: 5600 +2024-09-30T06:48:02.500361Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5b29f77c612ca82e83259416fbaca1e0e7339d8b527eb782b4223cb9e2554e94, slot: 5600 +2024-09-30T06:48:02.600155Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5600 +2024-09-30T06:48:02.600179Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5600 +2024-09-30T06:48:02.611396Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5600) +2024-09-30T06:48:02.611527Z INFO fork_choice_control::block_processor: Validating block with slot: 5601 +2024-09-30T06:48:02.612749Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6a0239d66fcee49b10f3ed3a970cd9f06b2098d6b90929187e5b84a3d66b83b3, slot: 5601 +2024-09-30T06:48:02.685961Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5601 +2024-09-30T06:48:02.685981Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5601 +2024-09-30T06:48:02.697207Z INFO fork_choice_control::block_processor: Validating block with slot: 5602 +2024-09-30T06:48:02.698435Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc2c81b99a89192d3102b7dbc5c1746dd8f2792a57bd13b405f96538e96d0fc8a, slot: 5602 +2024-09-30T06:48:02.705610Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5602 +2024-09-30T06:48:02.705632Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5602 +2024-09-30T06:48:02.717197Z INFO fork_choice_control::block_processor: Validating block with slot: 5603 +2024-09-30T06:48:02.718157Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcfa391fbd7abb8b2f8c337c34158c992cf3394e4505d2205f2704faf17325b7d, slot: 5603 +2024-09-30T06:48:02.724692Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5603 +2024-09-30T06:48:02.724712Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5603 +2024-09-30T06:48:02.736632Z INFO fork_choice_control::block_processor: Validating block with slot: 5604 +2024-09-30T06:48:02.737843Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2f75576ccbc17923fedaedd63e97fe6392860f8e72a022434597854ae8103eef, slot: 5604 +2024-09-30T06:48:02.744452Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5604 +2024-09-30T06:48:02.744469Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5604 +2024-09-30T06:48:02.756771Z INFO fork_choice_control::block_processor: Validating block with slot: 5605 +2024-09-30T06:48:02.758961Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x52694a89d1e6789391c8fb71bccb52cc3ffddc1a377f124f9e06bb6a81ef2ef2, slot: 5605 +2024-09-30T06:48:02.768740Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5605 +2024-09-30T06:48:02.768759Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5605 +2024-09-30T06:48:02.781141Z INFO fork_choice_control::block_processor: Validating block with slot: 5606 +2024-09-30T06:48:02.782256Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x188157c81673c0e842e9fbe51e866d5340c701d62c55bfe518a2bb3355933831, slot: 5606 +2024-09-30T06:48:02.789073Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5606 +2024-09-30T06:48:02.789095Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5606 +2024-09-30T06:48:02.801685Z INFO fork_choice_control::block_processor: Validating block with slot: 5607 +2024-09-30T06:48:02.802667Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xef114670b5f83eedc7696b06f99b356343ca50b1139a9f40a5a4ad8c0378e695, slot: 5607 +2024-09-30T06:48:02.809049Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5607 +2024-09-30T06:48:02.809067Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5607 +2024-09-30T06:48:02.822021Z INFO fork_choice_control::block_processor: Validating block with slot: 5608 +2024-09-30T06:48:02.823003Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7f5aff5c6e8dc8808eaeeb7742f52e94f0d7a234de42b28b9ed8501b44b443d1, slot: 5608 +2024-09-30T06:48:02.829118Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5608 +2024-09-30T06:48:02.829135Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5608 +2024-09-30T06:48:02.842146Z INFO fork_choice_control::block_processor: Validating block with slot: 5609 +2024-09-30T06:48:02.845769Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3ceb6b207417f1c5d0b7cbb539f6240be9e5c3f4d13627fb0e20276755ebd135, slot: 5609 +2024-09-30T06:48:02.859574Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5609 +2024-09-30T06:48:02.859593Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5609 +2024-09-30T06:48:02.873205Z INFO fork_choice_control::block_processor: Validating block with slot: 5610 +2024-09-30T06:48:02.874447Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3afcc8dd3bc4b6e32866dbda30ef92c8e765f2ff085077649f6af5ab451371d5, slot: 5610 +2024-09-30T06:48:02.880629Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5610 +2024-09-30T06:48:02.880641Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5610 +2024-09-30T06:48:02.894435Z INFO fork_choice_control::block_processor: Validating block with slot: 5611 +2024-09-30T06:48:02.895428Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xca3b699cf40a1a20aaf95a6487187188db96e99e4048495d7beb15c23f539379, slot: 5611 +2024-09-30T06:48:02.901151Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5611 +2024-09-30T06:48:02.901167Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5611 +2024-09-30T06:48:02.914986Z INFO fork_choice_control::block_processor: Validating block with slot: 5612 +2024-09-30T06:48:02.916076Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9230843d0ea5a20ed063b6cae5ecd93be6238c6adca1988df4ebc27b988a1680, slot: 5612 +2024-09-30T06:48:02.921876Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5612 +2024-09-30T06:48:02.921897Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5612 +2024-09-30T06:48:02.935691Z INFO fork_choice_control::block_processor: Validating block with slot: 5613 +2024-09-30T06:48:02.937097Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x54af978a70773d3a6577e8223f09495b267175792ef9913344a2c02bbb13c2b4, slot: 5613 +2024-09-30T06:48:02.943660Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5613 +2024-09-30T06:48:02.943675Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5613 +2024-09-30T06:48:02.958352Z INFO fork_choice_control::block_processor: Validating block with slot: 5614 +2024-09-30T06:48:02.959321Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7d1bcca7a9428700a8587c817e0e185bb2279a950e8c2869fe33e26b8940cf11, slot: 5614 +2024-09-30T06:48:02.964880Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5614 +2024-09-30T06:48:02.964896Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5614 +2024-09-30T06:48:02.979455Z INFO fork_choice_control::block_processor: Validating block with slot: 5615 +2024-09-30T06:48:02.980542Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbee9e188f8f2c583781f104b4fa26128d0f3cc2be6a6e598e754a03254e6c766, slot: 5615 +2024-09-30T06:48:02.986459Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5615 +2024-09-30T06:48:02.986478Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5615 +2024-09-30T06:48:03.000854Z INFO fork_choice_control::block_processor: Validating block with slot: 5616 +2024-09-30T06:48:03.001850Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x39f414d93f549460fab7b2d31b8f5f5c9c0cd31044356c73a4ac03042395290c, slot: 5616 +2024-09-30T06:48:03.007506Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5616 +2024-09-30T06:48:03.007524Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5616 +2024-09-30T06:48:03.022338Z INFO fork_choice_control::block_processor: Validating block with slot: 5617 +2024-09-30T06:48:03.023439Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa13e41e5550b41813e18ed234bbe985dbf76a7014cb8ed1acf19144a97172c80, slot: 5617 +2024-09-30T06:48:03.029396Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5617 +2024-09-30T06:48:03.029408Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5617 +2024-09-30T06:48:03.044399Z INFO fork_choice_control::block_processor: Validating block with slot: 5618 +2024-09-30T06:48:03.046312Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4b679caa8eec83409e984263bc45e74f49bb3d39dfd87d2807828a7d0dc983f4, slot: 5618 +2024-09-30T06:48:03.055048Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5618 +2024-09-30T06:48:03.055074Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5618 +2024-09-30T06:48:03.070133Z INFO fork_choice_control::block_processor: Validating block with slot: 5619 +2024-09-30T06:48:03.071415Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3cbd35110554d895fea2d3bdfdc7466ca1d1bc6b61f6372727cbb9b14228d3fb, slot: 5619 +2024-09-30T06:48:03.077653Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5619 +2024-09-30T06:48:03.077665Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5619 +2024-09-30T06:48:03.093026Z INFO fork_choice_control::block_processor: Validating block with slot: 5620 +2024-09-30T06:48:03.094130Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb14dcbc019206910b9d24e593af30d6c1ba26b41b0ce68394695042617223e6c, slot: 5620 +2024-09-30T06:48:03.100009Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5620 +2024-09-30T06:48:03.100021Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5620 +2024-09-30T06:48:03.115510Z INFO fork_choice_control::block_processor: Validating block with slot: 5621 +2024-09-30T06:48:03.116610Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe14ee676313d9a5dc7f657a1e13f6cf11a07c1fde4e62979c4058f30c40578dd, slot: 5621 +2024-09-30T06:48:03.123107Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5621 +2024-09-30T06:48:03.123129Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5621 +2024-09-30T06:48:03.138849Z INFO fork_choice_control::block_processor: Validating block with slot: 5622 +2024-09-30T06:48:03.141286Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3dd1772e66a3e9aed3bd796d9809f576c768ccafa05bd7cb6d2fa9c6226d69b3, slot: 5622 +2024-09-30T06:48:03.150772Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5622 +2024-09-30T06:48:03.150787Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5622 +2024-09-30T06:48:03.166976Z INFO fork_choice_control::block_processor: Validating block with slot: 5623 +2024-09-30T06:48:03.168078Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6e18c83312c5bc07ff4111dbcfd2ae71956e1fe48bd84b91b66a61c0dbc359be, slot: 5623 +2024-09-30T06:48:03.174320Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5623 +2024-09-30T06:48:03.174343Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5623 +2024-09-30T06:48:03.195840Z INFO fork_choice_control::block_processor: Validating block with slot: 5624 +2024-09-30T06:48:03.195843Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 174, root: 0xff646837892091dcb281712478b266404707cad76022476cd7f1f6b8869fdd4b, head slot: 5623, head root: 0x6e18c83312c5bc07ff4111dbcfd2ae71956e1fe48bd84b91b66a61c0dbc359be) +2024-09-30T06:48:03.196827Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7f2b29bebb6952a77392bbd0f130a17f337c3a4c7f6f1eec78d402fd7863f07a, slot: 5624 +2024-09-30T06:48:03.203178Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5624 +2024-09-30T06:48:03.203202Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5624 +2024-09-30T06:48:03.219962Z INFO fork_choice_control::block_processor: Validating block with slot: 5625 +2024-09-30T06:48:03.220996Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x31c2e725f97fb2c483b8aa38b068a0a2c2b48a17c9cce1ecbe1b5490c3ab8f61, slot: 5625 +2024-09-30T06:48:03.227215Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5625 +2024-09-30T06:48:03.227236Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5625 +2024-09-30T06:48:03.244397Z INFO fork_choice_control::block_processor: Validating block with slot: 5626 +2024-09-30T06:48:03.245387Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x11c05e20b005079b7739e2d0654a21ecdc9a8963c7ecd73026305701e559348f, slot: 5626 +2024-09-30T06:48:03.251536Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5626 +2024-09-30T06:48:03.251549Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5626 +2024-09-30T06:48:03.268673Z INFO fork_choice_control::block_processor: Validating block with slot: 5627 +2024-09-30T06:48:03.269972Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3ec9a15ea2914404363a01b37fc95be9970adc23179cc54a41c40324c9cb0f4b, slot: 5627 +2024-09-30T06:48:03.276699Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5627 +2024-09-30T06:48:03.276714Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5627 +2024-09-30T06:48:03.293902Z INFO fork_choice_control::block_processor: Validating block with slot: 5628 +2024-09-30T06:48:03.296575Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x15e2bd80f34e2a06614308ee437f8517bccfe33751f57af1c5642ebc6cb055f2, slot: 5628 +2024-09-30T06:48:03.307359Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5628 +2024-09-30T06:48:03.307378Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5628 +2024-09-30T06:48:03.324767Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 5568 +2024-09-30T06:48:03.325083Z INFO fork_choice_control::block_processor: Validating block with slot: 5629 +2024-09-30T06:48:03.326199Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x08c048f63831e43fd684c40fa88efac9d1f6ab9ef1a4ed438ac71540957a9279, slot: 5629 +2024-09-30T06:48:03.332490Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5629 +2024-09-30T06:48:03.332504Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5629 +2024-09-30T06:48:03.350280Z INFO fork_choice_control::block_processor: Validating block with slot: 5631 +2024-09-30T06:48:03.352810Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x912ef870c1cf705a1cfeef4b0234b12219f864746a97c17bec7d4f3370d7f76a, slot: 5631 +2024-09-30T06:48:03.367336Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5631 +2024-09-30T06:48:03.367356Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5631 +2024-09-30T06:48:03.385557Z INFO fork_choice_control::block_processor: Validating block with slot: 5632 +2024-09-30T06:48:03.386691Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa62c0e2c87abb82b9523b495735c525d18493e35509e530c7db7541b9cf6482d, slot: 5632 +2024-09-30T06:48:03.487093Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5632 +2024-09-30T06:48:03.487114Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5632 +2024-09-30T06:48:03.497912Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5632) +2024-09-30T06:48:03.498099Z INFO fork_choice_control::block_processor: Validating block with slot: 5633 +2024-09-30T06:48:03.500227Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x340d1ca8f6d07dc6960feb43d67bef33485ee64e86d11f09eac24f42ecfdf711, slot: 5633 +2024-09-30T06:48:03.577105Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5633 +2024-09-30T06:48:03.577128Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5633 +2024-09-30T06:48:03.588104Z INFO fork_choice_control::block_processor: Validating block with slot: 5634 +2024-09-30T06:48:03.589884Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x63ebf059c03b4a95a96e4428a7304fd7e2a6b1acafd67c5c8b371f46e8194844, slot: 5634 +2024-09-30T06:48:03.598725Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5634 +2024-09-30T06:48:03.598737Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5634 +2024-09-30T06:48:03.610207Z INFO fork_choice_control::block_processor: Validating block with slot: 5635 +2024-09-30T06:48:03.611184Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8a51c031e8c76712d5b99775a55d07c467d95b1e69358c33b3f7428d6350f8e4, slot: 5635 +2024-09-30T06:48:03.617532Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5635 +2024-09-30T06:48:03.617543Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5635 +2024-09-30T06:48:03.629089Z INFO fork_choice_control::block_processor: Validating block with slot: 5636 +2024-09-30T06:48:03.631454Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2678fc052fff1118d67710b32e7c8698059e7f82b9f92d6c16a378fc5b7c5187, slot: 5636 +2024-09-30T06:48:03.642635Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5636 +2024-09-30T06:48:03.642656Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5636 +2024-09-30T06:48:03.654660Z INFO fork_choice_control::block_processor: Validating block with slot: 5637 +2024-09-30T06:48:03.655641Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x61ce2d2f801f9e938af2d09b2b01b0e4f7a6e7ea8257381d49684084168ad73e, slot: 5637 +2024-09-30T06:48:03.663112Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5637 +2024-09-30T06:48:03.663132Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5637 +2024-09-30T06:48:03.675322Z INFO fork_choice_control::block_processor: Validating block with slot: 5638 +2024-09-30T06:48:03.677289Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x21d838a267582d2ca8d116e69024926b7fa08b2149d38caca0dded19e3941ff8, slot: 5638 +2024-09-30T06:48:03.686201Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5638 +2024-09-30T06:48:03.686222Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5638 +2024-09-30T06:48:03.698498Z INFO fork_choice_control::block_processor: Validating block with slot: 5639 +2024-09-30T06:48:03.700050Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xce5da48aa1c2dde28d5f5a64a72fc023b86c32f8fab50ca74ed3763b3628c17a, slot: 5639 +2024-09-30T06:48:03.708884Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5639 +2024-09-30T06:48:03.708906Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5639 +2024-09-30T06:48:03.722106Z INFO fork_choice_control::block_processor: Validating block with slot: 5640 +2024-09-30T06:48:03.723083Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8b9f6b4d6cd675bf5f6b0fdb5dfb1bc6d9f68889abad06342dbde03b43d87c85, slot: 5640 +2024-09-30T06:48:03.727475Z INFO fork_choice_control::block_processor: Validating block with slot: 5723 +2024-09-30T06:48:03.727468Z INFO fork_choice_control::block_processor: Validating block with slot: 5722 +2024-09-30T06:48:03.728830Z INFO fork_choice_control::block_processor: Validating block with slot: 5724 +2024-09-30T06:48:03.728854Z INFO fork_choice_control::block_processor: Validating block with slot: 5725 +2024-09-30T06:48:03.729227Z INFO fork_choice_control::block_processor: Validating block with slot: 5726 +2024-09-30T06:48:03.729477Z INFO fork_choice_control::block_processor: Validating block with slot: 5727 +2024-09-30T06:48:03.729509Z INFO fork_choice_control::block_processor: Validating block with slot: 5728 +2024-09-30T06:48:03.730423Z INFO fork_choice_control::block_processor: Validating block with slot: 5729 +2024-09-30T06:48:03.730452Z INFO fork_choice_control::block_processor: Validating block with slot: 5730 +2024-09-30T06:48:03.730651Z INFO fork_choice_control::block_processor: Validating block with slot: 5732 +2024-09-30T06:48:03.730717Z INFO fork_choice_control::block_processor: Validating block with slot: 5734 +2024-09-30T06:48:03.731082Z INFO fork_choice_control::block_processor: Validating block with slot: 5731 +2024-09-30T06:48:03.731137Z INFO fork_choice_control::block_processor: Validating block with slot: 5735 +2024-09-30T06:48:03.731482Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5640 +2024-09-30T06:48:03.731601Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5640 +2024-09-30T06:48:03.745083Z INFO fork_choice_control::block_processor: Validating block with slot: 5642 +2024-09-30T06:48:03.746729Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2dc67b7cd82fc9863cf761db88f14fffee90ef3aef689389eb4e94fb3ce8e5ee, slot: 5642 +2024-09-30T06:48:03.755891Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5642 +2024-09-30T06:48:03.755911Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5642 +2024-09-30T06:48:03.768733Z INFO fork_choice_control::block_processor: Validating block with slot: 5643 +2024-09-30T06:48:03.769864Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd64998aa5faf97b3f7c8076ff8b1f55f98f9391a72f634a32a176d1dc7b1cb9a, slot: 5643 +2024-09-30T06:48:03.776010Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5643 +2024-09-30T06:48:03.776025Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5643 +2024-09-30T06:48:03.789570Z INFO fork_choice_control::block_processor: Validating block with slot: 5644 +2024-09-30T06:48:03.792009Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x195e1ffbd18ffd73e5b68829e603296df67eed4a28d56305c6b713047ad393b7, slot: 5644 +2024-09-30T06:48:03.801518Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5644 +2024-09-30T06:48:03.801532Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5644 +2024-09-30T06:48:03.815137Z INFO fork_choice_control::block_processor: Validating block with slot: 5645 +2024-09-30T06:48:03.816100Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2c12845e10882a1642122f6c7e553c0ac7c81f590a0e6f13de187e5b53b93ee2, slot: 5645 +2024-09-30T06:48:03.822465Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5645 +2024-09-30T06:48:03.822486Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5645 +2024-09-30T06:48:03.835841Z INFO fork_choice_control::block_processor: Validating block with slot: 5646 +2024-09-30T06:48:03.837930Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x17468d7490d95419f331415549af3ceaea0e3c37c54eb2b8146958c503f9b04f, slot: 5646 +2024-09-30T06:48:03.846187Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5646 +2024-09-30T06:48:03.846198Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5646 +2024-09-30T06:48:03.860263Z INFO fork_choice_control::block_processor: Validating block with slot: 5647 +2024-09-30T06:48:03.861349Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb8b877c8e5237c3db0e5c14fd2bb8871bb3be191e7c5351ab11bd822a147cb5b, slot: 5647 +2024-09-30T06:48:03.867253Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5647 +2024-09-30T06:48:03.867269Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5647 +2024-09-30T06:48:03.881254Z INFO fork_choice_control::block_processor: Validating block with slot: 5649 +2024-09-30T06:48:03.883162Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x043fe07f80ed7bb814b2eb4a4bc65b5a7f85254d278e264f0bb92da4d908c5e6, slot: 5649 +2024-09-30T06:48:03.893242Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5649 +2024-09-30T06:48:03.893262Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5649 +2024-09-30T06:48:03.907843Z INFO fork_choice_control::block_processor: Validating block with slot: 5650 +2024-09-30T06:48:03.909221Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb508106eaaf4bb1f663795b6050e6ed67c94ffcd1b67599771e7ef351562c05c, slot: 5650 +2024-09-30T06:48:03.915732Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5650 +2024-09-30T06:48:03.915744Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5650 +2024-09-30T06:48:03.927737Z INFO fork_choice_control::block_processor: Validating block with slot: 5736 +2024-09-30T06:48:03.930784Z INFO fork_choice_control::block_processor: Validating block with slot: 5651 +2024-09-30T06:48:03.931724Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7b1c33239073f5b6fd605cf9be2466907b45f60f18d0e27b347a1865d16269a8, slot: 5651 +2024-09-30T06:48:03.938010Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5651 +2024-09-30T06:48:03.938031Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5651 +2024-09-30T06:48:03.952786Z INFO fork_choice_control::block_processor: Validating block with slot: 5652 +2024-09-30T06:48:03.954468Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc115ca3fb3725347c01b2c5437fb7650fd7dacf23e8dd6c6b8229d0e5579ddad, slot: 5652 +2024-09-30T06:48:03.961784Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5652 +2024-09-30T06:48:03.961795Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5652 +2024-09-30T06:48:03.976966Z INFO fork_choice_control::block_processor: Validating block with slot: 5653 +2024-09-30T06:48:03.978070Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd98f300b4a24018111a14b7c27be278d8612a2d4aa13186ccf69ee93af8de107, slot: 5653 +2024-09-30T06:48:03.983931Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5653 +2024-09-30T06:48:03.983945Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5653 +2024-09-30T06:48:03.999696Z INFO fork_choice_control::block_processor: Validating block with slot: 5654 +2024-09-30T06:48:04.000923Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x581950b97d95202e191148b333f5cbdda390ddd5af4ae4234440c0b49c7128b8, slot: 5654 +2024-09-30T06:48:04.008175Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5654 +2024-09-30T06:48:04.008193Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5654 +2024-09-30T06:48:04.023974Z INFO fork_choice_control::block_processor: Validating block with slot: 5655 +2024-09-30T06:48:04.025619Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6446cc0e9c9d781ec693e7f6d43f919d06bd3fc48a9044337859db3351ff4698, slot: 5655 +2024-09-30T06:48:04.032924Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5655 +2024-09-30T06:48:04.032936Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5655 +2024-09-30T06:48:04.057765Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 175, root: 0x5b29f77c612ca82e83259416fbaca1e0e7339d8b527eb782b4223cb9e2554e94, head slot: 5655, head root: 0x6446cc0e9c9d781ec693e7f6d43f919d06bd3fc48a9044337859db3351ff4698) +2024-09-30T06:48:04.057779Z INFO fork_choice_control::block_processor: Validating block with slot: 5656 +2024-09-30T06:48:04.058913Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2eb26796c339101b0cfb53cfcd8070d2620a7bd66a125f9d50cd363004143f62, slot: 5656 +2024-09-30T06:48:04.069039Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5656 +2024-09-30T06:48:04.069062Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5656 +2024-09-30T06:48:04.084902Z INFO fork_choice_control::block_processor: Validating block with slot: 5657 +2024-09-30T06:48:04.086024Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc5801c360f2089e870f5826c5bcc9c0d5b122f53cfc4edc656ea1207244a2cb3, slot: 5657 +2024-09-30T06:48:04.092391Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5657 +2024-09-30T06:48:04.092407Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5657 +2024-09-30T06:48:04.109064Z INFO fork_choice_control::block_processor: Validating block with slot: 5658 +2024-09-30T06:48:04.110185Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7abf2d1ead1afb344d35c778603882fce1a69334266569cc513d3c45fe768915, slot: 5658 +2024-09-30T06:48:04.116221Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5658 +2024-09-30T06:48:04.116234Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5658 +2024-09-30T06:48:04.132725Z INFO fork_choice_control::block_processor: Validating block with slot: 5659 +2024-09-30T06:48:04.133844Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x38d298f059f258397904afa3e12c4adeb4faa628094fbdc32a5f489263b48bd3, slot: 5659 +2024-09-30T06:48:04.141145Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5659 +2024-09-30T06:48:04.141164Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5659 +2024-09-30T06:48:04.158614Z INFO fork_choice_control::block_processor: Validating block with slot: 5660 +2024-09-30T06:48:04.160146Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x533e30556d3370a19abf1ce037ef17d38a4b95de6c69b27db3a437f1593d3f33, slot: 5660 +2024-09-30T06:48:04.166980Z INFO fork_choice_control::block_processor: Validating block with slot: 5737 +2024-09-30T06:48:04.166974Z INFO fork_choice_control::block_processor: Validating block with slot: 5738 +2024-09-30T06:48:04.166990Z INFO fork_choice_control::block_processor: Validating block with slot: 5739 +2024-09-30T06:48:04.167022Z INFO fork_choice_control::block_processor: Validating block with slot: 5740 +2024-09-30T06:48:04.167797Z INFO fork_choice_control::block_processor: Validating block with slot: 5741 +2024-09-30T06:48:04.168084Z INFO fork_choice_control::block_processor: Validating block with slot: 5743 +2024-09-30T06:48:04.168356Z INFO fork_choice_control::block_processor: Validating block with slot: 5744 +2024-09-30T06:48:04.168424Z INFO fork_choice_control::block_processor: Validating block with slot: 5745 +2024-09-30T06:48:04.169032Z INFO fork_choice_control::block_processor: Validating block with slot: 5747 +2024-09-30T06:48:04.169712Z INFO fork_choice_control::block_processor: Validating block with slot: 5748 +2024-09-30T06:48:04.169778Z INFO fork_choice_control::block_processor: Validating block with slot: 5749 +2024-09-30T06:48:04.170711Z INFO fork_choice_control::block_processor: Validating block with slot: 5742 +2024-09-30T06:48:04.170791Z INFO fork_choice_control::block_processor: Validating block with slot: 5750 +2024-09-30T06:48:04.170950Z INFO fork_choice_control::block_processor: Validating block with slot: 5751 +2024-09-30T06:48:04.171706Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5660 +2024-09-30T06:48:04.171879Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5660 +2024-09-30T06:48:04.176003Z INFO fork_choice_control::block_processor: Validating block with slot: 5752 +2024-09-30T06:48:04.189502Z INFO fork_choice_control::block_processor: Validating block with slot: 5661 +2024-09-30T06:48:04.190763Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe557ee36905d2edb56880df237a71b36b3ddf9d8015a9f19822664adf9f8b967, slot: 5661 +2024-09-30T06:48:04.198372Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5661 +2024-09-30T06:48:04.198390Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5661 +2024-09-30T06:48:04.200114Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 5600 +2024-09-30T06:48:04.215771Z INFO fork_choice_control::block_processor: Validating block with slot: 5662 +2024-09-30T06:48:04.216893Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1eeabc34b3a385ac0a443f661907d7065080e27498548f49736e68bf1121a19f, slot: 5662 +2024-09-30T06:48:04.224573Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5662 +2024-09-30T06:48:04.224592Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5662 +2024-09-30T06:48:04.242347Z INFO fork_choice_control::block_processor: Validating block with slot: 5663 +2024-09-30T06:48:04.245282Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xffacfdc7d54b2cccb9fc96603fcb7b5a5594a6cd56dd3c68da4445a2b7e48e88, slot: 5663 +2024-09-30T06:48:04.256737Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5663 +2024-09-30T06:48:04.256756Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5663 +2024-09-30T06:48:04.274755Z INFO fork_choice_control::block_processor: Validating block with slot: 5664 +2024-09-30T06:48:04.275745Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xab77d420081f77fd970f5e009806dcfbae23762e856e9e816b431c2160704444, slot: 5664 +2024-09-30T06:48:04.334139Z INFO fork_choice_control::block_processor: Validating block with slot: 5753 +2024-09-30T06:48:04.356557Z INFO fork_choice_control::block_processor: Validating block with slot: 5754 +2024-09-30T06:48:04.366042Z INFO fork_choice_control::block_processor: Validating block with slot: 5755 +2024-09-30T06:48:04.366071Z INFO fork_choice_control::block_processor: Validating block with slot: 5756 +2024-09-30T06:48:04.376184Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5664 +2024-09-30T06:48:04.376205Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5664 +2024-09-30T06:48:04.386522Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5664) +2024-09-30T06:48:04.386656Z INFO fork_choice_control::block_processor: Validating block with slot: 5665 +2024-09-30T06:48:04.387766Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1f2e8558d9afc5757d1c16767b37ec50b34117e0fc9f611edbf7bb493dffdec4, slot: 5665 +2024-09-30T06:48:04.462052Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5665 +2024-09-30T06:48:04.462073Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5665 +2024-09-30T06:48:04.472981Z INFO fork_choice_control::block_processor: Validating block with slot: 5666 +2024-09-30T06:48:04.475160Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4cecc7892175cebdac1d80ab508f003fcd0fb99e72600d901a535842e3dae29f, slot: 5666 +2024-09-30T06:48:04.484475Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5666 +2024-09-30T06:48:04.484486Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5666 +2024-09-30T06:48:04.495705Z INFO fork_choice_control::block_processor: Validating block with slot: 5667 +2024-09-30T06:48:04.496794Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3dd66ae9d23d1e5fa48c1b9fd93203d467c42a594a5c17b8af51cdc24c5843a5, slot: 5667 +2024-09-30T06:48:04.503699Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5667 +2024-09-30T06:48:04.503718Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5667 +2024-09-30T06:48:04.515231Z INFO fork_choice_control::block_processor: Validating block with slot: 5668 +2024-09-30T06:48:04.518276Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x361c524e6b7bfbd39ac3c622dd1ae6dc2e9535de21372a4d8cace797d7b82c1c, slot: 5668 +2024-09-30T06:48:04.531716Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5668 +2024-09-30T06:48:04.531736Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5668 +2024-09-30T06:48:04.546168Z INFO fork_choice_control::block_processor: Validating block with slot: 5669 +2024-09-30T06:48:04.547286Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1a3bde997648da0cc8eff1cc3ea86f473f633fe1d9a17c094d43c0ff96c67181, slot: 5669 +2024-09-30T06:48:04.555566Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5669 +2024-09-30T06:48:04.555598Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5669 +2024-09-30T06:48:04.567847Z INFO fork_choice_control::block_processor: Validating block with slot: 5670 +2024-09-30T06:48:04.569801Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x38428c9e98c8e3209ec1d4c66f2ac1e9d47d337dbd8b11a189a4c8451eeef64f, slot: 5670 +2024-09-30T06:48:04.581386Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5670 +2024-09-30T06:48:04.581402Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5670 +2024-09-30T06:48:04.594146Z INFO fork_choice_control::block_processor: Validating block with slot: 5671 +2024-09-30T06:48:04.596023Z INFO fork_choice_control::block_processor: Validating block with slot: 5757 +2024-09-30T06:48:04.597186Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x02c495b97596e8b644ee3cb99f537d3f95a098db7d7bd63ab821eebf5dc1e1dc, slot: 5671 +2024-09-30T06:48:04.608521Z INFO fork_choice_control::block_processor: Validating block with slot: 5759 +2024-09-30T06:48:04.608490Z INFO fork_choice_control::block_processor: Validating block with slot: 5758 +2024-09-30T06:48:04.608732Z INFO fork_choice_control::block_processor: Validating block with slot: 5761 +2024-09-30T06:48:04.609067Z INFO fork_choice_control::block_processor: Validating block with slot: 5762 +2024-09-30T06:48:04.613571Z INFO fork_choice_control::block_processor: Validating block with slot: 5763 +2024-09-30T06:48:04.615347Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5671 +2024-09-30T06:48:04.615360Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5671 +2024-09-30T06:48:04.621730Z INFO fork_choice_control::block_processor: Validating block with slot: 5764 +2024-09-30T06:48:04.628613Z INFO fork_choice_control::block_processor: Validating block with slot: 5672 +2024-09-30T06:48:04.630428Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe427ea7ccb84b3e1df3aabdc2bad72421f9be4b58bfe8ae196561449ca0016e6, slot: 5672 +2024-09-30T06:48:04.632255Z INFO fork_choice_control::block_processor: Validating block with slot: 5766 +2024-09-30T06:48:04.632262Z INFO fork_choice_control::block_processor: Validating block with slot: 5769 +2024-09-30T06:48:04.632274Z INFO fork_choice_control::block_processor: Validating block with slot: 5765 +2024-09-30T06:48:04.632279Z INFO fork_choice_control::block_processor: Validating block with slot: 5768 +2024-09-30T06:48:04.632286Z INFO fork_choice_control::block_processor: Validating block with slot: 5770 +2024-09-30T06:48:04.632400Z INFO fork_choice_control::block_processor: Validating block with slot: 5767 +2024-09-30T06:48:04.639920Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5672 +2024-09-30T06:48:04.639940Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5672 +2024-09-30T06:48:04.652568Z INFO fork_choice_control::block_processor: Validating block with slot: 5673 +2024-09-30T06:48:04.653560Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x61c58d97c62bfda49611dc0a0f5bcc5c60f37a0b05733cbf5b3018d437da0f77, slot: 5673 +2024-09-30T06:48:04.659282Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5673 +2024-09-30T06:48:04.659299Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5673 +2024-09-30T06:48:04.672622Z INFO fork_choice_control::block_processor: Validating block with slot: 5674 +2024-09-30T06:48:04.673723Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x214fac36b728673251c540d7a1ed5f5d73daabaac0af1e074442e749faf31a7c, slot: 5674 +2024-09-30T06:48:04.679773Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5674 +2024-09-30T06:48:04.679787Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5674 +2024-09-30T06:48:04.693120Z INFO fork_choice_control::block_processor: Validating block with slot: 5675 +2024-09-30T06:48:04.694488Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xac91b06a2990daa0d19ac1b7110947995d596cfc3119fb0dc5eb9236770e8877, slot: 5675 +2024-09-30T06:48:04.701596Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5675 +2024-09-30T06:48:04.701613Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5675 +2024-09-30T06:48:04.715283Z INFO fork_choice_control::block_processor: Validating block with slot: 5676 +2024-09-30T06:48:04.716265Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb8c9d54a04f2eaff7234b4e8146dce04bad0bf57d8e105f50ba25f976d52cb90, slot: 5676 +2024-09-30T06:48:04.723317Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5676 +2024-09-30T06:48:04.723338Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5676 +2024-09-30T06:48:04.726528Z INFO fork_choice_control::block_processor: Validating block with slot: 5771 +2024-09-30T06:48:04.726574Z INFO fork_choice_control::block_processor: Validating block with slot: 5772 +2024-09-30T06:48:04.737273Z INFO fork_choice_control::block_processor: Validating block with slot: 5677 +2024-09-30T06:48:04.739142Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x809b88bf50f38ba2e14a6463874d0944d7f1fe3b72a459ed6c0d2f8bb990498e, slot: 5677 +2024-09-30T06:48:04.747784Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5677 +2024-09-30T06:48:04.747801Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5677 +2024-09-30T06:48:04.761841Z INFO fork_choice_control::block_processor: Validating block with slot: 5678 +2024-09-30T06:48:04.763101Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa037d9acb525eacbfeaff3464798f3c87bf10ec4f3bc9e0d6a5313475f18ae3b, slot: 5678 +2024-09-30T06:48:04.769852Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5678 +2024-09-30T06:48:04.769871Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5678 +2024-09-30T06:48:04.784011Z INFO fork_choice_control::block_processor: Validating block with slot: 5679 +2024-09-30T06:48:04.785010Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x849890d69f72ac982c8afa4b06c0dbea0b5072cd6df16094c2a79a925c750ac3, slot: 5679 +2024-09-30T06:48:04.791582Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5679 +2024-09-30T06:48:04.791603Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5679 +2024-09-30T06:48:04.806115Z INFO fork_choice_control::block_processor: Validating block with slot: 5680 +2024-09-30T06:48:04.807469Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf80286cd466ee8b2283dba722fc59c2af4b55c435944838134dcadc1e142eb73, slot: 5680 +2024-09-30T06:48:04.811721Z INFO fork_choice_control::block_processor: Validating block with slot: 5774 +2024-09-30T06:48:04.811726Z INFO fork_choice_control::block_processor: Validating block with slot: 5776 +2024-09-30T06:48:04.811751Z INFO fork_choice_control::block_processor: Validating block with slot: 5773 +2024-09-30T06:48:04.811763Z INFO fork_choice_control::block_processor: Validating block with slot: 5775 +2024-09-30T06:48:04.815788Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5680 +2024-09-30T06:48:04.815803Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5680 +2024-09-30T06:48:04.830410Z INFO fork_choice_control::block_processor: Validating block with slot: 5681 +2024-09-30T06:48:04.831806Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9f8ad75bd9cbe4f3fa29da4348cacafcef83fbae86ac8dc304a2fdfd33c9ee0d, slot: 5681 +2024-09-30T06:48:04.839368Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5681 +2024-09-30T06:48:04.839389Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5681 +2024-09-30T06:48:04.854091Z INFO fork_choice_control::block_processor: Validating block with slot: 5682 +2024-09-30T06:48:04.856611Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x928f0e6cdbf730b8eef4ef975c502b901c7d9ea3c20b12cc66d5765297764aa1, slot: 5682 +2024-09-30T06:48:04.866667Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5682 +2024-09-30T06:48:04.866683Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5682 +2024-09-30T06:48:04.881849Z INFO fork_choice_control::block_processor: Validating block with slot: 5683 +2024-09-30T06:48:04.883247Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6cdd0fd4674028e299fcf9c20838af0c0c4dcae89acaabb7a261d0532eeacf49, slot: 5683 +2024-09-30T06:48:04.891535Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5683 +2024-09-30T06:48:04.891553Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5683 +2024-09-30T06:48:04.906883Z INFO fork_choice_control::block_processor: Validating block with slot: 5684 +2024-09-30T06:48:04.907988Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x271dee626c96a1dbd0d92554cf1885cc2e693820a87eae86d4347055898c27ab, slot: 5684 +2024-09-30T06:48:04.913816Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5684 +2024-09-30T06:48:04.913828Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5684 +2024-09-30T06:48:04.929551Z INFO fork_choice_control::block_processor: Validating block with slot: 5685 +2024-09-30T06:48:04.931185Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x818b785accea280148c50e510cc730326ce2b95a653a9ad9351fb283a81ff140, slot: 5685 +2024-09-30T06:48:04.938638Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5685 +2024-09-30T06:48:04.938659Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5685 +2024-09-30T06:48:04.954270Z INFO fork_choice_control::block_processor: Validating block with slot: 5686 +2024-09-30T06:48:04.955278Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb4e33502786371624e427f97395da9782353e3db8964de0bc68b5174110f58a1, slot: 5686 +2024-09-30T06:48:04.960923Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5686 +2024-09-30T06:48:04.960937Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5686 +2024-09-30T06:48:04.976907Z INFO fork_choice_control::block_processor: Validating block with slot: 5687 +2024-09-30T06:48:04.977993Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x245870b0ebb12c366b22d442daaa9d8d1dcb02112474526c01218468c11c2cfe, slot: 5687 +2024-09-30T06:48:04.983969Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5687 +2024-09-30T06:48:04.983981Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5687 +2024-09-30T06:48:05.005534Z INFO fork_choice_control::block_processor: Validating block with slot: 5688 +2024-09-30T06:48:05.005561Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 176, root: 0xa62c0e2c87abb82b9523b495735c525d18493e35509e530c7db7541b9cf6482d, head slot: 5687, head root: 0x245870b0ebb12c366b22d442daaa9d8d1dcb02112474526c01218468c11c2cfe) +2024-09-30T06:48:05.006663Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1694ed1080d25ba15701932fadcab17b82dcb2176b1cc361f6fd6c7522b8996d, slot: 5688 +2024-09-30T06:48:05.012870Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5688 +2024-09-30T06:48:05.012884Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5688 +2024-09-30T06:48:05.029620Z INFO fork_choice_control::block_processor: Validating block with slot: 5689 +2024-09-30T06:48:05.031014Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdaa8175dc1fb1bce08d72ce9f044322c72657ddd6d33578cdc996e018959281b, slot: 5689 +2024-09-30T06:48:05.039432Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5689 +2024-09-30T06:48:05.039452Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5689 +2024-09-30T06:48:05.042734Z INFO fork_choice_control::block_processor: Validating block with slot: 5779 +2024-09-30T06:48:05.042752Z INFO fork_choice_control::block_processor: Validating block with slot: 5780 +2024-09-30T06:48:05.042767Z INFO fork_choice_control::block_processor: Validating block with slot: 5777 +2024-09-30T06:48:05.042900Z INFO fork_choice_control::block_processor: Validating block with slot: 5778 +2024-09-30T06:48:05.049250Z INFO fork_choice_control::block_processor: Validating block with slot: 5781 +2024-09-30T06:48:05.056776Z INFO fork_choice_control::block_processor: Validating block with slot: 5690 +2024-09-30T06:48:05.057892Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfe9e7a2f789b12acddf84c1fb56a3456ad97ca890465cf323364ae2bf515b501, slot: 5690 +2024-09-30T06:48:05.063671Z INFO fork_choice_control::block_processor: Validating block with slot: 5784 +2024-09-30T06:48:05.064027Z INFO fork_choice_control::block_processor: Validating block with slot: 5785 +2024-09-30T06:48:05.065282Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5690 +2024-09-30T06:48:05.065294Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5690 +2024-09-30T06:48:05.082156Z INFO fork_choice_control::block_processor: Validating block with slot: 5691 +2024-09-30T06:48:05.083553Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1a7149c88f02887caa6a649f7f9f6fb55c27ad5edb1d4f59afd64b52f5b2f0db, slot: 5691 +2024-09-30T06:48:05.092041Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5691 +2024-09-30T06:48:05.092062Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5691 +2024-09-30T06:48:05.109062Z INFO fork_choice_control::block_processor: Validating block with slot: 5692 +2024-09-30T06:48:05.110190Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0ef129b232ca2d29af6cbdcf407cc74a215381faa05f8d58b69968dd32a9242d, slot: 5692 +2024-09-30T06:48:05.116671Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5692 +2024-09-30T06:48:05.116688Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5692 +2024-09-30T06:48:05.134025Z INFO fork_choice_control::block_processor: Validating block with slot: 5693 +2024-09-30T06:48:05.135595Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1ed110b7e9e915dc5f8017de1c074093abf371e7a5fe56583f7da9e493990f85, slot: 5693 +2024-09-30T06:48:05.136438Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 5632 +2024-09-30T06:48:05.143601Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5693 +2024-09-30T06:48:05.143616Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5693 +2024-09-30T06:48:05.161185Z INFO fork_choice_control::block_processor: Validating block with slot: 5694 +2024-09-30T06:48:05.162184Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbee3ab6c708c334972ee64442bfa3b1d8b2100ed281bfdf883b63a0cfd4d6689, slot: 5694 +2024-09-30T06:48:05.168520Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5694 +2024-09-30T06:48:05.168535Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5694 +2024-09-30T06:48:05.186235Z INFO fork_choice_control::block_processor: Validating block with slot: 5695 +2024-09-30T06:48:05.187237Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x12f2c1503fcaa42419678d705021cf91c873bf8301949ae0d0548109bc9348c6, slot: 5695 +2024-09-30T06:48:05.193590Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5695 +2024-09-30T06:48:05.193606Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5695 +2024-09-30T06:48:05.211377Z INFO fork_choice_control::block_processor: Validating block with slot: 5696 +2024-09-30T06:48:05.212364Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb8e8d825f52bb24d9f400e8a09df7e5bddce129c0bfaad7a6ab18b9de00d6f2f, slot: 5696 +2024-09-30T06:48:05.311486Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5696 +2024-09-30T06:48:05.311508Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5696 +2024-09-30T06:48:05.322221Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5696) +2024-09-30T06:48:07.098240Z INFO fork_choice_control::block_processor: Validating block with slot: 6042 +2024-09-30T06:48:07.132110Z INFO fork_choice_control::block_processor: Validating block with slot: 6045 +2024-09-30T06:48:07.132116Z INFO fork_choice_control::block_processor: Validating block with slot: 6044 +2024-09-30T06:48:07.132120Z INFO fork_choice_control::block_processor: Validating block with slot: 6047 +2024-09-30T06:48:07.132125Z INFO fork_choice_control::block_processor: Validating block with slot: 6043 +2024-09-30T06:48:07.132140Z INFO fork_choice_control::block_processor: Validating block with slot: 6049 +2024-09-30T06:48:07.132187Z INFO fork_choice_control::block_processor: Validating block with slot: 6050 +2024-09-30T06:48:07.133998Z INFO fork_choice_control::block_processor: Validating block with slot: 6048 +2024-09-30T06:48:07.134042Z INFO fork_choice_control::block_processor: Validating block with slot: 6046 +2024-09-30T06:48:07.134065Z INFO fork_choice_control::block_processor: Validating block with slot: 6051 +2024-09-30T06:48:07.134236Z INFO fork_choice_control::block_processor: Validating block with slot: 6052 +2024-09-30T06:48:07.134244Z INFO fork_choice_control::block_processor: Validating block with slot: 6053 +2024-09-30T06:48:07.134391Z INFO fork_choice_control::block_processor: Validating block with slot: 6054 +2024-09-30T06:48:07.134512Z INFO fork_choice_control::block_processor: Validating block with slot: 6055 +2024-09-30T06:48:07.269755Z INFO fork_choice_control::block_processor: Validating block with slot: 6057 +2024-09-30T06:48:07.269773Z INFO fork_choice_control::block_processor: Validating block with slot: 6058 +2024-09-30T06:48:07.269944Z INFO fork_choice_control::block_processor: Validating block with slot: 6056 +2024-09-30T06:48:07.270142Z INFO fork_choice_control::block_processor: Validating block with slot: 6059 +2024-09-30T06:48:07.535858Z INFO fork_choice_control::block_processor: Validating block with slot: 6060 +2024-09-30T06:48:07.567711Z INFO fork_choice_control::block_processor: Validating block with slot: 6063 +2024-09-30T06:48:07.567720Z INFO fork_choice_control::block_processor: Validating block with slot: 6065 +2024-09-30T06:48:07.567776Z INFO fork_choice_control::block_processor: Validating block with slot: 6062 +2024-09-30T06:48:07.567794Z INFO fork_choice_control::block_processor: Validating block with slot: 6061 +2024-09-30T06:48:07.567829Z INFO fork_choice_control::block_processor: Validating block with slot: 6067 +2024-09-30T06:48:07.567832Z INFO fork_choice_control::block_processor: Validating block with slot: 6068 +2024-09-30T06:48:07.567868Z INFO fork_choice_control::block_processor: Validating block with slot: 6066 +2024-09-30T06:48:07.568248Z INFO fork_choice_control::block_processor: Validating block with slot: 6064 +2024-09-30T06:48:07.586145Z INFO fork_choice_control::block_processor: Validating block with slot: 6070 +2024-09-30T06:48:07.586191Z INFO fork_choice_control::block_processor: Validating block with slot: 6069 +2024-09-30T06:48:07.707473Z INFO fork_choice_control::block_processor: Validating block with slot: 6071 +2024-09-30T06:48:07.707495Z INFO fork_choice_control::block_processor: Validating block with slot: 6073 +2024-09-30T06:48:07.707530Z INFO fork_choice_control::block_processor: Validating block with slot: 6078 +2024-09-30T06:48:07.707527Z INFO fork_choice_control::block_processor: Validating block with slot: 6074 +2024-09-30T06:48:07.707575Z INFO fork_choice_control::block_processor: Validating block with slot: 6075 +2024-09-30T06:48:07.707653Z INFO fork_choice_control::block_processor: Validating block with slot: 6076 +2024-09-30T06:48:07.707660Z INFO fork_choice_control::block_processor: Validating block with slot: 6072 +2024-09-30T06:48:07.708452Z INFO fork_choice_control::block_processor: Validating block with slot: 6079 +2024-09-30T06:48:07.709046Z INFO fork_choice_control::block_processor: Validating block with slot: 6077 +2024-09-30T06:48:07.820361Z INFO fork_choice_control::block_processor: Validating block with slot: 6081 +2024-09-30T06:48:07.820370Z INFO fork_choice_control::block_processor: Validating block with slot: 6080 +2024-09-30T06:48:07.820382Z INFO fork_choice_control::block_processor: Validating block with slot: 6084 +2024-09-30T06:48:07.820401Z INFO fork_choice_control::block_processor: Validating block with slot: 6083 +2024-09-30T06:48:07.962631Z INFO fork_choice_control::block_processor: Validating block with slot: 6085 +2024-09-30T06:48:08.009803Z INFO fork_choice_control::block_processor: Validating block with slot: 6086 +2024-09-30T06:48:08.009841Z INFO fork_choice_control::block_processor: Validating block with slot: 6090 +2024-09-30T06:48:08.009862Z INFO fork_choice_control::block_processor: Validating block with slot: 6089 +2024-09-30T06:48:08.009998Z INFO fork_choice_control::block_processor: Validating block with slot: 6088 +2024-09-30T06:48:08.010202Z INFO fork_choice_control::block_processor: Validating block with slot: 6087 +2024-09-30T06:48:08.023539Z INFO fork_choice_control::block_processor: Validating block with slot: 6091 +2024-09-30T06:48:08.023556Z INFO fork_choice_control::block_processor: Validating block with slot: 6093 +2024-09-30T06:48:08.023574Z INFO fork_choice_control::block_processor: Validating block with slot: 6095 +2024-09-30T06:48:08.023636Z INFO fork_choice_control::block_processor: Validating block with slot: 6094 +2024-09-30T06:48:08.023711Z INFO fork_choice_control::block_processor: Validating block with slot: 6097 +2024-09-30T06:48:08.023727Z INFO fork_choice_control::block_processor: Validating block with slot: 6092 +2024-09-30T06:48:08.023816Z INFO fork_choice_control::block_processor: Validating block with slot: 6096 +2024-09-30T06:48:08.117841Z INFO fork_choice_control::block_processor: Validating block with slot: 6098 +2024-09-30T06:48:08.122656Z INFO fork_choice_control::block_processor: Validating block with slot: 6099 +2024-09-30T06:48:08.151651Z INFO fork_choice_control::block_processor: Validating block with slot: 6100 +2024-09-30T06:48:08.151657Z INFO fork_choice_control::block_processor: Validating block with slot: 6102 +2024-09-30T06:48:08.151671Z INFO fork_choice_control::block_processor: Validating block with slot: 6101 +2024-09-30T06:48:08.151722Z INFO fork_choice_control::block_processor: Validating block with slot: 6104 +2024-09-30T06:48:08.151765Z INFO fork_choice_control::block_processor: Validating block with slot: 6103 +2024-09-30T06:48:08.151821Z INFO fork_choice_control::block_processor: Validating block with slot: 6105 +2024-09-30T06:48:09.961872Z INFO fork_choice_control::block_processor: Validating block with slot: 6107 +2024-09-30T06:48:09.961877Z INFO fork_choice_control::block_processor: Validating block with slot: 6109 +2024-09-30T06:48:09.961895Z INFO fork_choice_control::block_processor: Validating block with slot: 6111 +2024-09-30T06:48:09.961937Z INFO fork_choice_control::block_processor: Validating block with slot: 6110 +2024-09-30T06:48:09.961978Z INFO fork_choice_control::block_processor: Validating block with slot: 6113 +2024-09-30T06:48:09.961931Z INFO fork_choice_control::block_processor: Validating block with slot: 6106 +2024-09-30T06:48:09.962134Z INFO fork_choice_control::block_processor: Validating block with slot: 6108 +2024-09-30T06:48:09.962399Z INFO fork_choice_control::block_processor: Validating block with slot: 6112 +2024-09-30T06:48:09.962969Z INFO fork_choice_control::block_processor: Validating block with slot: 6114 +2024-09-30T06:48:09.963056Z INFO fork_choice_control::block_processor: Validating block with slot: 6115 +2024-09-30T06:48:09.963217Z INFO fork_choice_control::block_processor: Validating block with slot: 6116 +2024-09-30T06:48:09.963709Z INFO fork_choice_control::block_processor: Validating block with slot: 6117 +2024-09-30T06:48:09.964216Z INFO fork_choice_control::block_processor: Validating block with slot: 6118 +2024-09-30T06:48:10.026727Z INFO fork_choice_control::block_processor: Validating block with slot: 6120 +2024-09-30T06:48:10.026749Z INFO fork_choice_control::block_processor: Validating block with slot: 6119 +2024-09-30T06:48:10.026761Z INFO fork_choice_control::block_processor: Validating block with slot: 6121 +2024-09-30T06:48:10.036612Z INFO fork_choice_control::block_processor: Validating block with slot: 6122 +2024-09-30T06:48:10.036629Z INFO fork_choice_control::block_processor: Validating block with slot: 6123 +2024-09-30T06:48:10.036672Z INFO fork_choice_control::block_processor: Validating block with slot: 6126 +2024-09-30T06:48:10.036726Z INFO fork_choice_control::block_processor: Validating block with slot: 6124 +2024-09-30T06:48:10.036821Z INFO fork_choice_control::block_processor: Validating block with slot: 6125 +2024-09-30T06:48:10.036877Z INFO fork_choice_control::block_processor: Validating block with slot: 6127 +2024-09-30T06:48:10.145225Z INFO fork_choice_control::block_processor: Validating block with slot: 6129 +2024-09-30T06:48:10.145248Z INFO fork_choice_control::block_processor: Validating block with slot: 6131 +2024-09-30T06:48:10.145262Z INFO fork_choice_control::block_processor: Validating block with slot: 6133 +2024-09-30T06:48:10.145327Z INFO fork_choice_control::block_processor: Validating block with slot: 6128 +2024-09-30T06:48:10.145412Z INFO fork_choice_control::block_processor: Validating block with slot: 6132 +2024-09-30T06:48:10.145519Z INFO fork_choice_control::block_processor: Validating block with slot: 6130 +2024-09-30T06:48:10.406786Z INFO fork_choice_control::block_processor: Validating block with slot: 6134 +2024-09-30T06:48:10.406798Z INFO fork_choice_control::block_processor: Validating block with slot: 6135 +2024-09-30T06:48:10.406836Z INFO fork_choice_control::block_processor: Validating block with slot: 6136 +2024-09-30T06:48:10.406891Z INFO fork_choice_control::block_processor: Validating block with slot: 6138 +2024-09-30T06:48:10.406917Z INFO fork_choice_control::block_processor: Validating block with slot: 6139 +2024-09-30T06:48:10.406927Z INFO fork_choice_control::block_processor: Validating block with slot: 6137 +2024-09-30T06:48:10.407506Z INFO fork_choice_control::block_processor: Validating block with slot: 6140 +2024-09-30T06:48:10.408030Z INFO fork_choice_control::block_processor: Validating block with slot: 6141 +2024-09-30T06:48:10.408329Z INFO fork_choice_control::block_processor: Validating block with slot: 6143 +2024-09-30T06:48:10.463987Z INFO fork_choice_control::block_processor: Validating block with slot: 6144 +2024-09-30T06:48:10.463996Z INFO fork_choice_control::block_processor: Validating block with slot: 6145 +2024-09-30T06:48:10.464053Z INFO fork_choice_control::block_processor: Validating block with slot: 6146 +2024-09-30T06:48:10.479592Z INFO fork_choice_control::block_processor: Validating block with slot: 6147 +2024-09-30T06:48:10.487396Z INFO fork_choice_control::block_processor: Validating block with slot: 6149 +2024-09-30T06:48:10.487393Z INFO fork_choice_control::block_processor: Validating block with slot: 6148 +2024-09-30T06:48:10.577624Z INFO fork_choice_control::block_processor: Validating block with slot: 6153 +2024-09-30T06:48:10.577622Z INFO fork_choice_control::block_processor: Validating block with slot: 6150 +2024-09-30T06:48:10.577664Z INFO fork_choice_control::block_processor: Validating block with slot: 6155 +2024-09-30T06:48:10.577657Z INFO fork_choice_control::block_processor: Validating block with slot: 6152 +2024-09-30T06:48:10.577770Z INFO fork_choice_control::block_processor: Validating block with slot: 6151 +2024-09-30T06:48:10.578029Z INFO fork_choice_control::block_processor: Validating block with slot: 6156 +2024-09-30T06:48:10.578971Z INFO fork_choice_control::block_processor: Validating block with slot: 6154 +2024-09-30T06:48:10.619327Z INFO fork_choice_control::block_processor: Validating block with slot: 6157 +2024-09-30T06:48:10.841932Z INFO fork_choice_control::block_processor: Validating block with slot: 6158 +2024-09-30T06:48:10.841933Z INFO fork_choice_control::block_processor: Validating block with slot: 6160 +2024-09-30T06:48:10.841938Z INFO fork_choice_control::block_processor: Validating block with slot: 6161 +2024-09-30T06:48:10.841955Z INFO fork_choice_control::block_processor: Validating block with slot: 6162 +2024-09-30T06:48:10.841981Z INFO fork_choice_control::block_processor: Validating block with slot: 6164 +2024-09-30T06:48:10.842026Z INFO fork_choice_control::block_processor: Validating block with slot: 6159 +2024-09-30T06:48:10.842049Z INFO fork_choice_control::block_processor: Validating block with slot: 6165 +2024-09-30T06:48:10.842147Z INFO fork_choice_control::block_processor: Validating block with slot: 6163 +2024-09-30T06:48:10.842944Z INFO fork_choice_control::block_processor: Validating block with slot: 6167 +2024-09-30T06:48:10.941943Z INFO fork_choice_control::block_processor: Validating block with slot: 6169 +2024-09-30T06:48:10.941946Z INFO fork_choice_control::block_processor: Validating block with slot: 6168 +2024-09-30T06:48:14.163906Z INFO fork_choice_control::block_processor: Validating block with slot: 5857 +2024-09-30T06:48:14.163918Z INFO fork_choice_control::block_processor: Validating block with slot: 5858 +2024-09-30T06:48:14.163925Z INFO fork_choice_control::block_processor: Validating block with slot: 5860 +2024-09-30T06:48:14.163956Z INFO fork_choice_control::block_processor: Validating block with slot: 5864 +2024-09-30T06:48:14.163949Z INFO fork_choice_control::block_processor: Validating block with slot: 5861 +2024-09-30T06:48:14.163969Z INFO fork_choice_control::block_processor: Validating block with slot: 5859 +2024-09-30T06:48:14.164246Z INFO fork_choice_control::block_processor: Validating block with slot: 5862 +2024-09-30T06:48:14.164926Z INFO fork_choice_control::block_processor: Validating block with slot: 5863 +2024-09-30T06:48:14.164958Z INFO fork_choice_control::block_processor: Validating block with slot: 5865 +2024-09-30T06:48:14.276979Z INFO fork_choice_control::block_processor: Validating block with slot: 5866 +2024-09-30T06:48:14.276983Z INFO fork_choice_control::block_processor: Validating block with slot: 5867 +2024-09-30T06:48:14.277018Z INFO fork_choice_control::block_processor: Validating block with slot: 5868 +2024-09-30T06:48:14.277029Z INFO fork_choice_control::block_processor: Validating block with slot: 5870 +2024-09-30T06:48:14.277055Z INFO fork_choice_control::block_processor: Validating block with slot: 5871 +2024-09-30T06:48:14.277114Z INFO fork_choice_control::block_processor: Validating block with slot: 5872 +2024-09-30T06:48:14.277305Z INFO fork_choice_control::block_processor: Validating block with slot: 5869 +2024-09-30T06:48:14.277823Z INFO fork_choice_control::block_processor: Validating block with slot: 5873 +2024-09-30T06:48:14.278549Z INFO fork_choice_control::block_processor: Validating block with slot: 5874 +2024-09-30T06:48:14.278640Z INFO fork_choice_control::block_processor: Validating block with slot: 5875 +2024-09-30T06:48:14.398041Z INFO fork_choice_control::block_processor: Validating block with slot: 5877 +2024-09-30T06:48:14.398045Z INFO fork_choice_control::block_processor: Validating block with slot: 5880 +2024-09-30T06:48:14.398057Z INFO fork_choice_control::block_processor: Validating block with slot: 5881 +2024-09-30T06:48:14.398067Z INFO fork_choice_control::block_processor: Validating block with slot: 5883 +2024-09-30T06:48:14.398105Z INFO fork_choice_control::block_processor: Validating block with slot: 5882 +2024-09-30T06:48:14.612628Z INFO fork_choice_control::block_processor: Validating block with slot: 5884 +2024-09-30T06:48:14.612635Z INFO fork_choice_control::block_processor: Validating block with slot: 5885 +2024-09-30T06:48:14.612647Z INFO fork_choice_control::block_processor: Validating block with slot: 5886 +2024-09-30T06:48:14.612659Z INFO fork_choice_control::block_processor: Validating block with slot: 5888 +2024-09-30T06:48:14.612665Z INFO fork_choice_control::block_processor: Validating block with slot: 5887 +2024-09-30T06:48:14.696286Z INFO fork_choice_control::block_processor: Validating block with slot: 5890 +2024-09-30T06:48:14.696282Z INFO fork_choice_control::block_processor: Validating block with slot: 5889 +2024-09-30T06:48:14.708966Z INFO fork_choice_control::block_processor: Validating block with slot: 5891 +2024-09-30T06:48:14.708976Z INFO fork_choice_control::block_processor: Validating block with slot: 5892 +2024-09-30T06:48:14.725504Z INFO fork_choice_control::block_processor: Validating block with slot: 5893 +2024-09-30T06:48:14.849558Z INFO fork_choice_control::block_processor: Validating block with slot: 5895 +2024-09-30T06:48:14.849662Z INFO fork_choice_control::block_processor: Validating block with slot: 5900 +2024-09-30T06:48:14.849683Z INFO fork_choice_control::block_processor: Validating block with slot: 5899 +2024-09-30T06:48:14.849672Z INFO fork_choice_control::block_processor: Validating block with slot: 5894 +2024-09-30T06:48:14.849707Z INFO fork_choice_control::block_processor: Validating block with slot: 5897 +2024-09-30T06:48:14.849714Z INFO fork_choice_control::block_processor: Validating block with slot: 5896 +2024-09-30T06:48:15.101853Z INFO fork_choice_control::block_processor: Validating block with slot: 5901 +2024-09-30T06:48:15.101863Z INFO fork_choice_control::block_processor: Validating block with slot: 5902 +2024-09-30T06:48:15.101904Z INFO fork_choice_control::block_processor: Validating block with slot: 5903 +2024-09-30T06:48:15.172662Z INFO fork_choice_control::block_processor: Validating block with slot: 5904 +2024-09-30T06:48:15.172668Z INFO fork_choice_control::block_processor: Validating block with slot: 5905 +2024-09-30T06:48:15.172698Z INFO fork_choice_control::block_processor: Validating block with slot: 5906 +2024-09-30T06:48:15.172780Z INFO fork_choice_control::block_processor: Validating block with slot: 5908 +2024-09-30T06:48:15.172799Z INFO fork_choice_control::block_processor: Validating block with slot: 5907 +2024-09-30T06:48:15.230823Z INFO fork_choice_control::block_processor: Validating block with slot: 5909 +2024-09-30T06:48:15.230827Z INFO fork_choice_control::block_processor: Validating block with slot: 5910 +2024-09-30T06:48:15.337515Z INFO fork_choice_control::block_processor: Validating block with slot: 5911 +2024-09-30T06:48:15.337531Z INFO fork_choice_control::block_processor: Validating block with slot: 5914 +2024-09-30T06:48:15.337533Z INFO fork_choice_control::block_processor: Validating block with slot: 5917 +2024-09-30T06:48:15.337573Z INFO fork_choice_control::block_processor: Validating block with slot: 5913 +2024-09-30T06:48:15.337631Z INFO fork_choice_control::block_processor: Validating block with slot: 5915 +2024-09-30T06:48:15.337682Z INFO fork_choice_control::block_processor: Validating block with slot: 5912 +2024-09-30T06:48:15.547099Z INFO fork_choice_control::block_processor: Validating block with slot: 5920 +2024-09-30T06:48:15.547134Z INFO fork_choice_control::block_processor: Validating block with slot: 5919 +2024-09-30T06:48:15.547118Z INFO fork_choice_control::block_processor: Validating block with slot: 5918 +2024-09-30T06:48:25.440970Z INFO fork_choice_control::block_processor: Validating block with slot: 5786 +2024-09-30T06:48:25.440979Z INFO fork_choice_control::block_processor: Validating block with slot: 5788 +2024-09-30T06:48:25.440980Z INFO fork_choice_control::block_processor: Validating block with slot: 5789 +2024-09-30T06:48:25.441008Z INFO fork_choice_control::block_processor: Validating block with slot: 5787 +2024-09-30T06:48:25.441058Z INFO fork_choice_control::block_processor: Validating block with slot: 5790 +2024-09-30T06:48:25.471215Z INFO fork_choice_control::block_processor: Validating block with slot: 5791 +2024-09-30T06:48:28.544656Z INFO fork_choice_control::block_processor: Validating block with slot: 5698 +2024-09-30T06:48:28.544668Z INFO fork_choice_control::block_processor: Validating block with slot: 5701 +2024-09-30T06:48:28.544734Z INFO fork_choice_control::block_processor: Validating block with slot: 5700 +2024-09-30T06:48:28.544747Z INFO fork_choice_control::block_processor: Validating block with slot: 5699 +2024-09-30T06:48:28.544771Z INFO fork_choice_control::block_processor: Validating block with slot: 5697 +2024-09-30T06:48:28.548024Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe99ada829de51e3a23a6278999485274f18ab1695bca5f5ea79b24cbfbc6c8d5, slot: 5697 +2024-09-30T06:48:28.647752Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5697 +2024-09-30T06:48:28.647773Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5697 +2024-09-30T06:48:28.659212Z INFO fork_choice_control::block_processor: Validating block with slot: 5698 +2024-09-30T06:48:28.662757Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9a57fe9f449a394819c5b1bd08fdbebdbaf33ce0192c96f194c4a36c6aeebb56, slot: 5698 +2024-09-30T06:48:28.682367Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5698 +2024-09-30T06:48:28.682409Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5698 +2024-09-30T06:48:28.693679Z INFO fork_choice_control::block_processor: Validating block with slot: 5702 +2024-09-30T06:48:28.694632Z INFO fork_choice_control::block_processor: Validating block with slot: 5699 +2024-09-30T06:48:28.696005Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5c71cddc05ca64e75b83ae03a6f5521ae44d4f61de26d6849abd6a697055ce7c, slot: 5699 +2024-09-30T06:48:28.711581Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5699 +2024-09-30T06:48:28.711615Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5699 +2024-09-30T06:48:28.724046Z INFO fork_choice_control::block_processor: Validating block with slot: 5700 +2024-09-30T06:48:28.725958Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcdd87fea15374fc4b795979c6f6de94eb1608ba92788f250422e27aec0b0e5a8, slot: 5700 +2024-09-30T06:48:28.735526Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5700 +2024-09-30T06:48:28.735556Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5700 +2024-09-30T06:48:28.747737Z INFO fork_choice_control::block_processor: Validating block with slot: 5701 +2024-09-30T06:48:28.748725Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x05164b1e1e614e1fb40c9942b384ee4cc3b86f22700fcccfef8abbe907376ba4, slot: 5701 +2024-09-30T06:48:28.755723Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5701 +2024-09-30T06:48:28.755744Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5701 +2024-09-30T06:48:28.768047Z INFO fork_choice_control::block_processor: Validating block with slot: 5702 +2024-09-30T06:48:28.770314Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x291ee0f7b51d41d86403f45d613671160df1a5fc71a1497213ca1a16c84a076b, slot: 5702 +2024-09-30T06:48:28.780718Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5702 +2024-09-30T06:48:28.780739Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5702 +2024-09-30T06:48:28.817785Z INFO fork_choice_control::block_processor: Validating block with slot: 5703 +2024-09-30T06:48:28.817795Z INFO fork_choice_control::block_processor: Validating block with slot: 5704 +2024-09-30T06:48:28.817843Z INFO fork_choice_control::block_processor: Validating block with slot: 5705 +2024-09-30T06:48:28.817865Z INFO fork_choice_control::block_processor: Validating block with slot: 5706 +2024-09-30T06:48:28.819744Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8379cb789e05feb9a9bc8bfacb042cd3a8efb0738751430c51552745c2ad7935, slot: 5703 +2024-09-30T06:48:28.828014Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5703 +2024-09-30T06:48:28.828032Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5703 +2024-09-30T06:48:28.841486Z INFO fork_choice_control::block_processor: Validating block with slot: 5704 +2024-09-30T06:48:28.842471Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xec28e6fd0623887408a9bed3cb1eeb91ed048628aa8805f957b32cab2fd948d9, slot: 5704 +2024-09-30T06:48:28.849536Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5704 +2024-09-30T06:48:28.849555Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5704 +2024-09-30T06:48:28.864217Z INFO fork_choice_control::block_processor: Validating block with slot: 5705 +2024-09-30T06:48:28.866361Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x131619c824ef2e3b1b485403ba427bbe7043aa371d8aa6357f6006fb123ddca1, slot: 5705 +2024-09-30T06:48:28.875725Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5705 +2024-09-30T06:48:28.875745Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5705 +2024-09-30T06:48:28.889330Z INFO fork_choice_control::block_processor: Validating block with slot: 5706 +2024-09-30T06:48:28.890454Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc0291c06107a756e1af402f49e178947489ece83c5caa67e619ab3cddc13eda4, slot: 5706 +2024-09-30T06:48:28.896825Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5706 +2024-09-30T06:48:28.896838Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5706 +2024-09-30T06:48:28.907453Z INFO fork_choice_control::block_processor: Validating block with slot: 5708 +2024-09-30T06:48:28.907484Z INFO fork_choice_control::block_processor: Validating block with slot: 5707 +2024-09-30T06:48:28.911170Z INFO fork_choice_control::block_processor: Validating block with slot: 5707 +2024-09-30T06:48:28.912125Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4e5c3c094c55314afc1c2e270b7037dc6734c5014d9d6cf518754d6167875d09, slot: 5707 +2024-09-30T06:48:28.918546Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5707 +2024-09-30T06:48:28.918571Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5707 +2024-09-30T06:48:28.932439Z INFO fork_choice_control::block_processor: Validating block with slot: 5708 +2024-09-30T06:48:28.934128Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaa5205a09b2051873b683fdf13d1d39f6498f30dd10c592b352ddf120beed116, slot: 5708 +2024-09-30T06:48:28.942174Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5708 +2024-09-30T06:48:28.942198Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5708 +2024-09-30T06:48:28.955091Z INFO fork_choice_control::block_processor: Validating block with slot: 5711 +2024-09-30T06:48:28.955081Z INFO fork_choice_control::block_processor: Validating block with slot: 5710 +2024-09-30T06:48:28.955125Z INFO fork_choice_control::block_processor: Validating block with slot: 5709 +2024-09-30T06:48:28.955381Z INFO fork_choice_control::block_processor: Validating block with slot: 5712 +2024-09-30T06:48:28.958107Z INFO fork_choice_control::block_processor: Validating block with slot: 5709 +2024-09-30T06:48:28.959072Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xece3d42c82c0b2f2c966c6b7b151269f50737bfffa447b806ed93ba4e8445201, slot: 5709 +2024-09-30T06:48:28.965758Z INFO fork_choice_control::block_processor: Validating block with slot: 5715 +2024-09-30T06:48:28.965793Z INFO fork_choice_control::block_processor: Validating block with slot: 5714 +2024-09-30T06:48:28.965773Z INFO fork_choice_control::block_processor: Validating block with slot: 5716 +2024-09-30T06:48:28.966446Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5709 +2024-09-30T06:48:28.966460Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5709 +2024-09-30T06:48:28.981252Z INFO fork_choice_control::block_processor: Validating block with slot: 5710 +2024-09-30T06:48:28.982345Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4aa1fd2cb9bc6ed9349d39da7dbf52754b6caad2927f73c3152f3b22aaeef5be, slot: 5710 +2024-09-30T06:48:28.989668Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5710 +2024-09-30T06:48:28.989689Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5710 +2024-09-30T06:48:29.004349Z INFO fork_choice_control::block_processor: Validating block with slot: 5711 +2024-09-30T06:48:29.005475Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x26b3bbd5da6e10d135845b9f03ceb164a0e6141167e3dd0aac8436208f2687bb, slot: 5711 +2024-09-30T06:48:29.011885Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5711 +2024-09-30T06:48:29.011900Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5711 +2024-09-30T06:48:29.026587Z INFO fork_choice_control::block_processor: Validating block with slot: 5712 +2024-09-30T06:48:29.027713Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4dec6bf6dae3dc6159268363552852dc2eabca2b043f4634771dfe9a5994c5f5, slot: 5712 +2024-09-30T06:48:29.034300Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5712 +2024-09-30T06:48:29.034317Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5712 +2024-09-30T06:48:29.049233Z INFO fork_choice_control::block_processor: Validating block with slot: 5714 +2024-09-30T06:48:29.052354Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8033a550a3d2dee49b8ebaa9244df004ac8f899f25dec9215960a601b163e1da, slot: 5714 +2024-09-30T06:48:29.065617Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5714 +2024-09-30T06:48:29.065637Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5714 +2024-09-30T06:48:29.081223Z INFO fork_choice_control::block_processor: Validating block with slot: 5715 +2024-09-30T06:48:29.083198Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x168dceddfc817eebede9e4cbe13e24c59ed67bb9e9759d01971ed0bc48a86ebd, slot: 5715 +2024-09-30T06:48:29.092998Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5715 +2024-09-30T06:48:29.093017Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5715 +2024-09-30T06:48:29.109144Z INFO fork_choice_control::block_processor: Validating block with slot: 5716 +2024-09-30T06:48:29.110264Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc3eda12e3d1e586502992cb13bb8932947e4723cc31fd31af6aa7fc9e42f5842, slot: 5716 +2024-09-30T06:48:29.116177Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5716 +2024-09-30T06:48:29.116192Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5716 +2024-09-30T06:48:29.164161Z INFO fork_choice_control::block_processor: Validating block with slot: 5717 +2024-09-30T06:48:29.165520Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x197e41c110d79c99e2ee45cc0bcf5f66623029719a1329e540f1fce294549868, slot: 5717 +2024-09-30T06:48:29.172436Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5717 +2024-09-30T06:48:29.172457Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5717 +2024-09-30T06:48:29.250211Z INFO fork_choice_control::block_processor: Validating block with slot: 5719 +2024-09-30T06:48:29.250219Z INFO fork_choice_control::block_processor: Validating block with slot: 5720 +2024-09-30T06:48:29.250229Z INFO fork_choice_control::block_processor: Validating block with slot: 5718 +2024-09-30T06:48:29.251556Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x54f18c4b79a174787608ffae8a27c6510a20fa23c3b64b5c50bef98038d17cbe, slot: 5718 +2024-09-30T06:48:29.259481Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5718 +2024-09-30T06:48:29.259504Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5718 +2024-09-30T06:48:29.277986Z INFO fork_choice_control::block_processor: Validating block with slot: 5719 +2024-09-30T06:48:29.279102Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4c55d7d1e1b2fd24ac86771a1c9a8ec03e69cac98ebcc9029235e63256be5262, slot: 5719 +2024-09-30T06:48:29.284987Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5719 +2024-09-30T06:48:29.285008Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5719 +2024-09-30T06:48:29.306884Z INFO fork_choice_control::block_processor: Validating block with slot: 5720 +2024-09-30T06:48:29.306929Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 177, root: 0xab77d420081f77fd970f5e009806dcfbae23762e856e9e816b431c2160704444, head slot: 5719, head root: 0x4c55d7d1e1b2fd24ac86771a1c9a8ec03e69cac98ebcc9029235e63256be5262) +2024-09-30T06:48:29.308295Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe8145ae227e02619b8ee9cc1436f204a2b02dceecbe3f3adabcfb9a3f24c68e0, slot: 5720 +2024-09-30T06:48:29.315877Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5720 +2024-09-30T06:48:29.315896Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5720 +2024-09-30T06:48:29.350496Z INFO fork_choice_control::block_processor: Validating block with slot: 5721 +2024-09-30T06:48:29.354027Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe1b5e358d220c8e4632500897e500b121e72f3aee6f9d180a4a9bbfea67fa10f, slot: 5721 +2024-09-30T06:48:29.369895Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5721 +2024-09-30T06:48:29.369917Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5721 +2024-09-30T06:48:29.387903Z INFO fork_choice_control::block_processor: Validating block with slot: 5722 +2024-09-30T06:48:29.389179Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaf4910afda3477e0e75292b48166d567e0a55c2625f247b72a0736f12cce6485, slot: 5722 +2024-09-30T06:48:29.395976Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5722 +2024-09-30T06:48:29.395995Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5722 +2024-09-30T06:48:29.415489Z INFO fork_choice_control::block_processor: Validating block with slot: 5723 +2024-09-30T06:48:29.416754Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe3e974a8c0708c926ed422fec0ac443bc0b317326a7d76cb0d65d317148b659b, slot: 5723 +2024-09-30T06:48:29.426523Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5723 +2024-09-30T06:48:29.426547Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5723 +2024-09-30T06:48:29.443852Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 5664 +2024-09-30T06:48:29.445588Z INFO fork_choice_control::block_processor: Validating block with slot: 5724 +2024-09-30T06:48:29.446854Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xacc5927a1f6612d35789ad2522deb29893e802ee81bb7123f4533796be209493, slot: 5724 +2024-09-30T06:48:29.455239Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5724 +2024-09-30T06:48:29.455261Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5724 +2024-09-30T06:48:29.473835Z INFO fork_choice_control::block_processor: Validating block with slot: 5725 +2024-09-30T06:48:29.474823Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3b885d0a12935b7d5708f3b6e02ca34e123acd4e09e3eceb124deae7e03ca201, slot: 5725 +2024-09-30T06:48:29.481973Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5725 +2024-09-30T06:48:29.481991Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5725 +2024-09-30T06:48:29.500591Z INFO fork_choice_control::block_processor: Validating block with slot: 5726 +2024-09-30T06:48:29.501858Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x238ff2315aa342a03b07f84e9ff063392434cd8644b316923eab9ca111b08426, slot: 5726 +2024-09-30T06:48:29.508476Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5726 +2024-09-30T06:48:29.508494Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5726 +2024-09-30T06:48:29.526799Z INFO fork_choice_control::block_processor: Validating block with slot: 5727 +2024-09-30T06:48:29.527786Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x522547a50d90dbb0d8d45a969e72a63d8af1a328933d696db52e59d0e9003a0d, slot: 5727 +2024-09-30T06:48:29.534416Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5727 +2024-09-30T06:48:29.534431Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5727 +2024-09-30T06:48:29.553059Z INFO fork_choice_control::block_processor: Validating block with slot: 5728 +2024-09-30T06:48:29.554068Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcb8cf9d3de420ca737e3b4fbd4b543ff0dd39b6dbcec021ad6e37007eea987b8, slot: 5728 +2024-09-30T06:48:29.655302Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5728 +2024-09-30T06:48:29.655323Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5728 +2024-09-30T06:48:29.665982Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5728) +2024-09-30T06:48:29.666095Z INFO fork_choice_control::block_processor: Validating block with slot: 5729 +2024-09-30T06:48:29.667071Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xded9f952c762352e4ddc01c6c5909052d19fadfe3b68ee732fc56a68caf8845d, slot: 5729 +2024-09-30T06:48:29.741879Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5729 +2024-09-30T06:48:29.741899Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5729 +2024-09-30T06:48:29.753004Z INFO fork_choice_control::block_processor: Validating block with slot: 5730 +2024-09-30T06:48:29.756041Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xff40061c968ce9ae3441a833e0e336aa7099a3677305e6aa8048adb5fd55c855, slot: 5730 +2024-09-30T06:48:29.768509Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5730 +2024-09-30T06:48:29.768529Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5730 +2024-09-30T06:48:29.780200Z INFO fork_choice_control::block_processor: Validating block with slot: 5731 +2024-09-30T06:48:29.781163Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x87388ebac5f811418de9932533cf9059f343a10ed24071105bdf49c354232d25, slot: 5731 +2024-09-30T06:48:29.787359Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5731 +2024-09-30T06:48:29.787381Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5731 +2024-09-30T06:48:29.798897Z INFO fork_choice_control::block_processor: Validating block with slot: 5732 +2024-09-30T06:48:29.800129Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x01851e1e2b496b0faa4caffee511d315ed11254a3a93cb08f40ae366065f2bdf, slot: 5732 +2024-09-30T06:48:29.808411Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5732 +2024-09-30T06:48:29.808430Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5732 +2024-09-30T06:48:29.820398Z INFO fork_choice_control::block_processor: Validating block with slot: 5734 +2024-09-30T06:48:29.822060Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4f7983a6d696d6e65757726910ee5cb82fe01341ec15251c6899181320cc9f5a, slot: 5734 +2024-09-30T06:48:29.832535Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5734 +2024-09-30T06:48:29.832551Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5734 +2024-09-30T06:48:29.844681Z INFO fork_choice_control::block_processor: Validating block with slot: 5735 +2024-09-30T06:48:29.845664Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1867c852c2dcc374f77ee88d19e4a9094d6483d9ede3937cfe2fe30f43c01c24, slot: 5735 +2024-09-30T06:48:29.852187Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5735 +2024-09-30T06:48:29.852208Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5735 +2024-09-30T06:48:29.864430Z INFO fork_choice_control::block_processor: Validating block with slot: 5736 +2024-09-30T06:48:29.867775Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf337c2ac9ad052c5ed83dfbea8c12e9616ac41c19137e74dedf7af93f17867e4, slot: 5736 +2024-09-30T06:48:29.881326Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5736 +2024-09-30T06:48:29.881391Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5736 +2024-09-30T06:48:29.894640Z INFO fork_choice_control::block_processor: Validating block with slot: 5737 +2024-09-30T06:48:29.896040Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2a7a2001e15071e0a75f3d297480e450f381fcf140ebd34a6d0ddc2e2b3f2ac3, slot: 5737 +2024-09-30T06:48:29.903334Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5737 +2024-09-30T06:48:29.903360Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5737 +2024-09-30T06:48:29.916247Z INFO fork_choice_control::block_processor: Validating block with slot: 5738 +2024-09-30T06:48:29.917345Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5a3d7d8abfa06e1f8960d828a64dbc6249be918a1a1e466b2f90990b43822df2, slot: 5738 +2024-09-30T06:48:29.923606Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5738 +2024-09-30T06:48:29.923628Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5738 +2024-09-30T06:48:29.936933Z INFO fork_choice_control::block_processor: Validating block with slot: 5739 +2024-09-30T06:48:29.937932Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcedc99cbd19d7f3cc8831bba4c565cbaff557f189b164142f7b2285368ec7804, slot: 5739 +2024-09-30T06:48:29.943523Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5739 +2024-09-30T06:48:29.943538Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5739 +2024-09-30T06:48:29.957141Z INFO fork_choice_control::block_processor: Validating block with slot: 5740 +2024-09-30T06:48:29.958831Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfa90107cceac3dd88f7f12a7803d74b374bdef68c362e0b2ccc9b76312d9426e, slot: 5740 +2024-09-30T06:48:29.966549Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5740 +2024-09-30T06:48:29.966564Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5740 +2024-09-30T06:48:29.980495Z INFO fork_choice_control::block_processor: Validating block with slot: 5741 +2024-09-30T06:48:29.982262Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaba0f04032343abdbd915783939dcc59ce0f407986caeda0b3004b8f4227cee2, slot: 5741 +2024-09-30T06:48:29.991194Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5741 +2024-09-30T06:48:29.991242Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5741 +2024-09-30T06:48:30.005329Z INFO fork_choice_control::block_processor: Validating block with slot: 5742 +2024-09-30T06:48:30.006392Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x190844e4da13a70e2ad89fe0bed8b15ccf3dc65729f48940e25ace8e8cbd9fd5, slot: 5742 +2024-09-30T06:48:30.012716Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5742 +2024-09-30T06:48:30.012729Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5742 +2024-09-30T06:48:30.027549Z INFO fork_choice_control::block_processor: Validating block with slot: 5743 +2024-09-30T06:48:30.028589Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2fb934d318b1607373dc7bb607b5c1ad1c779609692410276befe6996a88a110, slot: 5743 +2024-09-30T06:48:30.035062Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5743 +2024-09-30T06:48:30.035084Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5743 +2024-09-30T06:48:30.048925Z INFO fork_choice_control::block_processor: Validating block with slot: 5744 +2024-09-30T06:48:30.050287Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc60844f4e55ce1d569f2ff6f29edcb8dbc086b70b787c11433556619ab308b56, slot: 5744 +2024-09-30T06:48:30.057242Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5744 +2024-09-30T06:48:30.057259Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5744 +2024-09-30T06:48:30.071497Z INFO fork_choice_control::block_processor: Validating block with slot: 5745 +2024-09-30T06:48:30.072866Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0de87649926d435b1dea4d0f7d08cc4ef62baf824e540323ffa2840ea1f4aca1, slot: 5745 +2024-09-30T06:48:30.079485Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5745 +2024-09-30T06:48:30.079496Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5745 +2024-09-30T06:48:30.094164Z INFO fork_choice_control::block_processor: Validating block with slot: 5747 +2024-09-30T06:48:30.096074Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf70bbd2297f0c9a038cbd0195b8700a072181c38f23262693b4bc0b65d7c9d86, slot: 5747 +2024-09-30T06:48:30.106227Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5747 +2024-09-30T06:48:30.106248Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5747 +2024-09-30T06:48:30.121099Z INFO fork_choice_control::block_processor: Validating block with slot: 5748 +2024-09-30T06:48:30.122199Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7820fe1e51786029e4507362e2e08957707979da6b47a3e5d91d766af568679d, slot: 5748 +2024-09-30T06:48:30.128162Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5748 +2024-09-30T06:48:30.128175Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5748 +2024-09-30T06:48:30.143155Z INFO fork_choice_control::block_processor: Validating block with slot: 5749 +2024-09-30T06:48:30.145468Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x32f99aeb6b8f86f34237f65155f3201a8bf5440f74807aacc77f5ae7b9f22739, slot: 5749 +2024-09-30T06:48:30.155133Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5749 +2024-09-30T06:48:30.155153Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5749 +2024-09-30T06:48:30.170531Z INFO fork_choice_control::block_processor: Validating block with slot: 5750 +2024-09-30T06:48:30.172342Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf38bd22ac6f57a7df60b7b75c37ca641e577c88f12b5d07ab74b4f8e722624a6, slot: 5750 +2024-09-30T06:48:30.180041Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5750 +2024-09-30T06:48:30.180053Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5750 +2024-09-30T06:48:30.196106Z INFO fork_choice_control::block_processor: Validating block with slot: 5751 +2024-09-30T06:48:30.197349Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfaf655c80887deb4b41a53691b50c64430cae17b34d572c8df3440718c04a398, slot: 5751 +2024-09-30T06:48:30.203920Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5751 +2024-09-30T06:48:30.203960Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5751 +2024-09-30T06:48:30.225170Z INFO fork_choice_control::block_processor: Validating block with slot: 5752 +2024-09-30T06:48:30.225172Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 178, root: 0xb8e8d825f52bb24d9f400e8a09df7e5bddce129c0bfaad7a6ab18b9de00d6f2f, head slot: 5751, head root: 0xfaf655c80887deb4b41a53691b50c64430cae17b34d572c8df3440718c04a398) +2024-09-30T06:48:30.226327Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd546ad47f1cd79fa2dbc8deb3705bc6076da0763303bb838987a9279ab4741b3, slot: 5752 +2024-09-30T06:48:30.232596Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5752 +2024-09-30T06:48:30.232614Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5752 +2024-09-30T06:48:30.248817Z INFO fork_choice_control::block_processor: Validating block with slot: 5753 +2024-09-30T06:48:30.249799Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x05d141f7d367e75ecfdfdf4f878f05372def4ee63bc61bb5ec31126175a29a9e, slot: 5753 +2024-09-30T06:48:30.256356Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5753 +2024-09-30T06:48:30.256376Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5753 +2024-09-30T06:48:30.274050Z INFO fork_choice_control::block_processor: Validating block with slot: 5754 +2024-09-30T06:48:30.276065Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x89128b0c5ef3475ad182d56b000d3b30e57d871f5bd24c7e2b36447b4fb6bc82, slot: 5754 +2024-09-30T06:48:30.291583Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5754 +2024-09-30T06:48:30.291610Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5754 +2024-09-30T06:48:30.309101Z INFO fork_choice_control::block_processor: Validating block with slot: 5755 +2024-09-30T06:48:30.310364Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x41db87702f1b6f0a5df78ac8c66b23dfa5a4cba0c32eb149d50d7b4ef96e0334, slot: 5755 +2024-09-30T06:48:30.317256Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5755 +2024-09-30T06:48:30.317271Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5755 +2024-09-30T06:48:30.333894Z INFO fork_choice_control::block_processor: Validating block with slot: 5756 +2024-09-30T06:48:30.335162Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5700dad9bdd11ad29a89c0d1487288ec988ac26644d7d56571c03b29ca5f9456, slot: 5756 +2024-09-30T06:48:30.341929Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5756 +2024-09-30T06:48:30.341948Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5756 +2024-09-30T06:48:30.356862Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 5696 +2024-09-30T06:48:30.359089Z INFO fork_choice_control::block_processor: Validating block with slot: 5757 +2024-09-30T06:48:30.360342Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x41095e0f3166b0d2e5212df4640bc2ebc0d7f6298769c4821745942314817111, slot: 5757 +2024-09-30T06:48:30.367524Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5757 +2024-09-30T06:48:30.367539Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5757 +2024-09-30T06:48:30.385147Z INFO fork_choice_control::block_processor: Validating block with slot: 5758 +2024-09-30T06:48:30.386836Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x55a7d59e173696134691e7ffd7acc2a20c112bcd9b98613440051e8f6e4a192d, slot: 5758 +2024-09-30T06:48:30.396709Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5758 +2024-09-30T06:48:30.396732Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5758 +2024-09-30T06:48:30.415496Z INFO fork_choice_control::block_processor: Validating block with slot: 5759 +2024-09-30T06:48:30.416904Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xae10dfd39006b12776272b0b5bb78d1cb3e363ff95c4f97d969b32ae72de8054, slot: 5759 +2024-09-30T06:48:30.425830Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5759 +2024-09-30T06:48:30.425853Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5759 +2024-09-30T06:48:30.443624Z INFO fork_choice_control::block_processor: Validating block with slot: 5761 +2024-09-30T06:48:30.445588Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3c9aa1685bd312973880f4d546d100054343181d1e8eb7e96c17a701344f818e, slot: 5761 +2024-09-30T06:48:30.616117Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5761 +2024-09-30T06:48:30.616140Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5761 +2024-09-30T06:48:30.626688Z INFO fork_choice_control::block_processor: Validating block with slot: 5762 +2024-09-30T06:48:30.629149Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x11d00b1427c22c52d0aa0372e93813244edd204a9b694186a27acd4853a626c1, slot: 5762 +2024-09-30T06:48:30.639479Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5762 +2024-09-30T06:48:30.639500Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5762 +2024-09-30T06:48:30.650521Z INFO fork_choice_control::block_processor: Validating block with slot: 5763 +2024-09-30T06:48:30.651666Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe7717ce9cfb8b1f85318bad193553d908243e0e45374f428a149a1a70d063084, slot: 5763 +2024-09-30T06:48:30.658416Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5763 +2024-09-30T06:48:30.658440Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5763 +2024-09-30T06:48:30.669960Z INFO fork_choice_control::block_processor: Validating block with slot: 5764 +2024-09-30T06:48:30.671647Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6ff414563457d800f63f52b4fe318021b8f3f00510052065a0efe1f7e605e02d, slot: 5764 +2024-09-30T06:48:30.679472Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5764 +2024-09-30T06:48:30.679491Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5764 +2024-09-30T06:48:30.691081Z INFO fork_choice_control::block_processor: Validating block with slot: 5765 +2024-09-30T06:48:30.692601Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x83b5c8166ec6d5cab6141060eebac3ef4a0150bc1004403e612f606cf946e26f, slot: 5765 +2024-09-30T06:48:30.700350Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5765 +2024-09-30T06:48:30.700361Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5765 +2024-09-30T06:48:30.712624Z INFO fork_choice_control::block_processor: Validating block with slot: 5766 +2024-09-30T06:48:30.713852Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc3697e8134815da9de64fee4d55262dd77778c05f6d2f8b75b694628fad11658, slot: 5766 +2024-09-30T06:48:30.721022Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5766 +2024-09-30T06:48:30.721040Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5766 +2024-09-30T06:48:30.732973Z INFO fork_choice_control::block_processor: Validating block with slot: 5767 +2024-09-30T06:48:30.734066Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x994572c2abba28b9cb7807c0aa13cf00d3f42181ac48dae37411b5ce7b8e2d4d, slot: 5767 +2024-09-30T06:48:30.741211Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5767 +2024-09-30T06:48:30.741231Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5767 +2024-09-30T06:48:30.753625Z INFO fork_choice_control::block_processor: Validating block with slot: 5768 +2024-09-30T06:48:30.755340Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x45e93258cefea1e9d044ab8fa664d479784bb4f697cd0f6269d68e2a1e33f460, slot: 5768 +2024-09-30T06:48:30.763838Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5768 +2024-09-30T06:48:30.763855Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5768 +2024-09-30T06:48:30.776642Z INFO fork_choice_control::block_processor: Validating block with slot: 5769 +2024-09-30T06:48:30.778197Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x95ddb3eab989268e08b3a6432fb099c6c0941ff16468cf658a96dc984296e763, slot: 5769 +2024-09-30T06:48:30.785939Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5769 +2024-09-30T06:48:30.785961Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5769 +2024-09-30T06:48:30.798564Z INFO fork_choice_control::block_processor: Validating block with slot: 5770 +2024-09-30T06:48:30.799796Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x66175194591603412ff5c8b46214b0029bd33555b91ff3f8d6cd43fe67fdcc10, slot: 5770 +2024-09-30T06:48:30.806695Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5770 +2024-09-30T06:48:30.806718Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5770 +2024-09-30T06:48:30.819986Z INFO fork_choice_control::block_processor: Validating block with slot: 5771 +2024-09-30T06:48:30.821963Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x07f95a3d58d0ad762b7edefe2a16bee0c6629e42a972bf2c05acfb452e1a1d83, slot: 5771 +2024-09-30T06:48:30.832666Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5771 +2024-09-30T06:48:30.832682Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5771 +2024-09-30T06:48:30.846687Z INFO fork_choice_control::block_processor: Validating block with slot: 5772 +2024-09-30T06:48:30.847792Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0bf9661cc11bf4ba53bf0e962120ba2b6592d9d3af42e0aa77cd8f7bec3e43b8, slot: 5772 +2024-09-30T06:48:30.855903Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5772 +2024-09-30T06:48:30.855940Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5772 +2024-09-30T06:48:30.870009Z INFO fork_choice_control::block_processor: Validating block with slot: 5773 +2024-09-30T06:48:30.871122Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x14050eb945de51e3481e806575070e010d73375e72d8e87f152a54826130fd96, slot: 5773 +2024-09-30T06:48:30.877630Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5773 +2024-09-30T06:48:30.877643Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5773 +2024-09-30T06:48:30.891630Z INFO fork_choice_control::block_processor: Validating block with slot: 5774 +2024-09-30T06:48:30.892748Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5c4ce5d73091dc140a00b75e78b098f16c5024d3e495d16ae11485759bcc5e43, slot: 5774 +2024-09-30T06:48:30.899441Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5774 +2024-09-30T06:48:30.899456Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5774 +2024-09-30T06:48:30.913522Z INFO fork_choice_control::block_processor: Validating block with slot: 5775 +2024-09-30T06:48:30.915068Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x96ab05e670ecf9bd742ac71576895ebb84ed098a2c4ab5e65ab468bb16a23587, slot: 5775 +2024-09-30T06:48:30.923375Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5775 +2024-09-30T06:48:30.923395Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5775 +2024-09-30T06:48:30.937587Z INFO fork_choice_control::block_processor: Validating block with slot: 5776 +2024-09-30T06:48:30.938890Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2dbffc4de0954be6bdcd4d4780815d4ec5009891473e4d6e95369bfc20221289, slot: 5776 +2024-09-30T06:48:30.945178Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5776 +2024-09-30T06:48:30.945191Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5776 +2024-09-30T06:48:30.959425Z INFO fork_choice_control::block_processor: Validating block with slot: 5777 +2024-09-30T06:48:30.961206Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5feb59e79ca385a855387d942c685c8da7a82cf93f9f6800f3ec35fa5dda2490, slot: 5777 +2024-09-30T06:48:30.968960Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5777 +2024-09-30T06:48:30.968979Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5777 +2024-09-30T06:48:30.983367Z INFO fork_choice_control::block_processor: Validating block with slot: 5778 +2024-09-30T06:48:30.984329Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb2ad3750c1bbed8d46518e080936b764d7f3d217b167352711dfd844f9c29333, slot: 5778 +2024-09-30T06:48:30.990357Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5778 +2024-09-30T06:48:30.990378Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5778 +2024-09-30T06:48:31.005239Z INFO fork_choice_control::block_processor: Validating block with slot: 5779 +2024-09-30T06:48:31.006325Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4bce7445f7378024d54131cf75870a6bc91fa041734a24b0a9b3f1e763df0045, slot: 5779 +2024-09-30T06:48:31.012513Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5779 +2024-09-30T06:48:31.012529Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5779 +2024-09-30T06:48:31.027673Z INFO fork_choice_control::block_processor: Validating block with slot: 5780 +2024-09-30T06:48:31.028930Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x76f7cc33aae0f4a934171a2d57695699faa35ea3460b97abab28b2c7d4aeeba1, slot: 5780 +2024-09-30T06:48:31.035580Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5780 +2024-09-30T06:48:31.035613Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5780 +2024-09-30T06:48:31.050504Z INFO fork_choice_control::block_processor: Validating block with slot: 5781 +2024-09-30T06:48:31.053782Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x352b5290f8acaaa243e3e32cf7a1456b4f7b3ff0b4675a32a96def44db3ee9d3, slot: 5781 +2024-09-30T06:48:31.065092Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5781 +2024-09-30T06:48:31.065104Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5781 +2024-09-30T06:48:31.080746Z INFO fork_choice_control::block_processor: Validating block with slot: 5784 +2024-09-30T06:48:31.083562Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x274c7d6bdc9356edb695bfe3bf65fea636d0b4154cc66fc13f33a08f9ea26f6c, slot: 5784 +2024-09-30T06:48:31.098137Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5784 +2024-09-30T06:48:31.098156Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5784 +2024-09-30T06:48:31.166768Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 179, root: 0xcb8cf9d3de420ca737e3b4fbd4b543ff0dd39b6dbcec021ad6e37007eea987b8, head slot: 5784, head root: 0x274c7d6bdc9356edb695bfe3bf65fea636d0b4154cc66fc13f33a08f9ea26f6c) +2024-09-30T06:48:31.166780Z INFO fork_choice_control::block_processor: Validating block with slot: 5785 +2024-09-30T06:48:31.169635Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x32c9b47a15f0435f95acb7d8839578a7d4b80775ca1f1207eaa59e48b24905e4, slot: 5785 +2024-09-30T06:48:31.178556Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5785 +2024-09-30T06:48:31.178578Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5785 +2024-09-30T06:48:31.195551Z INFO fork_choice_control::block_processor: Validating block with slot: 5786 +2024-09-30T06:48:31.196805Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9feac01c2ee402ed0b3a2df4092737faaf93943184f99ebd43931e167a82a8b0, slot: 5786 +2024-09-30T06:48:31.204441Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5786 +2024-09-30T06:48:31.204467Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5786 +2024-09-30T06:48:31.221354Z INFO fork_choice_control::block_processor: Validating block with slot: 5787 +2024-09-30T06:48:31.222501Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3cf2cabc87726e944e32a2c442c32c2c70b1c1105a395450273472ca825083a5, slot: 5787 +2024-09-30T06:48:31.230366Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5787 +2024-09-30T06:48:31.230383Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5787 +2024-09-30T06:48:31.247345Z INFO fork_choice_control::block_processor: Validating block with slot: 5788 +2024-09-30T06:48:31.252341Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb200fed46111cfb81c93adaebb15bf97ca044e8501e3b76806e6490353f471e1, slot: 5788 +2024-09-30T06:48:31.268520Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5788 +2024-09-30T06:48:31.268548Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5788 +2024-09-30T06:48:31.286534Z INFO fork_choice_control::block_processor: Validating block with slot: 5789 +2024-09-30T06:48:31.287927Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf83865d0f9bf82c1e9172477798d07e12f4041764277e89e5a6772261afb0674, slot: 5789 +2024-09-30T06:48:31.296605Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5789 +2024-09-30T06:48:31.296625Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5789 +2024-09-30T06:48:31.299490Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 5728 +2024-09-30T06:48:31.314885Z INFO fork_choice_control::block_processor: Validating block with slot: 5790 +2024-09-30T06:48:31.316270Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x17e042f688be2b42300519fcc13c142a7359ae3623af8972637c59efd7a86429, slot: 5790 +2024-09-30T06:48:31.325009Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5790 +2024-09-30T06:48:31.325030Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5790 +2024-09-30T06:48:31.343660Z INFO fork_choice_control::block_processor: Validating block with slot: 5791 +2024-09-30T06:48:31.345051Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb213d3c4c7a791ac598822cf1d60dc1725164c030277e9b3c2e21fef78b1707b, slot: 5791 +2024-09-30T06:48:31.353669Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5791 +2024-09-30T06:48:31.353693Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5791 +2024-09-30T06:48:32.742360Z INFO fork_choice_control::block_processor: Validating block with slot: 6371 +2024-09-30T06:48:32.742359Z INFO fork_choice_control::block_processor: Validating block with slot: 6370 +2024-09-30T06:48:32.742413Z INFO fork_choice_control::block_processor: Validating block with slot: 6369 +2024-09-30T06:48:32.742455Z INFO fork_choice_control::block_processor: Validating block with slot: 6372 +2024-09-30T06:48:32.742480Z INFO fork_choice_control::block_processor: Validating block with slot: 6373 +2024-09-30T06:48:32.742484Z INFO fork_choice_control::block_processor: Validating block with slot: 6375 +2024-09-30T06:48:32.742506Z INFO fork_choice_control::block_processor: Validating block with slot: 6374 +2024-09-30T06:48:32.917496Z INFO fork_choice_control::block_processor: Validating block with slot: 6377 +2024-09-30T06:48:32.917499Z INFO fork_choice_control::block_processor: Validating block with slot: 6376 +2024-09-30T06:48:32.917519Z INFO fork_choice_control::block_processor: Validating block with slot: 6379 +2024-09-30T06:48:32.917521Z INFO fork_choice_control::block_processor: Validating block with slot: 6378 +2024-09-30T06:48:33.192851Z INFO fork_choice_control::block_processor: Validating block with slot: 6381 +2024-09-30T06:48:33.192855Z INFO fork_choice_control::block_processor: Validating block with slot: 6380 +2024-09-30T06:48:33.192875Z INFO fork_choice_control::block_processor: Validating block with slot: 6383 +2024-09-30T06:48:33.192926Z INFO fork_choice_control::block_processor: Validating block with slot: 6382 +2024-09-30T06:48:33.193228Z INFO fork_choice_control::block_processor: Validating block with slot: 6384 +2024-09-30T06:48:33.193246Z INFO fork_choice_control::block_processor: Validating block with slot: 6385 +2024-09-30T06:48:33.193482Z INFO fork_choice_control::block_processor: Validating block with slot: 6386 +2024-09-30T06:48:33.193972Z INFO fork_choice_control::block_processor: Validating block with slot: 6387 +2024-09-30T06:48:33.194259Z INFO fork_choice_control::block_processor: Validating block with slot: 6388 +2024-09-30T06:48:33.194550Z INFO fork_choice_control::block_processor: Validating block with slot: 6389 +2024-09-30T06:48:33.194999Z INFO fork_choice_control::block_processor: Validating block with slot: 6390 +2024-09-30T06:48:33.195617Z INFO fork_choice_control::block_processor: Validating block with slot: 6391 +2024-09-30T06:48:33.195754Z INFO fork_choice_control::block_processor: Validating block with slot: 6392 +2024-09-30T06:48:33.195907Z INFO fork_choice_control::block_processor: Validating block with slot: 6393 +2024-09-30T06:48:33.196644Z INFO fork_choice_control::block_processor: Validating block with slot: 6394 +2024-09-30T06:48:33.344350Z INFO fork_choice_control::block_processor: Validating block with slot: 6396 +2024-09-30T06:48:33.344543Z INFO fork_choice_control::block_processor: Validating block with slot: 6395 +2024-09-30T06:48:33.360204Z INFO fork_choice_control::block_processor: Validating block with slot: 6398 +2024-09-30T06:48:33.360214Z INFO fork_choice_control::block_processor: Validating block with slot: 6399 +2024-09-30T06:48:33.360262Z INFO fork_choice_control::block_processor: Validating block with slot: 6397 +2024-09-30T06:48:33.360386Z INFO fork_choice_control::block_processor: Validating block with slot: 6400 +2024-09-30T06:48:33.638793Z INFO fork_choice_control::block_processor: Validating block with slot: 6403 +2024-09-30T06:48:33.638790Z INFO fork_choice_control::block_processor: Validating block with slot: 6402 +2024-09-30T06:48:33.638799Z INFO fork_choice_control::block_processor: Validating block with slot: 6404 +2024-09-30T06:48:33.638808Z INFO fork_choice_control::block_processor: Validating block with slot: 6401 +2024-09-30T06:48:33.638886Z INFO fork_choice_control::block_processor: Validating block with slot: 6405 +2024-09-30T06:48:33.638946Z INFO fork_choice_control::block_processor: Validating block with slot: 6406 +2024-09-30T06:48:33.639355Z INFO fork_choice_control::block_processor: Validating block with slot: 6407 +2024-09-30T06:48:33.649744Z INFO fork_choice_control::block_processor: Validating block with slot: 6408 +2024-09-30T06:48:33.766320Z INFO fork_choice_control::block_processor: Validating block with slot: 6410 +2024-09-30T06:48:33.766338Z INFO fork_choice_control::block_processor: Validating block with slot: 6414 +2024-09-30T06:48:33.766342Z INFO fork_choice_control::block_processor: Validating block with slot: 6413 +2024-09-30T06:48:33.766351Z INFO fork_choice_control::block_processor: Validating block with slot: 6409 +2024-09-30T06:48:33.766359Z INFO fork_choice_control::block_processor: Validating block with slot: 6412 +2024-09-30T06:48:33.766408Z INFO fork_choice_control::block_processor: Validating block with slot: 6417 +2024-09-30T06:48:33.766563Z INFO fork_choice_control::block_processor: Validating block with slot: 6411 +2024-09-30T06:48:33.766691Z INFO fork_choice_control::block_processor: Validating block with slot: 6416 +2024-09-30T06:48:33.773743Z INFO fork_choice_control::block_processor: Validating block with slot: 6418 +2024-09-30T06:48:33.923988Z INFO fork_choice_control::block_processor: Validating block with slot: 6419 +2024-09-30T06:48:33.924011Z INFO fork_choice_control::block_processor: Validating block with slot: 6420 +2024-09-30T06:48:33.924015Z INFO fork_choice_control::block_processor: Validating block with slot: 6422 +2024-09-30T06:48:33.924064Z INFO fork_choice_control::block_processor: Validating block with slot: 6423 +2024-09-30T06:48:33.924206Z INFO fork_choice_control::block_processor: Validating block with slot: 6421 +2024-09-30T06:48:33.924391Z INFO fork_choice_control::block_processor: Validating block with slot: 6424 +2024-09-30T06:48:34.089704Z INFO fork_choice_control::block_processor: Validating block with slot: 6426 +2024-09-30T06:48:34.089714Z INFO fork_choice_control::block_processor: Validating block with slot: 6425 +2024-09-30T06:48:34.089737Z INFO fork_choice_control::block_processor: Validating block with slot: 6427 +2024-09-30T06:48:34.089786Z INFO fork_choice_control::block_processor: Validating block with slot: 6430 +2024-09-30T06:48:34.089797Z INFO fork_choice_control::block_processor: Validating block with slot: 6429 +2024-09-30T06:48:34.089843Z INFO fork_choice_control::block_processor: Validating block with slot: 6431 +2024-09-30T06:48:34.089952Z INFO fork_choice_control::block_processor: Validating block with slot: 6428 +2024-09-30T06:48:34.090189Z INFO fork_choice_control::block_processor: Validating block with slot: 6432 +2024-09-30T06:48:35.349349Z INFO fork_choice_control::block_processor: Validating block with slot: 6497 +2024-09-30T06:48:35.357592Z INFO fork_choice_control::block_processor: Validating block with slot: 6500 +2024-09-30T06:48:35.357594Z INFO fork_choice_control::block_processor: Validating block with slot: 6499 +2024-09-30T06:48:35.364534Z INFO fork_choice_control::block_processor: Validating block with slot: 6501 +2024-09-30T06:48:35.364549Z INFO fork_choice_control::block_processor: Validating block with slot: 6502 +2024-09-30T06:48:35.364620Z INFO fork_choice_control::block_processor: Validating block with slot: 6503 +2024-09-30T06:48:35.418384Z INFO fork_choice_control::block_processor: Validating block with slot: 6504 +2024-09-30T06:48:35.418386Z INFO fork_choice_control::block_processor: Validating block with slot: 6505 +2024-09-30T06:48:35.418396Z INFO fork_choice_control::block_processor: Validating block with slot: 6506 +2024-09-30T06:48:35.418431Z INFO fork_choice_control::block_processor: Validating block with slot: 6507 +2024-09-30T06:48:35.447867Z INFO fork_choice_control::block_processor: Validating block with slot: 6508 +2024-09-30T06:48:35.447869Z INFO fork_choice_control::block_processor: Validating block with slot: 6510 +2024-09-30T06:48:35.447877Z INFO fork_choice_control::block_processor: Validating block with slot: 6512 +2024-09-30T06:48:35.447885Z INFO fork_choice_control::block_processor: Validating block with slot: 6511 +2024-09-30T06:48:35.447903Z INFO fork_choice_control::block_processor: Validating block with slot: 6514 +2024-09-30T06:48:35.447925Z INFO fork_choice_control::block_processor: Validating block with slot: 6509 +2024-09-30T06:48:35.447940Z INFO fork_choice_control::block_processor: Validating block with slot: 6515 +2024-09-30T06:48:35.448131Z INFO fork_choice_control::block_processor: Validating block with slot: 6513 +2024-09-30T06:48:35.448903Z INFO fork_choice_control::block_processor: Validating block with slot: 6516 +2024-09-30T06:48:35.449105Z INFO fork_choice_control::block_processor: Validating block with slot: 6517 +2024-09-30T06:48:35.449685Z INFO fork_choice_control::block_processor: Validating block with slot: 6518 +2024-09-30T06:48:35.449841Z INFO fork_choice_control::block_processor: Validating block with slot: 6519 +2024-09-30T06:48:35.537566Z INFO fork_choice_control::block_processor: Validating block with slot: 6520 +2024-09-30T06:48:35.537570Z INFO fork_choice_control::block_processor: Validating block with slot: 6524 +2024-09-30T06:48:35.537577Z INFO fork_choice_control::block_processor: Validating block with slot: 6526 +2024-09-30T06:48:35.537587Z INFO fork_choice_control::block_processor: Validating block with slot: 6523 +2024-09-30T06:48:35.537614Z INFO fork_choice_control::block_processor: Validating block with slot: 6521 +2024-09-30T06:48:35.537794Z INFO fork_choice_control::block_processor: Validating block with slot: 6522 +2024-09-30T06:48:35.537919Z INFO fork_choice_control::block_processor: Validating block with slot: 6525 +2024-09-30T06:48:35.539250Z INFO fork_choice_control::block_processor: Validating block with slot: 6529 +2024-09-30T06:48:35.539951Z INFO fork_choice_control::block_processor: Validating block with slot: 6530 +2024-09-30T06:48:35.540792Z INFO fork_choice_control::block_processor: Validating block with slot: 6531 +2024-09-30T06:48:35.541217Z INFO fork_choice_control::block_processor: Validating block with slot: 6533 +2024-09-30T06:48:35.541426Z INFO fork_choice_control::block_processor: Validating block with slot: 6534 +2024-09-30T06:48:35.541591Z INFO fork_choice_control::block_processor: Validating block with slot: 6535 +2024-09-30T06:48:35.541598Z INFO fork_choice_control::block_processor: Validating block with slot: 6532 +2024-09-30T06:48:35.542090Z INFO fork_choice_control::block_processor: Validating block with slot: 6536 +2024-09-30T06:48:35.542138Z INFO fork_choice_control::block_processor: Validating block with slot: 6537 +2024-09-30T06:48:35.542592Z INFO fork_choice_control::block_processor: Validating block with slot: 6538 +2024-09-30T06:48:35.543176Z INFO fork_choice_control::block_processor: Validating block with slot: 6539 +2024-09-30T06:48:35.543211Z INFO fork_choice_control::block_processor: Validating block with slot: 6540 +2024-09-30T06:48:35.544188Z INFO fork_choice_control::block_processor: Validating block with slot: 6541 +2024-09-30T06:48:35.544227Z INFO fork_choice_control::block_processor: Validating block with slot: 6545 +2024-09-30T06:48:35.544570Z INFO fork_choice_control::block_processor: Validating block with slot: 6542 +2024-09-30T06:48:35.544848Z INFO fork_choice_control::block_processor: Validating block with slot: 6546 +2024-09-30T06:48:35.544935Z INFO fork_choice_control::block_processor: Validating block with slot: 6547 +2024-09-30T06:48:35.545178Z INFO fork_choice_control::block_processor: Validating block with slot: 6548 +2024-09-30T06:48:35.545803Z INFO fork_choice_control::block_processor: Validating block with slot: 6549 +2024-09-30T06:48:35.547699Z INFO fork_choice_control::block_processor: Validating block with slot: 6550 +2024-09-30T06:48:35.547759Z INFO fork_choice_control::block_processor: Validating block with slot: 6556 +2024-09-30T06:48:35.547848Z INFO fork_choice_control::block_processor: Validating block with slot: 6552 +2024-09-30T06:48:35.548270Z INFO fork_choice_control::block_processor: Validating block with slot: 6543 +2024-09-30T06:48:35.548978Z INFO fork_choice_control::block_processor: Validating block with slot: 6557 +2024-09-30T06:48:35.550082Z INFO fork_choice_control::block_processor: Validating block with slot: 6558 +2024-09-30T06:48:35.550719Z INFO fork_choice_control::block_processor: Validating block with slot: 6553 +2024-09-30T06:48:35.551238Z INFO fork_choice_control::block_processor: Validating block with slot: 6559 +2024-09-30T06:48:35.551899Z INFO fork_choice_control::block_processor: Validating block with slot: 6554 +2024-09-30T06:48:35.552534Z INFO fork_choice_control::block_processor: Validating block with slot: 6544 +2024-09-30T06:48:35.553423Z INFO fork_choice_control::block_processor: Validating block with slot: 6555 +2024-09-30T06:48:35.644236Z INFO fork_choice_control::block_processor: Validating block with slot: 6560 +2024-09-30T06:48:36.177873Z INFO fork_choice_control::block_processor: Validating block with slot: 6753 +2024-09-30T06:48:36.177881Z INFO fork_choice_control::block_processor: Validating block with slot: 6754 +2024-09-30T06:48:36.177887Z INFO fork_choice_control::block_processor: Validating block with slot: 6755 +2024-09-30T06:48:36.177906Z INFO fork_choice_control::block_processor: Validating block with slot: 6756 +2024-09-30T06:48:36.178209Z INFO fork_choice_control::block_processor: Validating block with slot: 6757 +2024-09-30T06:48:36.178215Z INFO fork_choice_control::block_processor: Validating block with slot: 6758 +2024-09-30T06:48:36.178246Z INFO fork_choice_control::block_processor: Validating block with slot: 6759 +2024-09-30T06:48:36.180441Z INFO fork_choice_control::block_processor: Validating block with slot: 6760 +2024-09-30T06:48:36.180848Z INFO fork_choice_control::block_processor: Validating block with slot: 6761 +2024-09-30T06:48:36.192590Z INFO fork_choice_control::block_processor: Validating block with slot: 6762 +2024-09-30T06:48:36.192663Z INFO fork_choice_control::block_processor: Validating block with slot: 6765 +2024-09-30T06:48:36.192644Z INFO fork_choice_control::block_processor: Validating block with slot: 6764 +2024-09-30T06:48:36.192659Z INFO fork_choice_control::block_processor: Validating block with slot: 6763 +2024-09-30T06:48:36.327602Z INFO fork_choice_control::block_processor: Validating block with slot: 6767 +2024-09-30T06:48:36.327616Z INFO fork_choice_control::block_processor: Validating block with slot: 6766 +2024-09-30T06:48:36.327696Z INFO fork_choice_control::block_processor: Validating block with slot: 6768 +2024-09-30T06:48:36.327716Z INFO fork_choice_control::block_processor: Validating block with slot: 6771 +2024-09-30T06:48:36.327735Z INFO fork_choice_control::block_processor: Validating block with slot: 6770 +2024-09-30T06:48:36.608835Z INFO fork_choice_control::block_processor: Validating block with slot: 6774 +2024-09-30T06:48:36.608859Z INFO fork_choice_control::block_processor: Validating block with slot: 6776 +2024-09-30T06:48:36.608903Z INFO fork_choice_control::block_processor: Validating block with slot: 6773 +2024-09-30T06:48:36.608961Z INFO fork_choice_control::block_processor: Validating block with slot: 6778 +2024-09-30T06:48:36.609048Z INFO fork_choice_control::block_processor: Validating block with slot: 6775 +2024-09-30T06:48:36.609330Z INFO fork_choice_control::block_processor: Validating block with slot: 6779 +2024-09-30T06:48:36.609313Z INFO fork_choice_control::block_processor: Validating block with slot: 6777 +2024-09-30T06:48:36.610354Z INFO fork_choice_control::block_processor: Validating block with slot: 6781 +2024-09-30T06:48:36.610507Z INFO fork_choice_control::block_processor: Validating block with slot: 6782 +2024-09-30T06:48:36.611910Z INFO fork_choice_control::block_processor: Validating block with slot: 6780 +2024-09-30T06:48:36.634267Z INFO fork_choice_control::block_processor: Validating block with slot: 6785 +2024-09-30T06:48:36.634271Z INFO fork_choice_control::block_processor: Validating block with slot: 6784 +2024-09-30T06:48:36.634325Z INFO fork_choice_control::block_processor: Validating block with slot: 6786 +2024-09-30T06:48:36.716130Z INFO fork_choice_control::block_processor: Validating block with slot: 6788 +2024-09-30T06:48:36.716134Z INFO fork_choice_control::block_processor: Validating block with slot: 6789 +2024-09-30T06:48:36.716153Z INFO fork_choice_control::block_processor: Validating block with slot: 6790 +2024-09-30T06:48:36.716190Z INFO fork_choice_control::block_processor: Validating block with slot: 6787 +2024-09-30T06:48:36.716225Z INFO fork_choice_control::block_processor: Validating block with slot: 6791 +2024-09-30T06:48:36.768658Z INFO fork_choice_control::block_processor: Validating block with slot: 6793 +2024-09-30T06:48:36.768674Z INFO fork_choice_control::block_processor: Validating block with slot: 6795 +2024-09-30T06:48:36.768813Z INFO fork_choice_control::block_processor: Validating block with slot: 6794 +2024-09-30T06:48:36.768834Z INFO fork_choice_control::block_processor: Validating block with slot: 6792 +2024-09-30T06:48:36.768841Z INFO fork_choice_control::block_processor: Validating block with slot: 6796 +2024-09-30T06:48:37.016522Z INFO fork_choice_control::block_processor: Validating block with slot: 6798 +2024-09-30T06:48:37.016580Z INFO fork_choice_control::block_processor: Validating block with slot: 6797 +2024-09-30T06:48:37.044545Z INFO fork_choice_control::block_processor: Validating block with slot: 6800 +2024-09-30T06:48:37.044608Z INFO fork_choice_control::block_processor: Validating block with slot: 6801 +2024-09-30T06:48:37.044605Z INFO fork_choice_control::block_processor: Validating block with slot: 6799 +2024-09-30T06:48:37.044644Z INFO fork_choice_control::block_processor: Validating block with slot: 6802 +2024-09-30T06:48:37.044721Z INFO fork_choice_control::block_processor: Validating block with slot: 6803 +2024-09-30T06:48:37.044823Z INFO fork_choice_control::block_processor: Validating block with slot: 6804 +2024-09-30T06:48:37.045265Z INFO fork_choice_control::block_processor: Validating block with slot: 6805 +2024-09-30T06:48:37.059667Z INFO fork_choice_control::block_processor: Validating block with slot: 6807 +2024-09-30T06:48:37.059672Z INFO fork_choice_control::block_processor: Validating block with slot: 6806 +2024-09-30T06:48:37.073579Z INFO fork_choice_control::block_processor: Validating block with slot: 6809 +2024-09-30T06:48:37.073582Z INFO fork_choice_control::block_processor: Validating block with slot: 6808 +2024-09-30T06:48:37.099587Z INFO fork_choice_control::block_processor: Validating block with slot: 6810 +2024-09-30T06:48:37.161146Z INFO fork_choice_control::block_processor: Validating block with slot: 6811 +2024-09-30T06:48:37.161164Z INFO fork_choice_control::block_processor: Validating block with slot: 6813 +2024-09-30T06:48:37.161168Z INFO fork_choice_control::block_processor: Validating block with slot: 6812 +2024-09-30T06:48:37.161301Z INFO fork_choice_control::block_processor: Validating block with slot: 6814 +2024-09-30T06:48:37.174377Z INFO fork_choice_control::block_processor: Validating block with slot: 6816 +2024-09-30T06:48:37.174428Z INFO fork_choice_control::block_processor: Validating block with slot: 6815 +2024-09-30T06:48:38.171962Z INFO fork_choice_control::block_processor: Validating block with slot: 6017 +2024-09-30T06:48:38.195825Z INFO fork_choice_control::block_processor: Validating block with slot: 6018 +2024-09-30T06:48:38.215150Z INFO fork_choice_control::block_processor: Validating block with slot: 6019 +2024-09-30T06:48:38.215173Z INFO fork_choice_control::block_processor: Validating block with slot: 6020 +2024-09-30T06:48:38.228194Z INFO fork_choice_control::block_processor: Validating block with slot: 6021 +2024-09-30T06:48:38.253840Z INFO fork_choice_control::block_processor: Validating block with slot: 6022 +2024-09-30T06:48:38.356145Z INFO fork_choice_control::block_processor: Validating block with slot: 6023 +2024-09-30T06:48:38.381986Z INFO fork_choice_control::block_processor: Validating block with slot: 6024 +2024-09-30T06:48:38.392895Z INFO fork_choice_control::block_processor: Validating block with slot: 6026 +2024-09-30T06:48:38.475868Z INFO fork_choice_control::block_processor: Validating block with slot: 6027 +2024-09-30T06:48:38.475922Z INFO fork_choice_control::block_processor: Validating block with slot: 6028 +2024-09-30T06:48:38.486460Z INFO fork_choice_control::block_processor: Validating block with slot: 6029 +2024-09-30T06:48:38.555912Z INFO fork_choice_control::block_processor: Validating block with slot: 6031 +2024-09-30T06:48:38.555914Z INFO fork_choice_control::block_processor: Validating block with slot: 6032 +2024-09-30T06:48:38.565912Z INFO fork_choice_control::block_processor: Validating block with slot: 6033 +2024-09-30T06:48:38.573040Z INFO fork_choice_control::block_processor: Validating block with slot: 6034 +2024-09-30T06:48:38.591049Z INFO fork_choice_control::block_processor: Validating block with slot: 6035 +2024-09-30T06:48:38.600680Z INFO fork_choice_control::block_processor: Validating block with slot: 6036 +2024-09-30T06:48:38.640443Z INFO fork_choice_control::block_processor: Validating block with slot: 6037 +2024-09-30T06:48:38.651279Z INFO fork_choice_control::block_processor: Validating block with slot: 6038 +2024-09-30T06:48:38.654536Z INFO fork_choice_control::block_processor: Validating block with slot: 6039 +2024-09-30T06:48:38.688368Z INFO fork_choice_control::block_processor: Validating block with slot: 6040 +2024-09-30T06:48:38.692354Z INFO fork_choice_control::block_processor: Validating block with slot: 6041 +2024-09-30T06:48:38.980331Z INFO fork_choice_control::block_processor: Validating block with slot: 5952 +2024-09-30T06:48:38.993407Z INFO fork_choice_control::block_processor: Validating block with slot: 5953 +2024-09-30T06:48:39.098596Z INFO fork_choice_control::block_processor: Validating block with slot: 5954 +2024-09-30T06:48:39.162803Z INFO fork_choice_control::block_processor: Validating block with slot: 5955 +2024-09-30T06:48:39.243860Z INFO fork_choice_control::block_processor: Validating block with slot: 5956 +2024-09-30T06:48:39.270096Z INFO fork_choice_control::block_processor: Validating block with slot: 6209 +2024-09-30T06:48:39.270102Z INFO fork_choice_control::block_processor: Validating block with slot: 6213 +2024-09-30T06:48:39.270160Z INFO fork_choice_control::block_processor: Validating block with slot: 6208 +2024-09-30T06:48:39.270186Z INFO fork_choice_control::block_processor: Validating block with slot: 6211 +2024-09-30T06:48:39.270181Z INFO fork_choice_control::block_processor: Validating block with slot: 6210 +2024-09-30T06:48:39.270285Z INFO fork_choice_control::block_processor: Validating block with slot: 6215 +2024-09-30T06:48:39.270296Z INFO fork_choice_control::block_processor: Validating block with slot: 6212 +2024-09-30T06:48:39.270391Z INFO fork_choice_control::block_processor: Validating block with slot: 6214 +2024-09-30T06:48:39.271227Z INFO fork_choice_control::block_processor: Validating block with slot: 6216 +2024-09-30T06:48:39.271234Z INFO fork_choice_control::block_processor: Validating block with slot: 6217 +2024-09-30T06:48:39.271407Z INFO fork_choice_control::block_processor: Validating block with slot: 6218 +2024-09-30T06:48:39.271952Z INFO fork_choice_control::block_processor: Validating block with slot: 6219 +2024-09-30T06:48:39.272167Z INFO fork_choice_control::block_processor: Validating block with slot: 6220 +2024-09-30T06:48:39.272627Z INFO fork_choice_control::block_processor: Validating block with slot: 6221 +2024-09-30T06:48:39.277385Z INFO fork_choice_control::block_processor: Validating block with slot: 5957 +2024-09-30T06:48:39.291703Z INFO fork_choice_control::block_processor: Validating block with slot: 5958 +2024-09-30T06:48:39.314321Z INFO fork_choice_control::block_processor: Validating block with slot: 6223 +2024-09-30T06:48:39.314324Z INFO fork_choice_control::block_processor: Validating block with slot: 6222 +2024-09-30T06:48:39.332664Z INFO fork_choice_control::block_processor: Validating block with slot: 6224 +2024-09-30T06:48:39.332668Z INFO fork_choice_control::block_processor: Validating block with slot: 6225 +2024-09-30T06:48:39.332673Z INFO fork_choice_control::block_processor: Validating block with slot: 6226 +2024-09-30T06:48:39.332685Z INFO fork_choice_control::block_processor: Validating block with slot: 6227 +2024-09-30T06:48:39.332784Z INFO fork_choice_control::block_processor: Validating block with slot: 6228 +2024-09-30T06:48:39.414326Z INFO fork_choice_control::block_processor: Validating block with slot: 5959 +2024-09-30T06:48:39.425732Z INFO fork_choice_control::block_processor: Validating block with slot: 5960 +2024-09-30T06:48:39.435875Z INFO fork_choice_control::block_processor: Validating block with slot: 6229 +2024-09-30T06:48:39.435885Z INFO fork_choice_control::block_processor: Validating block with slot: 6231 +2024-09-30T06:48:39.435902Z INFO fork_choice_control::block_processor: Validating block with slot: 6232 +2024-09-30T06:48:39.435940Z INFO fork_choice_control::block_processor: Validating block with slot: 6233 +2024-09-30T06:48:39.435921Z INFO fork_choice_control::block_processor: Validating block with slot: 6230 +2024-09-30T06:48:39.489067Z INFO fork_choice_control::block_processor: Validating block with slot: 5961 +2024-09-30T06:48:39.509208Z INFO fork_choice_control::block_processor: Validating block with slot: 5962 +2024-09-30T06:48:39.587732Z INFO fork_choice_control::block_processor: Validating block with slot: 5963 +2024-09-30T06:48:39.716542Z INFO fork_choice_control::block_processor: Validating block with slot: 6236 +2024-09-30T06:48:39.716545Z INFO fork_choice_control::block_processor: Validating block with slot: 6235 +2024-09-30T06:48:39.716548Z INFO fork_choice_control::block_processor: Validating block with slot: 6237 +2024-09-30T06:48:39.716566Z INFO fork_choice_control::block_processor: Validating block with slot: 6240 +2024-09-30T06:48:39.716606Z INFO fork_choice_control::block_processor: Validating block with slot: 6238 +2024-09-30T06:48:39.716634Z INFO fork_choice_control::block_processor: Validating block with slot: 6239 +2024-09-30T06:48:39.716876Z INFO fork_choice_control::block_processor: Validating block with slot: 6241 +2024-09-30T06:48:39.717009Z INFO fork_choice_control::block_processor: Validating block with slot: 6242 +2024-09-30T06:48:39.717760Z INFO fork_choice_control::block_processor: Validating block with slot: 6243 +2024-09-30T06:48:39.717881Z INFO fork_choice_control::block_processor: Validating block with slot: 6244 +2024-09-30T06:48:39.717918Z INFO fork_choice_control::block_processor: Validating block with slot: 6245 +2024-09-30T06:48:39.719239Z INFO fork_choice_control::block_processor: Validating block with slot: 6246 +2024-09-30T06:48:39.763794Z INFO fork_choice_control::block_processor: Validating block with slot: 6247 +2024-09-30T06:48:39.763875Z INFO fork_choice_control::block_processor: Validating block with slot: 6248 +2024-09-30T06:48:39.763898Z INFO fork_choice_control::block_processor: Validating block with slot: 6251 +2024-09-30T06:48:39.764896Z INFO fork_choice_control::block_processor: Validating block with slot: 6249 +2024-09-30T06:48:39.764923Z INFO fork_choice_control::block_processor: Validating block with slot: 6250 +2024-09-30T06:48:39.769893Z INFO fork_choice_control::block_processor: Validating block with slot: 6252 +2024-09-30T06:48:39.785581Z INFO fork_choice_control::block_processor: Validating block with slot: 6253 +2024-09-30T06:48:39.793305Z INFO fork_choice_control::block_processor: Validating block with slot: 6254 +2024-09-30T06:48:39.794681Z INFO fork_choice_control::block_processor: Validating block with slot: 5964 +2024-09-30T06:48:39.803806Z INFO fork_choice_control::block_processor: Validating block with slot: 5965 +2024-09-30T06:48:39.888169Z INFO fork_choice_control::block_processor: Validating block with slot: 6256 +2024-09-30T06:48:39.888173Z INFO fork_choice_control::block_processor: Validating block with slot: 6255 +2024-09-30T06:48:39.888196Z INFO fork_choice_control::block_processor: Validating block with slot: 6258 +2024-09-30T06:48:39.888191Z INFO fork_choice_control::block_processor: Validating block with slot: 6257 +2024-09-30T06:48:39.888231Z INFO fork_choice_control::block_processor: Validating block with slot: 6260 +2024-09-30T06:48:39.888249Z INFO fork_choice_control::block_processor: Validating block with slot: 6261 +2024-09-30T06:48:39.888286Z INFO fork_choice_control::block_processor: Validating block with slot: 6259 +2024-09-30T06:48:39.888502Z INFO fork_choice_control::block_processor: Validating block with slot: 6262 +2024-09-30T06:48:39.889499Z INFO fork_choice_control::block_processor: Validating block with slot: 5966 +2024-09-30T06:48:39.899319Z INFO fork_choice_control::block_processor: Validating block with slot: 6264 +2024-09-30T06:48:39.899326Z INFO fork_choice_control::block_processor: Validating block with slot: 6263 +2024-09-30T06:48:39.980312Z INFO fork_choice_control::block_processor: Validating block with slot: 6265 +2024-09-30T06:48:39.980315Z INFO fork_choice_control::block_processor: Validating block with slot: 6266 +2024-09-30T06:48:40.062081Z INFO fork_choice_control::block_processor: Validating block with slot: 5967 +2024-09-30T06:48:40.090417Z INFO fork_choice_control::block_processor: Validating block with slot: 5969 +2024-09-30T06:48:40.117774Z INFO fork_choice_control::block_processor: Validating block with slot: 6267 +2024-09-30T06:48:40.133274Z INFO fork_choice_control::block_processor: Validating block with slot: 6268 +2024-09-30T06:48:40.133278Z INFO fork_choice_control::block_processor: Validating block with slot: 6269 +2024-09-30T06:48:40.133335Z INFO fork_choice_control::block_processor: Validating block with slot: 6270 +2024-09-30T06:48:40.133373Z INFO fork_choice_control::block_processor: Validating block with slot: 6271 +2024-09-30T06:48:40.185236Z INFO fork_choice_control::block_processor: Validating block with slot: 5970 +2024-09-30T06:48:40.337133Z INFO fork_choice_control::block_processor: Validating block with slot: 5971 +2024-09-30T06:48:40.338582Z INFO fork_choice_control::block_processor: Validating block with slot: 5972 +2024-09-30T06:48:40.441149Z INFO fork_choice_control::block_processor: Validating block with slot: 5973 +2024-09-30T06:48:40.471620Z INFO fork_choice_control::block_processor: Validating block with slot: 5975 +2024-09-30T06:48:40.550222Z INFO fork_choice_control::block_processor: Validating block with slot: 5976 +2024-09-30T06:48:40.595735Z INFO fork_choice_control::block_processor: Validating block with slot: 5977 +2024-09-30T06:48:40.595785Z INFO fork_choice_control::block_processor: Validating block with slot: 5978 +2024-09-30T06:48:40.699358Z INFO fork_choice_control::block_processor: Validating block with slot: 5980 +2024-09-30T06:48:40.699357Z INFO fork_choice_control::block_processor: Validating block with slot: 5979 +2024-09-30T06:48:40.745920Z INFO fork_choice_control::block_processor: Validating block with slot: 5981 +2024-09-30T06:48:40.848467Z INFO fork_choice_control::block_processor: Validating block with slot: 5982 +2024-09-30T06:48:40.854300Z INFO fork_choice_control::block_processor: Validating block with slot: 5983 +2024-09-30T06:48:40.935557Z INFO fork_choice_control::block_processor: Validating block with slot: 5984 +2024-09-30T06:48:40.986004Z INFO fork_choice_control::block_processor: Validating block with slot: 5985 +2024-09-30T06:48:41.005058Z INFO fork_choice_control::block_processor: Validating block with slot: 5986 +2024-09-30T06:48:41.034283Z INFO fork_choice_control::block_processor: Validating block with slot: 5987 +2024-09-30T06:48:41.156598Z INFO fork_choice_control::block_processor: Validating block with slot: 5988 +2024-09-30T06:48:41.191482Z INFO fork_choice_control::block_processor: Validating block with slot: 5989 +2024-09-30T06:48:41.266527Z INFO fork_choice_control::block_processor: Validating block with slot: 5990 +2024-09-30T06:48:41.288886Z INFO fork_choice_control::block_processor: Validating block with slot: 5991 +2024-09-30T06:48:41.323363Z INFO fork_choice_control::block_processor: Validating block with slot: 5992 +2024-09-30T06:48:41.383094Z INFO fork_choice_control::block_processor: Validating block with slot: 5993 +2024-09-30T06:48:41.408980Z INFO fork_choice_control::block_processor: Validating block with slot: 5994 +2024-09-30T06:48:41.480449Z INFO fork_choice_control::block_processor: Validating block with slot: 5995 +2024-09-30T06:48:41.524563Z INFO fork_choice_control::block_processor: Validating block with slot: 5996 +2024-09-30T06:48:41.587635Z INFO fork_choice_control::block_processor: Validating block with slot: 5997 +2024-09-30T06:48:41.610063Z INFO fork_choice_control::block_processor: Validating block with slot: 5998 +2024-09-30T06:48:41.681004Z INFO fork_choice_control::block_processor: Validating block with slot: 5999 +2024-09-30T06:48:41.745527Z INFO fork_choice_control::block_processor: Validating block with slot: 6001 +2024-09-30T06:48:41.759268Z INFO fork_choice_control::block_processor: Validating block with slot: 6002 +2024-09-30T06:48:41.898450Z INFO fork_choice_control::block_processor: Validating block with slot: 6003 +2024-09-30T06:48:42.012087Z INFO fork_choice_control::block_processor: Validating block with slot: 6004 +2024-09-30T06:48:42.012084Z INFO fork_choice_control::block_processor: Validating block with slot: 6005 +2024-09-30T06:48:42.052811Z INFO fork_choice_control::block_processor: Validating block with slot: 6006 +2024-09-30T06:48:42.099839Z INFO fork_choice_control::block_processor: Validating block with slot: 6007 +2024-09-30T06:48:42.196328Z INFO fork_choice_control::block_processor: Validating block with slot: 6008 +2024-09-30T06:48:42.276117Z INFO fork_choice_control::block_processor: Validating block with slot: 6009 +2024-09-30T06:48:42.352916Z INFO fork_choice_control::block_processor: Validating block with slot: 6010 +2024-09-30T06:48:42.403032Z INFO fork_choice_control::block_processor: Validating block with slot: 6011 +2024-09-30T06:48:42.433238Z INFO fork_choice_control::block_processor: Validating block with slot: 6012 +2024-09-30T06:48:42.446815Z INFO fork_choice_control::block_processor: Validating block with slot: 6013 +2024-09-30T06:48:42.575364Z INFO fork_choice_control::block_processor: Validating block with slot: 6014 +2024-09-30T06:48:42.749105Z INFO fork_choice_control::block_processor: Validating block with slot: 6015 +2024-09-30T06:48:43.017690Z INFO fork_choice_control::block_processor: Validating block with slot: 6171 +2024-09-30T06:48:43.017703Z INFO fork_choice_control::block_processor: Validating block with slot: 6172 +2024-09-30T06:48:43.017709Z INFO fork_choice_control::block_processor: Validating block with slot: 6174 +2024-09-30T06:48:43.017734Z INFO fork_choice_control::block_processor: Validating block with slot: 6176 +2024-09-30T06:48:43.017790Z INFO fork_choice_control::block_processor: Validating block with slot: 6175 +2024-09-30T06:48:43.017928Z INFO fork_choice_control::block_processor: Validating block with slot: 6179 +2024-09-30T06:48:43.018313Z INFO fork_choice_control::block_processor: Validating block with slot: 6177 +2024-09-30T06:48:43.018690Z INFO fork_choice_control::block_processor: Validating block with slot: 6180 +2024-09-30T06:48:43.018734Z INFO fork_choice_control::block_processor: Validating block with slot: 6181 +2024-09-30T06:48:43.018795Z INFO fork_choice_control::block_processor: Validating block with slot: 6182 +2024-09-30T06:48:43.019790Z INFO fork_choice_control::block_processor: Validating block with slot: 6183 +2024-09-30T06:48:43.019839Z INFO fork_choice_control::block_processor: Validating block with slot: 6170 +2024-09-30T06:48:43.019909Z INFO fork_choice_control::block_processor: Validating block with slot: 6184 +2024-09-30T06:48:43.020755Z INFO fork_choice_control::block_processor: Validating block with slot: 6185 +2024-09-30T06:48:43.020970Z INFO fork_choice_control::block_processor: Validating block with slot: 6188 +2024-09-30T06:48:43.020981Z INFO fork_choice_control::block_processor: Validating block with slot: 6189 +2024-09-30T06:48:43.021647Z INFO fork_choice_control::block_processor: Validating block with slot: 6186 +2024-09-30T06:48:43.021921Z INFO fork_choice_control::block_processor: Validating block with slot: 6190 +2024-09-30T06:48:43.022246Z INFO fork_choice_control::block_processor: Validating block with slot: 6187 +2024-09-30T06:48:43.022367Z INFO fork_choice_control::block_processor: Validating block with slot: 6191 +2024-09-30T06:48:43.022856Z INFO fork_choice_control::block_processor: Validating block with slot: 6192 +2024-09-30T06:48:43.022911Z INFO fork_choice_control::block_processor: Validating block with slot: 6193 +2024-09-30T06:48:43.024005Z INFO fork_choice_control::block_processor: Validating block with slot: 6194 +2024-09-30T06:48:43.024857Z INFO fork_choice_control::block_processor: Validating block with slot: 6195 +2024-09-30T06:48:43.024912Z INFO fork_choice_control::block_processor: Validating block with slot: 6198 +2024-09-30T06:48:43.025063Z INFO fork_choice_control::block_processor: Validating block with slot: 6196 +2024-09-30T06:48:43.025219Z INFO fork_choice_control::block_processor: Validating block with slot: 6199 +2024-09-30T06:48:43.025427Z INFO fork_choice_control::block_processor: Validating block with slot: 6200 +2024-09-30T06:48:43.025720Z INFO fork_choice_control::block_processor: Validating block with slot: 6197 +2024-09-30T06:48:43.025769Z INFO fork_choice_control::block_processor: Validating block with slot: 6201 +2024-09-30T06:48:43.025954Z INFO fork_choice_control::block_processor: Validating block with slot: 6202 +2024-09-30T06:48:43.026778Z INFO fork_choice_control::block_processor: Validating block with slot: 6203 +2024-09-30T06:48:43.027878Z INFO fork_choice_control::block_processor: Validating block with slot: 6204 +2024-09-30T06:48:43.028130Z INFO fork_choice_control::block_processor: Validating block with slot: 6205 +2024-09-30T06:48:43.058785Z INFO fork_choice_control::block_processor: Validating block with slot: 6206 +2024-09-30T06:48:44.060414Z INFO fork_choice_control::block_processor: Validating block with slot: 5824 +2024-09-30T06:48:44.069504Z INFO fork_choice_control::block_processor: Validating block with slot: 5825 +2024-09-30T06:48:44.075863Z INFO fork_choice_control::block_processor: Validating block with slot: 5826 +2024-09-30T06:48:44.079353Z INFO fork_choice_control::block_processor: Validating block with slot: 5827 +2024-09-30T06:48:44.079377Z INFO fork_choice_control::block_processor: Validating block with slot: 5828 +2024-09-30T06:48:44.241460Z INFO fork_choice_control::block_processor: Validating block with slot: 5829 +2024-09-30T06:48:44.241462Z INFO fork_choice_control::block_processor: Validating block with slot: 5830 +2024-09-30T06:48:44.262863Z INFO fork_choice_control::block_processor: Validating block with slot: 5831 +2024-09-30T06:48:44.262871Z INFO fork_choice_control::block_processor: Validating block with slot: 5832 +2024-09-30T06:48:44.262877Z INFO fork_choice_control::block_processor: Validating block with slot: 5833 +2024-09-30T06:48:44.270759Z INFO fork_choice_control::block_processor: Validating block with slot: 5835 +2024-09-30T06:48:44.270769Z INFO fork_choice_control::block_processor: Validating block with slot: 5837 +2024-09-30T06:48:44.270773Z INFO fork_choice_control::block_processor: Validating block with slot: 5836 +2024-09-30T06:48:44.270834Z INFO fork_choice_control::block_processor: Validating block with slot: 5834 +2024-09-30T06:48:44.274361Z INFO fork_choice_control::block_processor: Validating block with slot: 5838 +2024-09-30T06:48:44.282808Z INFO fork_choice_control::block_processor: Validating block with slot: 5839 +2024-09-30T06:48:44.282841Z INFO fork_choice_control::block_processor: Validating block with slot: 5840 +2024-09-30T06:48:44.282844Z INFO fork_choice_control::block_processor: Validating block with slot: 5841 +2024-09-30T06:48:44.289648Z INFO fork_choice_control::block_processor: Validating block with slot: 5843 +2024-09-30T06:48:44.289652Z INFO fork_choice_control::block_processor: Validating block with slot: 5842 +2024-09-30T06:48:44.289669Z INFO fork_choice_control::block_processor: Validating block with slot: 5844 +2024-09-30T06:48:44.323076Z INFO fork_choice_control::block_processor: Validating block with slot: 6273 +2024-09-30T06:48:44.323102Z INFO fork_choice_control::block_processor: Validating block with slot: 6275 +2024-09-30T06:48:44.323122Z INFO fork_choice_control::block_processor: Validating block with slot: 6272 +2024-09-30T06:48:44.323134Z INFO fork_choice_control::block_processor: Validating block with slot: 6276 +2024-09-30T06:48:44.323149Z INFO fork_choice_control::block_processor: Validating block with slot: 6277 +2024-09-30T06:48:44.323191Z INFO fork_choice_control::block_processor: Validating block with slot: 6274 +2024-09-30T06:48:44.323329Z INFO fork_choice_control::block_processor: Validating block with slot: 6278 +2024-09-30T06:48:44.373866Z INFO fork_choice_control::block_processor: Validating block with slot: 6279 +2024-09-30T06:48:44.416197Z INFO fork_choice_control::block_processor: Validating block with slot: 6280 +2024-09-30T06:48:44.416403Z INFO fork_choice_control::block_processor: Validating block with slot: 6281 +2024-09-30T06:48:44.416423Z INFO fork_choice_control::block_processor: Validating block with slot: 6282 +2024-09-30T06:48:44.416469Z INFO fork_choice_control::block_processor: Validating block with slot: 6283 +2024-09-30T06:48:44.416993Z INFO fork_choice_control::block_processor: Validating block with slot: 6284 +2024-09-30T06:48:44.417119Z INFO fork_choice_control::block_processor: Validating block with slot: 6285 +2024-09-30T06:48:44.417694Z INFO fork_choice_control::block_processor: Validating block with slot: 6286 +2024-09-30T06:48:44.418199Z INFO fork_choice_control::block_processor: Validating block with slot: 6287 +2024-09-30T06:48:44.420586Z INFO fork_choice_control::block_processor: Validating block with slot: 6288 +2024-09-30T06:48:44.421364Z INFO fork_choice_control::block_processor: Validating block with slot: 6294 +2024-09-30T06:48:44.421837Z INFO fork_choice_control::block_processor: Validating block with slot: 6295 +2024-09-30T06:48:44.422090Z INFO fork_choice_control::block_processor: Validating block with slot: 6296 +2024-09-30T06:48:44.422885Z INFO fork_choice_control::block_processor: Validating block with slot: 6297 +2024-09-30T06:48:44.423091Z INFO fork_choice_control::block_processor: Validating block with slot: 6298 +2024-09-30T06:48:44.423204Z INFO fork_choice_control::block_processor: Validating block with slot: 6289 +2024-09-30T06:48:44.423343Z INFO fork_choice_control::block_processor: Validating block with slot: 6299 +2024-09-30T06:48:44.426953Z INFO fork_choice_control::block_processor: Validating block with slot: 6290 +2024-09-30T06:48:44.427429Z INFO fork_choice_control::block_processor: Validating block with slot: 6291 +2024-09-30T06:48:44.428258Z INFO fork_choice_control::block_processor: Validating block with slot: 6292 +2024-09-30T06:48:44.429441Z INFO fork_choice_control::block_processor: Validating block with slot: 6293 +2024-09-30T06:48:44.455257Z INFO fork_choice_control::block_processor: Validating block with slot: 5845 +2024-09-30T06:48:44.455305Z INFO fork_choice_control::block_processor: Validating block with slot: 5847 +2024-09-30T06:48:44.455374Z INFO fork_choice_control::block_processor: Validating block with slot: 5850 +2024-09-30T06:48:44.455395Z INFO fork_choice_control::block_processor: Validating block with slot: 5852 +2024-09-30T06:48:44.455421Z INFO fork_choice_control::block_processor: Validating block with slot: 5849 +2024-09-30T06:48:44.456554Z INFO fork_choice_control::block_processor: Validating block with slot: 5853 +2024-09-30T06:48:44.456818Z INFO fork_choice_control::block_processor: Validating block with slot: 5854 +2024-09-30T06:48:44.458418Z INFO fork_choice_control::block_processor: Validating block with slot: 5855 +2024-09-30T06:48:44.458485Z INFO fork_choice_control::block_processor: Validating block with slot: 5846 +2024-09-30T06:48:44.458616Z INFO fork_choice_control::block_processor: Validating block with slot: 5848 +2024-09-30T06:48:44.458617Z INFO fork_choice_control::block_processor: Validating block with slot: 5851 +2024-09-30T06:48:44.460239Z INFO fork_choice_control::block_processor: Validating block with slot: 6301 +2024-09-30T06:48:44.460270Z INFO fork_choice_control::block_processor: Validating block with slot: 6300 +2024-09-30T06:48:44.464978Z INFO fork_choice_control::block_processor: Validating block with slot: 6302 +2024-09-30T06:48:44.464992Z INFO fork_choice_control::block_processor: Validating block with slot: 6303 +2024-09-30T06:48:44.497509Z INFO fork_choice_control::block_processor: Validating block with slot: 6305 +2024-09-30T06:48:44.497532Z INFO fork_choice_control::block_processor: Validating block with slot: 6308 +2024-09-30T06:48:44.497556Z INFO fork_choice_control::block_processor: Validating block with slot: 6307 +2024-09-30T06:48:44.497566Z INFO fork_choice_control::block_processor: Validating block with slot: 6309 +2024-09-30T06:48:44.497628Z INFO fork_choice_control::block_processor: Validating block with slot: 6311 +2024-09-30T06:48:44.497656Z INFO fork_choice_control::block_processor: Validating block with slot: 6304 +2024-09-30T06:48:44.497708Z INFO fork_choice_control::block_processor: Validating block with slot: 6306 +2024-09-30T06:48:44.497884Z INFO fork_choice_control::block_processor: Validating block with slot: 6310 +2024-09-30T06:48:44.499046Z INFO fork_choice_control::block_processor: Validating block with slot: 6312 +2024-09-30T06:48:44.499324Z INFO fork_choice_control::block_processor: Validating block with slot: 6314 +2024-09-30T06:48:44.500128Z INFO fork_choice_control::block_processor: Validating block with slot: 6315 +2024-09-30T06:48:44.563636Z INFO fork_choice_control::block_processor: Validating block with slot: 6316 +2024-09-30T06:48:44.563643Z INFO fork_choice_control::block_processor: Validating block with slot: 6318 +2024-09-30T06:48:44.563655Z INFO fork_choice_control::block_processor: Validating block with slot: 6319 +2024-09-30T06:48:44.563683Z INFO fork_choice_control::block_processor: Validating block with slot: 6320 +2024-09-30T06:48:44.563697Z INFO fork_choice_control::block_processor: Validating block with slot: 6317 +2024-09-30T06:48:44.563918Z INFO fork_choice_control::block_processor: Validating block with slot: 6321 +2024-09-30T06:48:44.563936Z INFO fork_choice_control::block_processor: Validating block with slot: 6323 +2024-09-30T06:48:44.564409Z INFO fork_choice_control::block_processor: Validating block with slot: 6322 +2024-09-30T06:48:44.564619Z INFO fork_choice_control::block_processor: Validating block with slot: 6324 +2024-09-30T06:48:44.564764Z INFO fork_choice_control::block_processor: Validating block with slot: 6325 +2024-09-30T06:48:44.565305Z INFO fork_choice_control::block_processor: Validating block with slot: 6326 +2024-09-30T06:48:44.567041Z INFO fork_choice_control::block_processor: Validating block with slot: 6329 +2024-09-30T06:48:44.567045Z INFO fork_choice_control::block_processor: Validating block with slot: 6330 +2024-09-30T06:48:44.567060Z INFO fork_choice_control::block_processor: Validating block with slot: 6332 +2024-09-30T06:48:44.567097Z INFO fork_choice_control::block_processor: Validating block with slot: 6333 +2024-09-30T06:48:44.567096Z INFO fork_choice_control::block_processor: Validating block with slot: 6327 +2024-09-30T06:48:44.567108Z INFO fork_choice_control::block_processor: Validating block with slot: 6334 +2024-09-30T06:48:44.568216Z INFO fork_choice_control::block_processor: Validating block with slot: 6331 +2024-09-30T06:48:44.604442Z INFO fork_choice_control::block_processor: Validating block with slot: 6335 +2024-09-30T06:48:45.004895Z INFO fork_choice_control::block_processor: Validating block with slot: 5793 +2024-09-30T06:48:45.004896Z INFO fork_choice_control::block_processor: Validating block with slot: 5794 +2024-09-30T06:48:45.009612Z INFO fork_choice_control::block_processor: Validating block with slot: 5795 +2024-09-30T06:48:45.011058Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x077614e217755918df1c696acc72c6af9907f0efffe0e0904ff7307b21603c08, slot: 5793 +2024-09-30T06:48:45.023006Z INFO fork_choice_control::block_processor: Validating block with slot: 5796 +2024-09-30T06:48:45.040024Z INFO fork_choice_control::block_processor: Validating block with slot: 5798 +2024-09-30T06:48:45.042114Z INFO fork_choice_control::block_processor: Validating block with slot: 5799 +2024-09-30T06:48:45.078062Z INFO fork_choice_control::block_processor: Validating block with slot: 5800 +2024-09-30T06:48:45.099450Z INFO fork_choice_control::block_processor: Validating block with slot: 5801 +2024-09-30T06:48:45.099550Z INFO fork_choice_control::block_processor: Validating block with slot: 5802 +2024-09-30T06:48:45.101665Z INFO fork_choice_control::block_processor: Validating block with slot: 5803 +2024-09-30T06:48:45.111688Z INFO fork_choice_control::block_processor: Validating block with slot: 5804 +2024-09-30T06:48:45.121427Z INFO fork_choice_control::block_processor: Validating block with slot: 5805 +2024-09-30T06:48:45.145354Z INFO fork_choice_control::block_processor: Validating block with slot: 5806 +2024-09-30T06:48:45.158555Z INFO fork_choice_control::block_processor: Validating block with slot: 5807 +2024-09-30T06:48:45.158593Z INFO fork_choice_control::block_processor: Validating block with slot: 5808 +2024-09-30T06:48:45.167656Z INFO fork_choice_control::block_processor: Validating block with slot: 5809 +2024-09-30T06:48:45.167706Z INFO fork_choice_control::block_processor: Validating block with slot: 5810 +2024-09-30T06:48:45.187141Z INFO fork_choice_control::block_processor: Validating block with slot: 5811 +2024-09-30T06:48:45.194716Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5793 +2024-09-30T06:48:45.194735Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5793 +2024-09-30T06:48:45.197013Z INFO fork_choice_control::block_processor: Validating block with slot: 5813 +2024-09-30T06:48:45.197030Z INFO fork_choice_control::block_processor: Validating block with slot: 5812 +2024-09-30T06:48:45.203339Z INFO fork_choice_control::block_processor: Validating block with slot: 5814 +2024-09-30T06:48:45.207468Z INFO fork_choice_control::block_processor: Validating block with slot: 5794 +2024-09-30T06:48:45.209973Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x25937f79f17e11de2cced6284a15e7e38660b578930e6960a19b75aaf3fb19d0, slot: 5794 +2024-09-30T06:48:45.210380Z INFO fork_choice_control::block_processor: Validating block with slot: 5816 +2024-09-30T06:48:45.220979Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5794 +2024-09-30T06:48:45.221002Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5794 +2024-09-30T06:48:45.224147Z INFO fork_choice_control::block_processor: Validating block with slot: 5817 +2024-09-30T06:48:45.233882Z INFO fork_choice_control::block_processor: Validating block with slot: 5795 +2024-09-30T06:48:45.236618Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc57d9cdea7f1720639a2aa390a3d75b8980bde22a7d384a684d7241f4db83b83, slot: 5795 +2024-09-30T06:48:45.248282Z INFO fork_choice_control::block_processor: Validating block with slot: 5821 +2024-09-30T06:48:45.248329Z INFO fork_choice_control::block_processor: Validating block with slot: 5818 +2024-09-30T06:48:45.248324Z INFO fork_choice_control::block_processor: Validating block with slot: 5819 +2024-09-30T06:48:45.248336Z INFO fork_choice_control::block_processor: Validating block with slot: 5820 +2024-09-30T06:48:45.249561Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5795 +2024-09-30T06:48:45.249572Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5795 +2024-09-30T06:48:45.251428Z INFO fork_choice_control::block_processor: Validating block with slot: 5822 +2024-09-30T06:48:45.262699Z INFO fork_choice_control::block_processor: Validating block with slot: 5796 +2024-09-30T06:48:45.265317Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x45cf294a3517d2fa11b8b0bb2be5de5186ee2d686733aee5b4e198ac9f686a84, slot: 5796 +2024-09-30T06:48:45.276089Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5796 +2024-09-30T06:48:45.276109Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5796 +2024-09-30T06:48:45.287304Z INFO fork_choice_control::block_processor: Validating block with slot: 5823 +2024-09-30T06:48:45.289673Z INFO fork_choice_control::block_processor: Validating block with slot: 5798 +2024-09-30T06:48:45.292167Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0f3c48e9da690624de072f2c231affbfda5f2e1dc67a3e433082c2571153201d, slot: 5798 +2024-09-30T06:48:45.307021Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5798 +2024-09-30T06:48:45.307041Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5798 +2024-09-30T06:48:45.320976Z INFO fork_choice_control::block_processor: Validating block with slot: 5799 +2024-09-30T06:48:45.325315Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5e492e96a30d2a136c96960e01f1f8bc1e74f8732ee2feb79f0352fcf1951a70, slot: 5799 +2024-09-30T06:48:45.359557Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5799 +2024-09-30T06:48:45.359604Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5799 +2024-09-30T06:48:45.382369Z INFO fork_choice_control::block_processor: Validating block with slot: 5800 +2024-09-30T06:48:45.383636Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7a1e91ae26753404aff17bea4f0a6279b1bc740077e99bf524e552a1b74362d7, slot: 5800 +2024-09-30T06:48:45.391954Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5800 +2024-09-30T06:48:45.391973Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5800 +2024-09-30T06:48:45.409063Z INFO fork_choice_control::block_processor: Validating block with slot: 5801 +2024-09-30T06:48:45.413153Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcf29d56059f5790d7c452bf95015dc33a7c6b6ca7f4a31c7cd8ae44051f7ecb5, slot: 5801 +2024-09-30T06:48:45.437794Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5801 +2024-09-30T06:48:45.437813Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5801 +2024-09-30T06:48:45.453239Z INFO fork_choice_control::block_processor: Validating block with slot: 5802 +2024-09-30T06:48:45.455343Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x724a773a4c49001fac64ee606939ed0a211ae62b465e3d0ec77cb9362f3f86bb, slot: 5802 +2024-09-30T06:48:45.465197Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5802 +2024-09-30T06:48:45.465210Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5802 +2024-09-30T06:48:45.480990Z INFO fork_choice_control::block_processor: Validating block with slot: 5803 +2024-09-30T06:48:45.482365Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9afbe3538ce4f584595ddc5ab674c8ad81cff62b2f4bbbae40c7daa9b44e135c, slot: 5803 +2024-09-30T06:48:45.490917Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5803 +2024-09-30T06:48:45.490937Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5803 +2024-09-30T06:48:45.506346Z INFO fork_choice_control::block_processor: Validating block with slot: 5804 +2024-09-30T06:48:45.507613Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa2da510c0c6b62929091e8316c3923c0562f357a2731475aa5b36df78e4e1c3e, slot: 5804 +2024-09-30T06:48:45.514202Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5804 +2024-09-30T06:48:45.514215Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5804 +2024-09-30T06:48:45.529351Z INFO fork_choice_control::block_processor: Validating block with slot: 5805 +2024-09-30T06:48:45.530910Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5835e6fff997493f82fdf63b4fab920ee9f0e1021d0d7b68e58f06597c92a8b2, slot: 5805 +2024-09-30T06:48:45.538409Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5805 +2024-09-30T06:48:45.538428Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5805 +2024-09-30T06:48:45.553773Z INFO fork_choice_control::block_processor: Validating block with slot: 5806 +2024-09-30T06:48:45.558854Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7f64adc76c9021ab48faa5996efbf0a7023557b2a6f4c98e150edb36e1505115, slot: 5806 +2024-09-30T06:48:45.575332Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5806 +2024-09-30T06:48:45.575355Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5806 +2024-09-30T06:48:45.591169Z INFO fork_choice_control::block_processor: Validating block with slot: 5807 +2024-09-30T06:48:45.592685Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd45ab898e24ef2af63974740af12c33fb3b42c8b48b1d570ad3008dd41fb80df, slot: 5807 +2024-09-30T06:48:45.599669Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5807 +2024-09-30T06:48:45.599685Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5807 +2024-09-30T06:48:45.615876Z INFO fork_choice_control::block_processor: Validating block with slot: 5808 +2024-09-30T06:48:45.617400Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x58dfbc31d8200367d540651c01286f944bc3b99cabfb18fb7d6c4bc34fe4969e, slot: 5808 +2024-09-30T06:48:45.624361Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5808 +2024-09-30T06:48:45.624384Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5808 +2024-09-30T06:48:45.640785Z INFO fork_choice_control::block_processor: Validating block with slot: 5809 +2024-09-30T06:48:45.642617Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc583b81ae4da0a170a69b3e13c4b217ba598c0792cd9eb5729bc973efc0a1ab8, slot: 5809 +2024-09-30T06:48:45.650733Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5809 +2024-09-30T06:48:45.650747Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5809 +2024-09-30T06:48:45.667157Z INFO fork_choice_control::block_processor: Validating block with slot: 5810 +2024-09-30T06:48:45.668126Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9140f211d6042813fb0670e18374e7fcf52d93fb283db3f93a7777a51aa639fd, slot: 5810 +2024-09-30T06:48:45.675800Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5810 +2024-09-30T06:48:45.675817Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5810 +2024-09-30T06:48:45.692566Z INFO fork_choice_control::block_processor: Validating block with slot: 5811 +2024-09-30T06:48:45.694474Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x18a285b3bf8d064e782fdb24525d7e565e17763188f53922b5185b6bf45fc3e4, slot: 5811 +2024-09-30T06:48:45.702526Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5811 +2024-09-30T06:48:45.702546Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5811 +2024-09-30T06:48:45.719640Z INFO fork_choice_control::block_processor: Validating block with slot: 5812 +2024-09-30T06:48:45.720894Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x20207df3fe5579f68f95de667f4e4b6150ca0a103409ca4c1a3263a449fb3e92, slot: 5812 +2024-09-30T06:48:45.727222Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5812 +2024-09-30T06:48:45.727236Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5812 +2024-09-30T06:48:45.744004Z INFO fork_choice_control::block_processor: Validating block with slot: 5813 +2024-09-30T06:48:45.744968Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcd1cb61ce0d81df396baedc630c09b4974024c6d9a72c581565921f8e61d429b, slot: 5813 +2024-09-30T06:48:45.750362Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5813 +2024-09-30T06:48:45.750374Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5813 +2024-09-30T06:48:45.767285Z INFO fork_choice_control::block_processor: Validating block with slot: 5814 +2024-09-30T06:48:45.770353Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5e6404676133a04eba98afdc2e82f448b8ae0540cf63592959141a66703ffa13, slot: 5814 +2024-09-30T06:48:45.781325Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5814 +2024-09-30T06:48:45.781337Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5814 +2024-09-30T06:48:45.798811Z INFO fork_choice_control::block_processor: Validating block with slot: 5816 +2024-09-30T06:48:45.801847Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd108f9aba6340de32dce48bf847290dcaf4d7eac26bb881a02577283e82613fa, slot: 5816 +2024-09-30T06:48:45.814871Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5816 +2024-09-30T06:48:45.814895Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5816 +2024-09-30T06:48:45.884426Z INFO fork_choice_control::block_processor: Validating block with slot: 5817 +2024-09-30T06:48:45.884430Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 180, root: 0xae10dfd39006b12776272b0b5bb78d1cb3e363ff95c4f97d969b32ae72de8054, head slot: 5816, head root: 0xd108f9aba6340de32dce48bf847290dcaf4d7eac26bb881a02577283e82613fa) +2024-09-30T06:48:45.885828Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd305318e842a6ed44f7775e65823d4e21d6857b8d1fddcec9c44299db93efd9b, slot: 5817 +2024-09-30T06:48:45.892639Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5817 +2024-09-30T06:48:45.892657Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5817 +2024-09-30T06:48:45.910378Z INFO fork_choice_control::block_processor: Validating block with slot: 5818 +2024-09-30T06:48:45.912017Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe1fedfb9193ed986ef9bd284ef26eab4f32944f1fefd242d133ab0eaecd8b7e4, slot: 5818 +2024-09-30T06:48:45.919391Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5818 +2024-09-30T06:48:45.919414Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5818 +2024-09-30T06:48:45.937781Z INFO fork_choice_control::block_processor: Validating block with slot: 5819 +2024-09-30T06:48:45.939557Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x39bde4798271f55500a006c1c7ac159ff4c77c0fe87158e266252c0fbf6da562, slot: 5819 +2024-09-30T06:48:45.947179Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5819 +2024-09-30T06:48:45.947193Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5819 +2024-09-30T06:48:45.965862Z INFO fork_choice_control::block_processor: Validating block with slot: 5820 +2024-09-30T06:48:45.967244Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xda67085afd4d6d8ea52f95802eb2cb3b84f7084df00cdc0f85112a10868ae304, slot: 5820 +2024-09-30T06:48:45.974667Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5820 +2024-09-30T06:48:45.974688Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5820 +2024-09-30T06:48:45.993374Z INFO fork_choice_control::block_processor: Validating block with slot: 5821 +2024-09-30T06:48:45.994604Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x62e495b63e2e5974f14c9837bc385ecc744f7cdf0598161665f7f4f3ccb1d316, slot: 5821 +2024-09-30T06:48:46.000702Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5821 +2024-09-30T06:48:46.000713Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5821 +2024-09-30T06:48:46.019754Z INFO fork_choice_control::block_processor: Validating block with slot: 5822 +2024-09-30T06:48:46.020872Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2e986f00750e8b495473fe5e8fe3008e41fe51929f9190c1bd42c611967778ee, slot: 5822 +2024-09-30T06:48:46.026843Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5822 +2024-09-30T06:48:46.026863Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5822 +2024-09-30T06:48:46.045902Z INFO fork_choice_control::block_processor: Validating block with slot: 5823 +2024-09-30T06:48:46.047275Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfb82c2b621cf3c8e3ebae9544ffeceec60bf6ebcb742d7974ad4336335d301a9, slot: 5823 +2024-09-30T06:48:46.053940Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5823 +2024-09-30T06:48:46.053965Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5823 +2024-09-30T06:48:46.073228Z INFO fork_choice_control::block_processor: Validating block with slot: 5824 +2024-09-30T06:48:46.074339Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5fcbf7d5497d8564be346850e3a5082ae6c96c91a7a5770762a001815aca1155, slot: 5824 +2024-09-30T06:48:46.174436Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5824 +2024-09-30T06:48:46.174459Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5824 +2024-09-30T06:48:46.187180Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5824) +2024-09-30T06:48:46.187326Z INFO fork_choice_control::block_processor: Validating block with slot: 5825 +2024-09-30T06:48:46.188579Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0c4b59b7c4a6829bd7d9b2ea56e983e1746aa7ac87046d2ba7f40a4781bb0c04, slot: 5825 +2024-09-30T06:48:46.262578Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5825 +2024-09-30T06:48:46.262600Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5825 +2024-09-30T06:48:46.275428Z INFO fork_choice_control::block_processor: Validating block with slot: 5826 +2024-09-30T06:48:46.278426Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8f7370daf64d151031012d7dca672d3ae7ce27feab15225519cbe58d819a0959, slot: 5826 +2024-09-30T06:48:46.292632Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5826 +2024-09-30T06:48:46.292654Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5826 +2024-09-30T06:48:46.306251Z INFO fork_choice_control::block_processor: Validating block with slot: 5827 +2024-09-30T06:48:46.307349Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x67e013c9bae4b5d89aa2cabe9095a2395200301e30901b42365740cabd300d41, slot: 5827 +2024-09-30T06:48:46.313575Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5827 +2024-09-30T06:48:46.313586Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5827 +2024-09-30T06:48:46.327285Z INFO fork_choice_control::block_processor: Validating block with slot: 5828 +2024-09-30T06:48:46.328525Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbdd816b42c98bfd715e230001b7b1acf462798a5d71341200c5a9f0d39cc7197, slot: 5828 +2024-09-30T06:48:46.336333Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5828 +2024-09-30T06:48:46.336352Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5828 +2024-09-30T06:48:46.350460Z INFO fork_choice_control::block_processor: Validating block with slot: 5829 +2024-09-30T06:48:46.352004Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0dfbb6cf49f0374f2d6cb02dabf9f869ba4cb58b994dc11db4ae952dbd53024b, slot: 5829 +2024-09-30T06:48:46.360951Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5829 +2024-09-30T06:48:46.360970Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5829 +2024-09-30T06:48:46.375468Z INFO fork_choice_control::block_processor: Validating block with slot: 5830 +2024-09-30T06:48:46.376456Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcd391ca0bc6f053906ae9ed52485893fa0d6fd32e0f120aeff9185dec545dcd9, slot: 5830 +2024-09-30T06:48:46.382349Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5830 +2024-09-30T06:48:46.382365Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5830 +2024-09-30T06:48:46.396674Z INFO fork_choice_control::block_processor: Validating block with slot: 5831 +2024-09-30T06:48:46.400407Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x676beae23935650b11164b1d57b5ebcabd35deca22dcdf020b8d2e6fa2b99a17, slot: 5831 +2024-09-30T06:48:46.413737Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5831 +2024-09-30T06:48:46.413758Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5831 +2024-09-30T06:48:46.428756Z INFO fork_choice_control::block_processor: Validating block with slot: 5832 +2024-09-30T06:48:46.429872Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x59b89b838ffe3e497305e4af7bdfc5fca7f7ab651d739cb8218044f8ce871c9b, slot: 5832 +2024-09-30T06:48:46.437405Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5832 +2024-09-30T06:48:46.437430Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5832 +2024-09-30T06:48:46.452638Z INFO fork_choice_control::block_processor: Validating block with slot: 5833 +2024-09-30T06:48:46.453943Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xee31cd3b8e94d4653b5f92b84112c03b7af97cd4aef7f23bae051c47129e821d, slot: 5833 +2024-09-30T06:48:46.460766Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5833 +2024-09-30T06:48:46.460781Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5833 +2024-09-30T06:48:46.476813Z INFO fork_choice_control::block_processor: Validating block with slot: 5834 +2024-09-30T06:48:46.479497Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa4330f72eac2364500aa157beba3192ba53bd710f911d01ec2b775b7bb4e6bf9, slot: 5834 +2024-09-30T06:48:46.491066Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5834 +2024-09-30T06:48:46.491087Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5834 +2024-09-30T06:48:46.507244Z INFO fork_choice_control::block_processor: Validating block with slot: 5835 +2024-09-30T06:48:46.508367Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x299ca2c8a8682ad306785af4bac2b220463d717a4fb2ede1f413ab841b5a6e7a, slot: 5835 +2024-09-30T06:48:46.515151Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5835 +2024-09-30T06:48:46.515166Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5835 +2024-09-30T06:48:46.531124Z INFO fork_choice_control::block_processor: Validating block with slot: 5836 +2024-09-30T06:48:46.532352Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd11c044303914cc5651a47f64a11b88b5931090fade1c4e24b89be9ca534056e, slot: 5836 +2024-09-30T06:48:46.539200Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5836 +2024-09-30T06:48:46.539224Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5836 +2024-09-30T06:48:46.555657Z INFO fork_choice_control::block_processor: Validating block with slot: 5837 +2024-09-30T06:48:46.557031Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb6cf0a5163583089cb61863bb552db171a4f0f07ce8793b3f0b7f0bcf9a4c086, slot: 5837 +2024-09-30T06:48:46.563621Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5837 +2024-09-30T06:48:46.563633Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5837 +2024-09-30T06:48:46.579835Z INFO fork_choice_control::block_processor: Validating block with slot: 5838 +2024-09-30T06:48:46.581192Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9d951539afbd9d6992cde2947b5aadfeafe588df0fa6d76ac6e680d1348d842b, slot: 5838 +2024-09-30T06:48:46.588853Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5838 +2024-09-30T06:48:46.588876Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5838 +2024-09-30T06:48:46.605403Z INFO fork_choice_control::block_processor: Validating block with slot: 5839 +2024-09-30T06:48:46.606964Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd0d28bdf8555857edb2d0ebfa6e0e3f5290a5c11b3aa473682d5aed1dfd81ff7, slot: 5839 +2024-09-30T06:48:46.614279Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5839 +2024-09-30T06:48:46.614293Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5839 +2024-09-30T06:48:46.631131Z INFO fork_choice_control::block_processor: Validating block with slot: 5840 +2024-09-30T06:48:46.632087Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbfa6604b20120e09ec9dce3de29508d4019c3e14e188224e4dfed1abe6e7efeb, slot: 5840 +2024-09-30T06:48:46.637810Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5840 +2024-09-30T06:48:46.637829Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5840 +2024-09-30T06:48:46.655310Z INFO fork_choice_control::block_processor: Validating block with slot: 5841 +2024-09-30T06:48:46.657350Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbad9d59c759943879029b514640b4f3fc533ab6688feb4ba80049cc3a7d6a30b, slot: 5841 +2024-09-30T06:48:46.665726Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5841 +2024-09-30T06:48:46.665738Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5841 +2024-09-30T06:48:46.682933Z INFO fork_choice_control::block_processor: Validating block with slot: 5842 +2024-09-30T06:48:46.684035Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5f16cb310096357a3b710e09a5ea6659bc5102f6ed1c88595769676bccbaed67, slot: 5842 +2024-09-30T06:48:46.690290Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5842 +2024-09-30T06:48:46.690312Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5842 +2024-09-30T06:48:46.707778Z INFO fork_choice_control::block_processor: Validating block with slot: 5843 +2024-09-30T06:48:46.708850Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x59f66d9d6f7c8fe000fb30fb91b18d872d665f2da6c41caa45c0e398a280dfa1, slot: 5843 +2024-09-30T06:48:46.714773Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5843 +2024-09-30T06:48:46.714788Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5843 +2024-09-30T06:48:46.732165Z INFO fork_choice_control::block_processor: Validating block with slot: 5844 +2024-09-30T06:48:46.733400Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x05a175a05206417d2a3ac26ca3bb79900c5415d31c99c4c2f62d22f11231a9b6, slot: 5844 +2024-09-30T06:48:46.739991Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5844 +2024-09-30T06:48:46.740011Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5844 +2024-09-30T06:48:46.757844Z INFO fork_choice_control::block_processor: Validating block with slot: 5845 +2024-09-30T06:48:46.759356Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa4d2c3f5b961e570354dcfab1ce859da12f520da78e089eb3f4d9adbd5ff94ed, slot: 5845 +2024-09-30T06:48:46.766280Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5845 +2024-09-30T06:48:46.766293Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5845 +2024-09-30T06:48:46.784171Z INFO fork_choice_control::block_processor: Validating block with slot: 5846 +2024-09-30T06:48:46.785466Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7ab89e9c7950dc9dd9e3f0f7ab6661164357caa09be65523b2c43cb6741cf986, slot: 5846 +2024-09-30T06:48:46.791920Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5846 +2024-09-30T06:48:46.791939Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5846 +2024-09-30T06:48:46.810026Z INFO fork_choice_control::block_processor: Validating block with slot: 5847 +2024-09-30T06:48:46.811286Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3a029aa995d3fa18906942cb66b384a4cae82dc28978b4f5ea2ca1f8eba70490, slot: 5847 +2024-09-30T06:48:46.817900Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5847 +2024-09-30T06:48:46.817913Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5847 +2024-09-30T06:48:46.842587Z INFO fork_choice_control::block_processor: Validating block with slot: 5848 +2024-09-30T06:48:46.842613Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 181, root: 0xb213d3c4c7a791ac598822cf1d60dc1725164c030277e9b3c2e21fef78b1707b, head slot: 5847, head root: 0x3a029aa995d3fa18906942cb66b384a4cae82dc28978b4f5ea2ca1f8eba70490) +2024-09-30T06:48:46.843563Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x109ebe042d4591863360e700849971e0e6837dfc1ee3a5ec74a1eff68e938c8b, slot: 5848 +2024-09-30T06:48:46.849053Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5848 +2024-09-30T06:48:46.849067Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5848 +2024-09-30T06:48:46.867605Z INFO fork_choice_control::block_processor: Validating block with slot: 5849 +2024-09-30T06:48:46.868977Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x69d27a5efad0f1555b8601bb4db488669d1a090e4edf3530731536168c1d91f4, slot: 5849 +2024-09-30T06:48:46.875620Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5849 +2024-09-30T06:48:46.875637Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5849 +2024-09-30T06:48:46.894395Z INFO fork_choice_control::block_processor: Validating block with slot: 5850 +2024-09-30T06:48:46.895367Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf19304a465e43192f00980105f475b5f19c58bc4c4a259d33ce983b21aaba5c2, slot: 5850 +2024-09-30T06:48:46.900932Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5850 +2024-09-30T06:48:46.900945Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5850 +2024-09-30T06:48:46.919740Z INFO fork_choice_control::block_processor: Validating block with slot: 5851 +2024-09-30T06:48:46.920722Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xba87f4963db75c03c4b59982624deffd94f63c6acaf86f3ee4eacf253cfcdfe7, slot: 5851 +2024-09-30T06:48:46.926242Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5851 +2024-09-30T06:48:46.926252Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5851 +2024-09-30T06:48:46.945249Z INFO fork_choice_control::block_processor: Validating block with slot: 5852 +2024-09-30T06:48:46.946372Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xccf05ea5c56e844ff334d49eb4be998efdadef8efe11eb48d791811fc80264e8, slot: 5852 +2024-09-30T06:48:46.952320Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5852 +2024-09-30T06:48:46.952339Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5852 +2024-09-30T06:48:46.971677Z INFO fork_choice_control::block_processor: Validating block with slot: 5853 +2024-09-30T06:48:46.973087Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x28da6813eccb9bda70fb706197c78ae2d73aca3c78b21c2cbffee4d2f5a82cc5, slot: 5853 +2024-09-30T06:48:46.980100Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5853 +2024-09-30T06:48:46.980116Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5853 +2024-09-30T06:48:46.999608Z INFO fork_choice_control::block_processor: Validating block with slot: 5854 +2024-09-30T06:48:47.000571Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb2c3df4f1fd9d90ac1fd961dd321dbbfae72a992675eda75144ad5bbc8d4a7ac, slot: 5854 +2024-09-30T06:48:47.006425Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5854 +2024-09-30T06:48:47.006443Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5854 +2024-09-30T06:48:47.026140Z INFO fork_choice_control::block_processor: Validating block with slot: 5855 +2024-09-30T06:48:47.027231Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa842b7e4a431f3618e1117bcf9da7d3f6eca54cd3ede9f199b1f55b448cd9fbc, slot: 5855 +2024-09-30T06:48:47.033523Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5855 +2024-09-30T06:48:47.033537Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5855 +2024-09-30T06:48:47.053218Z INFO fork_choice_control::block_processor: Validating block with slot: 5857 +2024-09-30T06:48:47.056760Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xba4c99d583eb4f81024d223c5663a0d49492c9989733f8b676bac690b765dc2d, slot: 5857 +2024-09-30T06:48:47.233787Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5857 +2024-09-30T06:48:47.233812Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5857 +2024-09-30T06:48:47.244668Z INFO fork_choice_control::block_processor: Validating block with slot: 5858 +2024-09-30T06:48:47.246183Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1b015cf5a245b2f3eabeeccde9d2771cd62ca10eaad0edd058f4641ed69a5b38, slot: 5858 +2024-09-30T06:48:47.253855Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5858 +2024-09-30T06:48:47.253879Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5858 +2024-09-30T06:48:47.265136Z INFO fork_choice_control::block_processor: Validating block with slot: 5859 +2024-09-30T06:48:47.267645Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7e990c909067b80acb241f62a37ae8d337c34bccf7a39bcb9958b001149c91fa, slot: 5859 +2024-09-30T06:48:47.278623Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5859 +2024-09-30T06:48:47.278644Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5859 +2024-09-30T06:48:47.290237Z INFO fork_choice_control::block_processor: Validating block with slot: 5860 +2024-09-30T06:48:47.291206Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x10386cea15e2876566c0bf7ea090f18da47df8dd9dd081a1357501dfbc73d414, slot: 5860 +2024-09-30T06:48:47.297474Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5860 +2024-09-30T06:48:47.297486Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5860 +2024-09-30T06:48:47.309208Z INFO fork_choice_control::block_processor: Validating block with slot: 5861 +2024-09-30T06:48:47.310724Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xda3b3bbaf12f2dd48a1b8731d65ca3aaba20282e1a3464d9a037cde43574844f, slot: 5861 +2024-09-30T06:48:47.332923Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5861 +2024-09-30T06:48:47.332944Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5861 +2024-09-30T06:48:47.346276Z INFO fork_choice_control::block_processor: Validating block with slot: 5862 +2024-09-30T06:48:47.347508Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x40dce623cbe41848bd88d159db1cd7067874cba5437bb1d8935927cae6e555f7, slot: 5862 +2024-09-30T06:48:47.353828Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5862 +2024-09-30T06:48:47.353850Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5862 +2024-09-30T06:48:47.366493Z INFO fork_choice_control::block_processor: Validating block with slot: 5863 +2024-09-30T06:48:47.367831Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3f203d81e83675026b1b5b57d59e94ead8d81f0549895fe6a6eaa57051b0c90c, slot: 5863 +2024-09-30T06:48:47.373997Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5863 +2024-09-30T06:48:47.374017Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5863 +2024-09-30T06:48:47.386340Z INFO fork_choice_control::block_processor: Validating block with slot: 5864 +2024-09-30T06:48:47.387615Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3638f3092b558b662f555de0b216232aa5f6042e2b269ce28f58dafee85486b3, slot: 5864 +2024-09-30T06:48:47.394670Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5864 +2024-09-30T06:48:47.394687Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5864 +2024-09-30T06:48:47.407407Z INFO fork_choice_control::block_processor: Validating block with slot: 5865 +2024-09-30T06:48:47.408388Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8fca38d2ebd874df4a2d1310c3335610bc7772a0f77a50fc85c0442cd9f6d70f, slot: 5865 +2024-09-30T06:48:47.414785Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5865 +2024-09-30T06:48:47.414799Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5865 +2024-09-30T06:48:47.427722Z INFO fork_choice_control::block_processor: Validating block with slot: 5866 +2024-09-30T06:48:47.430662Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x020943c851bf9e6415c61258f38f52700ead44cfbfc1a765acb32343a3b27e8f, slot: 5866 +2024-09-30T06:48:47.442649Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5866 +2024-09-30T06:48:47.442670Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5866 +2024-09-30T06:48:47.456219Z INFO fork_choice_control::block_processor: Validating block with slot: 5867 +2024-09-30T06:48:47.457332Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1d96cc2fba16d89881e60c12a42c49f1ad862726e842265415cd868154475398, slot: 5867 +2024-09-30T06:48:47.463755Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5867 +2024-09-30T06:48:47.463772Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5867 +2024-09-30T06:48:47.477618Z INFO fork_choice_control::block_processor: Validating block with slot: 5868 +2024-09-30T06:48:47.478605Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc157a413f9daa9d721f39b92f1fac19a44ea27d7d7085c5a7fe07ec8609fb981, slot: 5868 +2024-09-30T06:48:47.484195Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5868 +2024-09-30T06:48:47.484208Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5868 +2024-09-30T06:48:47.497567Z INFO fork_choice_control::block_processor: Validating block with slot: 5869 +2024-09-30T06:48:47.498811Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x59bfc7d05b3026324ed3cacc099612b34ceedb9bc249d1b723be8764a666aa14, slot: 5869 +2024-09-30T06:48:47.505258Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5869 +2024-09-30T06:48:47.505279Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5869 +2024-09-30T06:48:47.518866Z INFO fork_choice_control::block_processor: Validating block with slot: 5870 +2024-09-30T06:48:47.520538Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe27ed024576d4627278086905208f9fe06c0449322076bc0f6d2efc72bbfad5f, slot: 5870 +2024-09-30T06:48:47.527797Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5870 +2024-09-30T06:48:47.527810Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5870 +2024-09-30T06:48:47.541728Z INFO fork_choice_control::block_processor: Validating block with slot: 5871 +2024-09-30T06:48:47.542697Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8765d1a1be45738b5b4d16ff3aefa05810ce857c736c751a69c6b68a36b77039, slot: 5871 +2024-09-30T06:48:47.549023Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5871 +2024-09-30T06:48:47.549041Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5871 +2024-09-30T06:48:47.563474Z INFO fork_choice_control::block_processor: Validating block with slot: 5872 +2024-09-30T06:48:47.564464Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x89bac0945d639a76e01c1a5ce34b257e51b86e270475f396923f76a5802112c1, slot: 5872 +2024-09-30T06:48:47.571269Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5872 +2024-09-30T06:48:47.571289Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5872 +2024-09-30T06:48:47.586122Z INFO fork_choice_control::block_processor: Validating block with slot: 5873 +2024-09-30T06:48:47.587710Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0044b1fdce2b2c756c21500a33d0ff57411ee2f2c7ee97a476149f8106bd17b6, slot: 5873 +2024-09-30T06:48:47.594395Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5873 +2024-09-30T06:48:47.594407Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5873 +2024-09-30T06:48:47.608967Z INFO fork_choice_control::block_processor: Validating block with slot: 5874 +2024-09-30T06:48:47.609957Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5e02917dd90ecf6209ef578dbb6f340e364e2ed4423665b0ed0578b9aa0392c0, slot: 5874 +2024-09-30T06:48:47.616184Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5874 +2024-09-30T06:48:47.616199Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5874 +2024-09-30T06:48:47.630782Z INFO fork_choice_control::block_processor: Validating block with slot: 5875 +2024-09-30T06:48:47.631874Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x350839b34cb7cfd183782df0cf1060e117cac3f46a1017a0b8a0b52d78809c35, slot: 5875 +2024-09-30T06:48:47.637948Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5875 +2024-09-30T06:48:47.637968Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5875 +2024-09-30T06:48:47.652935Z INFO fork_choice_control::block_processor: Validating block with slot: 5877 +2024-09-30T06:48:47.654733Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf174badd1680600e62a4a09d1155b9d6da45bd2982e258749a968a187579acd9, slot: 5877 +2024-09-30T06:48:47.664539Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5877 +2024-09-30T06:48:47.664552Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5877 +2024-09-30T06:48:47.679968Z INFO fork_choice_control::block_processor: Validating block with slot: 5880 +2024-09-30T06:48:47.682710Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x648c1499110eac776a7ff242adcf95edefbad2b0b57b0891653de1ed5689db8a, slot: 5880 +2024-09-30T06:48:47.695823Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5880 +2024-09-30T06:48:47.695845Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5880 +2024-09-30T06:48:47.766365Z INFO fork_choice_control::block_processor: Validating block with slot: 5881 +2024-09-30T06:48:47.766401Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 182, root: 0x5fcbf7d5497d8564be346850e3a5082ae6c96c91a7a5770762a001815aca1155, head slot: 5880, head root: 0x648c1499110eac776a7ff242adcf95edefbad2b0b57b0891653de1ed5689db8a) +2024-09-30T06:48:47.768206Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x939bfc2421fe2e2d782e24b9ffa3f63e6e64ae3f969d79a446487839931dc544, slot: 5881 +2024-09-30T06:48:47.776951Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5881 +2024-09-30T06:48:47.776970Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5881 +2024-09-30T06:48:47.793341Z INFO fork_choice_control::block_processor: Validating block with slot: 5882 +2024-09-30T06:48:47.795454Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xec32648d00599ce63e55b324ca974b7872a7c53640bd221b35fd6c8a92902f07, slot: 5882 +2024-09-30T06:48:47.807969Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5882 +2024-09-30T06:48:47.807991Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5882 +2024-09-30T06:48:47.825138Z INFO fork_choice_control::block_processor: Validating block with slot: 5883 +2024-09-30T06:48:47.826217Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1a4c7692d19b8b96813369d4b38a883f59db924f6e37025708bc14bab3ebad34, slot: 5883 +2024-09-30T06:48:47.832395Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5883 +2024-09-30T06:48:47.832410Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5883 +2024-09-30T06:48:47.848988Z INFO fork_choice_control::block_processor: Validating block with slot: 5884 +2024-09-30T06:48:47.850262Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6475f20d413eb5ad06dd2c81d364f479b0d7b7426ca3bf1eb5709bf6e6053d00, slot: 5884 +2024-09-30T06:48:47.857647Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5884 +2024-09-30T06:48:47.857666Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5884 +2024-09-30T06:48:47.874616Z INFO fork_choice_control::block_processor: Validating block with slot: 5885 +2024-09-30T06:48:47.875602Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6fdf88f216e2ffa8ce48a37f37e3c262db7b36ab933d31b99f89e1c7ba4f6c8f, slot: 5885 +2024-09-30T06:48:47.881863Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5885 +2024-09-30T06:48:47.881880Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5885 +2024-09-30T06:48:47.897513Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 5824 +2024-09-30T06:48:47.899122Z INFO fork_choice_control::block_processor: Validating block with slot: 5886 +2024-09-30T06:48:47.900501Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4e08346a5b8ea57150978097ba543697d953d3211fcc8d4de71de7d15ac0a34b, slot: 5886 +2024-09-30T06:48:47.908329Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5886 +2024-09-30T06:48:47.908348Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5886 +2024-09-30T06:48:47.925641Z INFO fork_choice_control::block_processor: Validating block with slot: 5887 +2024-09-30T06:48:47.926680Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7f471fa8d2ec9939de07d873f9a0c02cbe6f37038c9b0cd78f7da561d2c1eb66, slot: 5887 +2024-09-30T06:48:47.933084Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5887 +2024-09-30T06:48:47.933101Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5887 +2024-09-30T06:48:47.950801Z INFO fork_choice_control::block_processor: Validating block with slot: 5888 +2024-09-30T06:48:47.952501Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcdfd3c1d8a3601a6fb295213c00748e1db71ce6fa7de73a2844254dbc22f3174, slot: 5888 +2024-09-30T06:48:48.053266Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5888 +2024-09-30T06:48:48.053291Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5888 +2024-09-30T06:48:48.063356Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5888) +2024-09-30T06:48:48.063457Z INFO fork_choice_control::block_processor: Validating block with slot: 5889 +2024-09-30T06:48:48.064548Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbb1483d7e9794af128c272693d38cb0fe55851a51ca9cc4cdc3840357a69ad43, slot: 5889 +2024-09-30T06:48:48.140118Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5889 +2024-09-30T06:48:48.140137Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5889 +2024-09-30T06:48:48.150093Z INFO fork_choice_control::block_processor: Validating block with slot: 5890 +2024-09-30T06:48:48.151198Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6285f1ffb6fb4bc58f1ca5a292ba3a3d09a609773e7594e0cb015212c219780b, slot: 5890 +2024-09-30T06:48:48.158742Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5890 +2024-09-30T06:48:48.158762Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5890 +2024-09-30T06:48:48.169512Z INFO fork_choice_control::block_processor: Validating block with slot: 5891 +2024-09-30T06:48:48.171980Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdbad3353ab8c7379bcd3df6d4be704bbd533494a24360ee7541e2d186d491e75, slot: 5891 +2024-09-30T06:48:48.182550Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5891 +2024-09-30T06:48:48.182563Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5891 +2024-09-30T06:48:48.193343Z INFO fork_choice_control::block_processor: Validating block with slot: 5892 +2024-09-30T06:48:48.194437Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9d0764fee9ed721775f1bae5b3fbb3bdfed995c815e2dedd441bdb6e77b6ab53, slot: 5892 +2024-09-30T06:48:48.200961Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5892 +2024-09-30T06:48:48.200976Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5892 +2024-09-30T06:48:48.212086Z INFO fork_choice_control::block_processor: Validating block with slot: 5893 +2024-09-30T06:48:48.213318Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4bdb37dc2e0345123d3764e4834574bffa1e9f184edccac096c347bcc090f97f, slot: 5893 +2024-09-30T06:48:48.221955Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5893 +2024-09-30T06:48:48.221980Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5893 +2024-09-30T06:48:48.233252Z INFO fork_choice_control::block_processor: Validating block with slot: 5894 +2024-09-30T06:48:48.234952Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcbd846afd53395228d3cb579269a2058c325c7573ab8c92781ca0c8fe0c635d6, slot: 5894 +2024-09-30T06:48:48.244099Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5894 +2024-09-30T06:48:48.244112Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5894 +2024-09-30T06:48:48.255945Z INFO fork_choice_control::block_processor: Validating block with slot: 5895 +2024-09-30T06:48:48.257046Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6f1bf61472f31dbd5c75bc959909a796c52fce49a5f3f830e8337a7b93287562, slot: 5895 +2024-09-30T06:48:48.263777Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5895 +2024-09-30T06:48:48.263791Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5895 +2024-09-30T06:48:48.275676Z INFO fork_choice_control::block_processor: Validating block with slot: 5896 +2024-09-30T06:48:48.276793Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6e93eeb7d7bb8bb2c30d6fffe2be24cca03e96ff651f08f47f1776dc936064e4, slot: 5896 +2024-09-30T06:48:48.286751Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5896 +2024-09-30T06:48:48.286773Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5896 +2024-09-30T06:48:48.298428Z INFO fork_choice_control::block_processor: Validating block with slot: 5897 +2024-09-30T06:48:48.299538Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd48276bd7c32248bd4959cde6b22ce92dd5d99b3a8baa0fab07c3990bfbb25c4, slot: 5897 +2024-09-30T06:48:48.306596Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5897 +2024-09-30T06:48:48.306618Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5897 +2024-09-30T06:48:48.318596Z INFO fork_choice_control::block_processor: Validating block with slot: 5899 +2024-09-30T06:48:48.320694Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x120c9f55aea85f47b6394fc00d70939726545e4c8b6cffd95ae808d63773794c, slot: 5899 +2024-09-30T06:48:48.330979Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5899 +2024-09-30T06:48:48.330992Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5899 +2024-09-30T06:48:48.343276Z INFO fork_choice_control::block_processor: Validating block with slot: 5900 +2024-09-30T06:48:48.346024Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb03e97881f38c72a70687bf9137aba692de92319ece7bc6f5e5ad88c970909dc, slot: 5900 +2024-09-30T06:48:48.356416Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5900 +2024-09-30T06:48:48.356437Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5900 +2024-09-30T06:48:48.368925Z INFO fork_choice_control::block_processor: Validating block with slot: 5901 +2024-09-30T06:48:48.370042Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc51423313e26b7253dddb13c3d8310f3bab5412798762b19cb7bbb2dd5c45ecf, slot: 5901 +2024-09-30T06:48:48.376301Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5901 +2024-09-30T06:48:48.376315Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5901 +2024-09-30T06:48:48.389232Z INFO fork_choice_control::block_processor: Validating block with slot: 5902 +2024-09-30T06:48:48.390201Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x17113b1f0d9c1a9a29439f184136b2db60b1de47f3eead04b5aeaa414fcc11f1, slot: 5902 +2024-09-30T06:48:48.395963Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5902 +2024-09-30T06:48:48.395980Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5902 +2024-09-30T06:48:48.408977Z INFO fork_choice_control::block_processor: Validating block with slot: 5903 +2024-09-30T06:48:48.410100Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd31baf5ffb45985d8d9c9dcc43f30b5bbeaf69fff7570d4f6efb01f84581b021, slot: 5903 +2024-09-30T06:48:48.416035Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5903 +2024-09-30T06:48:48.416049Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5903 +2024-09-30T06:48:48.429115Z INFO fork_choice_control::block_processor: Validating block with slot: 5904 +2024-09-30T06:48:48.432395Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4823aade2fd8cc20659f1cdfb37b4cfb62bd4d42b05514fcb343b04b02bef5b7, slot: 5904 +2024-09-30T06:48:48.444219Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5904 +2024-09-30T06:48:48.444239Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5904 +2024-09-30T06:48:48.458078Z INFO fork_choice_control::block_processor: Validating block with slot: 5905 +2024-09-30T06:48:48.459194Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfd05f122e01694ec4c025d5498c215f0b07f455f749a077a731c20d5516c3c8d, slot: 5905 +2024-09-30T06:48:48.465582Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5905 +2024-09-30T06:48:48.465595Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5905 +2024-09-30T06:48:48.479505Z INFO fork_choice_control::block_processor: Validating block with slot: 5906 +2024-09-30T06:48:48.481061Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfcbf1f8ef2adb4a24b27df007304d1beeb4047b6a7a0cf7ee00424632f5ffbec, slot: 5906 +2024-09-30T06:48:48.488963Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5906 +2024-09-30T06:48:48.488984Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5906 +2024-09-30T06:48:48.502979Z INFO fork_choice_control::block_processor: Validating block with slot: 5907 +2024-09-30T06:48:48.504125Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcb7fc377b44c7ad6968a35403a2c4cb561e90363ad3eeff4b468112eadd80b8e, slot: 5907 +2024-09-30T06:48:48.510177Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5907 +2024-09-30T06:48:48.510190Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5907 +2024-09-30T06:48:48.524614Z INFO fork_choice_control::block_processor: Validating block with slot: 5908 +2024-09-30T06:48:48.525732Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x55da69e24112bd5ef473a215b0793d89fc0024b2068626ccfaab290376ac7239, slot: 5908 +2024-09-30T06:48:48.531770Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5908 +2024-09-30T06:48:48.531789Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5908 +2024-09-30T06:48:48.546442Z INFO fork_choice_control::block_processor: Validating block with slot: 5909 +2024-09-30T06:48:48.550902Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x02aa3806979c3270c175d182d5f718e6f390a72c74d0761ff99048ed3b4daeef, slot: 5909 +2024-09-30T06:48:48.568418Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5909 +2024-09-30T06:48:48.568441Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5909 +2024-09-30T06:48:48.583497Z INFO fork_choice_control::block_processor: Validating block with slot: 5910 +2024-09-30T06:48:48.584616Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x24e4f0d184d876e61c6382984dbff52c36f751ed3fda3c3edebd0b06c1dde400, slot: 5910 +2024-09-30T06:48:48.592138Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5910 +2024-09-30T06:48:48.592157Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5910 +2024-09-30T06:48:48.607665Z INFO fork_choice_control::block_processor: Validating block with slot: 5911 +2024-09-30T06:48:48.608671Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8338bf184ac129f35b98d14ca6193ce71912dba969652f53f5974f062f7e96b9, slot: 5911 +2024-09-30T06:48:48.614657Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5911 +2024-09-30T06:48:48.614673Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5911 +2024-09-30T06:48:48.635567Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 183, root: 0xa842b7e4a431f3618e1117bcf9da7d3f6eca54cd3ede9f199b1f55b448cd9fbc, head slot: 5911, head root: 0x8338bf184ac129f35b98d14ca6193ce71912dba969652f53f5974f062f7e96b9) +2024-09-30T06:48:48.635568Z INFO fork_choice_control::block_processor: Validating block with slot: 5912 +2024-09-30T06:48:48.637094Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7394b92aad67a45893926156ebbaacc9581c8d9fb4aaa51321f6ceea301347ed, slot: 5912 +2024-09-30T06:48:48.643472Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5912 +2024-09-30T06:48:48.643485Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5912 +2024-09-30T06:48:48.659130Z INFO fork_choice_control::block_processor: Validating block with slot: 5913 +2024-09-30T06:48:48.661181Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x63a79def7b987a4ce6d0a43c373bf026fcef49879e671d61ed0460ed6c88420f, slot: 5913 +2024-09-30T06:48:48.669626Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5913 +2024-09-30T06:48:48.669645Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5913 +2024-09-30T06:48:48.685539Z INFO fork_choice_control::block_processor: Validating block with slot: 5914 +2024-09-30T06:48:48.686929Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1d2be6801434a4eae1b3f1e82f07a964870039926104429a84ba9fc26812ad93, slot: 5914 +2024-09-30T06:48:48.693558Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5914 +2024-09-30T06:48:48.693571Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5914 +2024-09-30T06:48:48.710142Z INFO fork_choice_control::block_processor: Validating block with slot: 5915 +2024-09-30T06:48:48.711254Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3c9da631e277ee989078f5f6aff7063883a5a7b7a064ce89b19985ab9a1c45e9, slot: 5915 +2024-09-30T06:48:48.717208Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5915 +2024-09-30T06:48:48.717223Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5915 +2024-09-30T06:48:48.733658Z INFO fork_choice_control::block_processor: Validating block with slot: 5917 +2024-09-30T06:48:48.737453Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x29b9c3e34ecb93ba785a699ca8f08b435ebdc134d252c981ab5e035872c0b47d, slot: 5917 +2024-09-30T06:48:48.751975Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5917 +2024-09-30T06:48:48.751993Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5917 +2024-09-30T06:48:48.769278Z INFO fork_choice_control::block_processor: Validating block with slot: 5918 +2024-09-30T06:48:48.770503Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbb248fa79f931f93eaca547e79cedade94111ff37577e937282b5e3ff847779c, slot: 5918 +2024-09-30T06:48:48.777190Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5918 +2024-09-30T06:48:48.777208Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5918 +2024-09-30T06:48:48.794474Z INFO fork_choice_control::block_processor: Validating block with slot: 5919 +2024-09-30T06:48:48.795568Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x475aaf511f06bf76a0203faa8dc23e6f246332e52acf5042ab5fe03ca197ddbe, slot: 5919 +2024-09-30T06:48:48.801433Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5919 +2024-09-30T06:48:48.801452Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5919 +2024-09-30T06:48:48.818659Z INFO fork_choice_control::block_processor: Validating block with slot: 5920 +2024-09-30T06:48:48.820097Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe29223ec97de64581b8bff5c3348365d63c8c59bc7dc86fbbdf692c8a9049067, slot: 5920 +2024-09-30T06:48:48.920061Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5920 +2024-09-30T06:48:48.920082Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5920 +2024-09-30T06:48:48.931194Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5920) +2024-09-30T06:48:49.980078Z INFO fork_choice_control::block_processor: Validating block with slot: 6594 +2024-09-30T06:48:49.980100Z INFO fork_choice_control::block_processor: Validating block with slot: 6592 +2024-09-30T06:48:49.980118Z INFO fork_choice_control::block_processor: Validating block with slot: 6593 +2024-09-30T06:48:49.995737Z INFO fork_choice_control::block_processor: Validating block with slot: 6596 +2024-09-30T06:48:49.995744Z INFO fork_choice_control::block_processor: Validating block with slot: 6595 +2024-09-30T06:48:49.995759Z INFO fork_choice_control::block_processor: Validating block with slot: 6597 +2024-09-30T06:48:50.187939Z INFO fork_choice_control::block_processor: Validating block with slot: 6598 +2024-09-30T06:48:50.187956Z INFO fork_choice_control::block_processor: Validating block with slot: 6602 +2024-09-30T06:48:50.188031Z INFO fork_choice_control::block_processor: Validating block with slot: 6600 +2024-09-30T06:48:50.188016Z INFO fork_choice_control::block_processor: Validating block with slot: 6601 +2024-09-30T06:48:50.188039Z INFO fork_choice_control::block_processor: Validating block with slot: 6599 +2024-09-30T06:48:50.188276Z INFO fork_choice_control::block_processor: Validating block with slot: 6603 +2024-09-30T06:48:50.188236Z INFO fork_choice_control::block_processor: Validating block with slot: 6604 +2024-09-30T06:48:50.188850Z INFO fork_choice_control::block_processor: Validating block with slot: 6605 +2024-09-30T06:48:50.307230Z INFO fork_choice_control::block_processor: Validating block with slot: 6977 +2024-09-30T06:48:50.316538Z INFO fork_choice_control::block_processor: Validating block with slot: 6978 +2024-09-30T06:48:50.323443Z INFO fork_choice_control::block_processor: Validating block with slot: 6979 +2024-09-30T06:48:50.447259Z INFO fork_choice_control::block_processor: Validating block with slot: 6607 +2024-09-30T06:48:50.557780Z INFO fork_choice_control::block_processor: Validating block with slot: 6980 +2024-09-30T06:48:50.557784Z INFO fork_choice_control::block_processor: Validating block with slot: 6981 +2024-09-30T06:48:50.557794Z INFO fork_choice_control::block_processor: Validating block with slot: 6982 +2024-09-30T06:48:50.557799Z INFO fork_choice_control::block_processor: Validating block with slot: 6985 +2024-09-30T06:48:50.557834Z INFO fork_choice_control::block_processor: Validating block with slot: 6987 +2024-09-30T06:48:50.557852Z INFO fork_choice_control::block_processor: Validating block with slot: 6986 +2024-09-30T06:48:50.557859Z INFO fork_choice_control::block_processor: Validating block with slot: 6984 +2024-09-30T06:48:50.558796Z INFO fork_choice_control::block_processor: Validating block with slot: 6988 +2024-09-30T06:48:50.559015Z INFO fork_choice_control::block_processor: Validating block with slot: 6989 +2024-09-30T06:48:50.559582Z INFO fork_choice_control::block_processor: Validating block with slot: 6608 +2024-09-30T06:48:50.559825Z INFO fork_choice_control::block_processor: Validating block with slot: 6983 +2024-09-30T06:48:50.560802Z INFO fork_choice_control::block_processor: Validating block with slot: 6990 +2024-09-30T06:48:50.561165Z INFO fork_choice_control::block_processor: Validating block with slot: 6992 +2024-09-30T06:48:50.561414Z INFO fork_choice_control::block_processor: Validating block with slot: 6609 +2024-09-30T06:48:50.561758Z INFO fork_choice_control::block_processor: Validating block with slot: 6610 +2024-09-30T06:48:50.561875Z INFO fork_choice_control::block_processor: Validating block with slot: 6993 +2024-09-30T06:48:50.562018Z INFO fork_choice_control::block_processor: Validating block with slot: 6611 +2024-09-30T06:48:50.562070Z INFO fork_choice_control::block_processor: Validating block with slot: 6613 +2024-09-30T06:48:50.562315Z INFO fork_choice_control::block_processor: Validating block with slot: 6612 +2024-09-30T06:48:50.562766Z INFO fork_choice_control::block_processor: Validating block with slot: 6994 +2024-09-30T06:48:50.563009Z INFO fork_choice_control::block_processor: Validating block with slot: 6995 +2024-09-30T06:48:50.563102Z INFO fork_choice_control::block_processor: Validating block with slot: 6996 +2024-09-30T06:48:50.563838Z INFO fork_choice_control::block_processor: Validating block with slot: 6614 +2024-09-30T06:48:50.564640Z INFO fork_choice_control::block_processor: Validating block with slot: 6997 +2024-09-30T06:48:50.564853Z INFO fork_choice_control::block_processor: Validating block with slot: 6616 +2024-09-30T06:48:50.564904Z INFO fork_choice_control::block_processor: Validating block with slot: 6619 +2024-09-30T06:48:50.565442Z INFO fork_choice_control::block_processor: Validating block with slot: 6615 +2024-09-30T06:48:50.565584Z INFO fork_choice_control::block_processor: Validating block with slot: 6620 +2024-09-30T06:48:50.565666Z INFO fork_choice_control::block_processor: Validating block with slot: 6618 +2024-09-30T06:48:50.565752Z INFO fork_choice_control::block_processor: Validating block with slot: 6621 +2024-09-30T06:48:50.565976Z INFO fork_choice_control::block_processor: Validating block with slot: 6622 +2024-09-30T06:48:50.567100Z INFO fork_choice_control::block_processor: Validating block with slot: 6623 +2024-09-30T06:48:50.568071Z INFO fork_choice_control::block_processor: Validating block with slot: 6624 +2024-09-30T06:48:50.568150Z INFO fork_choice_control::block_processor: Validating block with slot: 6625 +2024-09-30T06:48:50.568146Z INFO fork_choice_control::block_processor: Validating block with slot: 6617 +2024-09-30T06:48:50.568178Z INFO fork_choice_control::block_processor: Validating block with slot: 6627 +2024-09-30T06:48:50.568201Z INFO fork_choice_control::block_processor: Validating block with slot: 6628 +2024-09-30T06:48:50.568796Z INFO fork_choice_control::block_processor: Validating block with slot: 6629 +2024-09-30T06:48:50.569291Z INFO fork_choice_control::block_processor: Validating block with slot: 6626 +2024-09-30T06:48:50.569553Z INFO fork_choice_control::block_processor: Validating block with slot: 6630 +2024-09-30T06:48:50.570071Z INFO fork_choice_control::block_processor: Validating block with slot: 6631 +2024-09-30T06:48:50.570143Z INFO fork_choice_control::block_processor: Validating block with slot: 6632 +2024-09-30T06:48:50.592320Z INFO fork_choice_control::block_processor: Validating block with slot: 6634 +2024-09-30T06:48:50.592318Z INFO fork_choice_control::block_processor: Validating block with slot: 6633 +2024-09-30T06:48:50.592353Z INFO fork_choice_control::block_processor: Validating block with slot: 6637 +2024-09-30T06:48:50.592358Z INFO fork_choice_control::block_processor: Validating block with slot: 6636 +2024-09-30T06:48:50.592360Z INFO fork_choice_control::block_processor: Validating block with slot: 6639 +2024-09-30T06:48:50.592377Z INFO fork_choice_control::block_processor: Validating block with slot: 6635 +2024-09-30T06:48:50.592401Z INFO fork_choice_control::block_processor: Validating block with slot: 6998 +2024-09-30T06:48:50.592726Z INFO fork_choice_control::block_processor: Validating block with slot: 6638 +2024-09-30T06:48:50.593317Z INFO fork_choice_control::block_processor: Validating block with slot: 6640 +2024-09-30T06:48:50.593551Z INFO fork_choice_control::block_processor: Validating block with slot: 6641 +2024-09-30T06:48:50.594253Z INFO fork_choice_control::block_processor: Validating block with slot: 6642 +2024-09-30T06:48:50.598366Z INFO fork_choice_control::block_processor: Validating block with slot: 6643 +2024-09-30T06:48:50.658616Z INFO fork_choice_control::block_processor: Validating block with slot: 6999 +2024-09-30T06:48:50.676186Z INFO fork_choice_control::block_processor: Validating block with slot: 7000 +2024-09-30T06:48:50.676204Z INFO fork_choice_control::block_processor: Validating block with slot: 7002 +2024-09-30T06:48:50.676231Z INFO fork_choice_control::block_processor: Validating block with slot: 7005 +2024-09-30T06:48:50.676221Z INFO fork_choice_control::block_processor: Validating block with slot: 7001 +2024-09-30T06:48:50.676232Z INFO fork_choice_control::block_processor: Validating block with slot: 7003 +2024-09-30T06:48:50.676369Z INFO fork_choice_control::block_processor: Validating block with slot: 7004 +2024-09-30T06:48:50.695977Z INFO fork_choice_control::block_processor: Validating block with slot: 7007 +2024-09-30T06:48:50.695979Z INFO fork_choice_control::block_processor: Validating block with slot: 7008 +2024-09-30T06:48:50.696018Z INFO fork_choice_control::block_processor: Validating block with slot: 7006 +2024-09-30T06:48:50.696058Z INFO fork_choice_control::block_processor: Validating block with slot: 7011 +2024-09-30T06:48:50.696085Z INFO fork_choice_control::block_processor: Validating block with slot: 7010 +2024-09-30T06:48:50.696141Z INFO fork_choice_control::block_processor: Validating block with slot: 7009 +2024-09-30T06:48:50.710222Z INFO fork_choice_control::block_processor: Validating block with slot: 7014 +2024-09-30T06:48:50.710220Z INFO fork_choice_control::block_processor: Validating block with slot: 7013 +2024-09-30T06:48:50.710264Z INFO fork_choice_control::block_processor: Validating block with slot: 7012 +2024-09-30T06:48:50.710310Z INFO fork_choice_control::block_processor: Validating block with slot: 7015 +2024-09-30T06:48:50.710305Z INFO fork_choice_control::block_processor: Validating block with slot: 7016 +2024-09-30T06:48:50.710350Z INFO fork_choice_control::block_processor: Validating block with slot: 7017 +2024-09-30T06:48:50.710555Z INFO fork_choice_control::block_processor: Validating block with slot: 7018 +2024-09-30T06:48:50.713114Z INFO fork_choice_control::block_processor: Validating block with slot: 7019 +2024-09-30T06:48:50.713158Z INFO fork_choice_control::block_processor: Validating block with slot: 7020 +2024-09-30T06:48:50.715751Z INFO fork_choice_control::block_processor: Validating block with slot: 7022 +2024-09-30T06:48:50.746913Z INFO fork_choice_control::block_processor: Validating block with slot: 7024 +2024-09-30T06:48:50.746928Z INFO fork_choice_control::block_processor: Validating block with slot: 7027 +2024-09-30T06:48:50.746931Z INFO fork_choice_control::block_processor: Validating block with slot: 7028 +2024-09-30T06:48:50.746947Z INFO fork_choice_control::block_processor: Validating block with slot: 7029 +2024-09-30T06:48:50.746971Z INFO fork_choice_control::block_processor: Validating block with slot: 7026 +2024-09-30T06:48:50.746972Z INFO fork_choice_control::block_processor: Validating block with slot: 7023 +2024-09-30T06:48:50.746998Z INFO fork_choice_control::block_processor: Validating block with slot: 7030 +2024-09-30T06:48:50.747357Z INFO fork_choice_control::block_processor: Validating block with slot: 7025 +2024-09-30T06:48:50.774056Z INFO fork_choice_control::block_processor: Validating block with slot: 6644 +2024-09-30T06:48:50.842680Z INFO fork_choice_control::block_processor: Validating block with slot: 7031 +2024-09-30T06:48:50.866767Z INFO fork_choice_control::block_processor: Validating block with slot: 7034 +2024-09-30T06:48:50.866777Z INFO fork_choice_control::block_processor: Validating block with slot: 7035 +2024-09-30T06:48:50.866830Z INFO fork_choice_control::block_processor: Validating block with slot: 7033 +2024-09-30T06:48:50.866870Z INFO fork_choice_control::block_processor: Validating block with slot: 7036 +2024-09-30T06:48:50.866902Z INFO fork_choice_control::block_processor: Validating block with slot: 7038 +2024-09-30T06:48:50.867021Z INFO fork_choice_control::block_processor: Validating block with slot: 7037 +2024-09-30T06:48:50.877881Z INFO fork_choice_control::block_processor: Validating block with slot: 7039 +2024-09-30T06:48:50.958015Z INFO fork_choice_control::block_processor: Validating block with slot: 6645 +2024-09-30T06:48:50.958021Z INFO fork_choice_control::block_processor: Validating block with slot: 6646 +2024-09-30T06:48:50.958026Z INFO fork_choice_control::block_processor: Validating block with slot: 6647 +2024-09-30T06:48:51.140876Z INFO fork_choice_control::block_processor: Validating block with slot: 6648 +2024-09-30T06:48:51.140878Z INFO fork_choice_control::block_processor: Validating block with slot: 6650 +2024-09-30T06:48:51.140925Z INFO fork_choice_control::block_processor: Validating block with slot: 6649 +2024-09-30T06:48:51.146548Z INFO fork_choice_control::block_processor: Validating block with slot: 6651 +2024-09-30T06:48:51.146579Z INFO fork_choice_control::block_processor: Validating block with slot: 6652 +2024-09-30T06:48:51.150405Z INFO fork_choice_control::block_processor: Validating block with slot: 6653 +2024-09-30T06:48:51.150425Z INFO fork_choice_control::block_processor: Validating block with slot: 6654 +2024-09-30T06:48:51.174328Z INFO fork_choice_control::block_processor: Validating block with slot: 6655 +2024-09-30T06:48:51.811787Z INFO fork_choice_control::block_processor: Validating block with slot: 6433 +2024-09-30T06:48:52.017021Z INFO fork_choice_control::block_processor: Validating block with slot: 6435 +2024-09-30T06:48:52.017027Z INFO fork_choice_control::block_processor: Validating block with slot: 6437 +2024-09-30T06:48:52.017032Z INFO fork_choice_control::block_processor: Validating block with slot: 6436 +2024-09-30T06:48:52.017061Z INFO fork_choice_control::block_processor: Validating block with slot: 6434 +2024-09-30T06:48:52.130441Z INFO fork_choice_control::block_processor: Validating block with slot: 6438 +2024-09-30T06:48:52.279050Z INFO fork_choice_control::block_processor: Validating block with slot: 6439 +2024-09-30T06:48:52.279067Z INFO fork_choice_control::block_processor: Validating block with slot: 6444 +2024-09-30T06:48:52.279091Z INFO fork_choice_control::block_processor: Validating block with slot: 6441 +2024-09-30T06:48:52.279134Z INFO fork_choice_control::block_processor: Validating block with slot: 6440 +2024-09-30T06:48:52.279118Z INFO fork_choice_control::block_processor: Validating block with slot: 6445 +2024-09-30T06:48:52.279160Z INFO fork_choice_control::block_processor: Validating block with slot: 6446 +2024-09-30T06:48:52.279274Z INFO fork_choice_control::block_processor: Validating block with slot: 6443 +2024-09-30T06:48:52.279288Z INFO fork_choice_control::block_processor: Validating block with slot: 6442 +2024-09-30T06:48:52.311615Z INFO fork_choice_control::block_processor: Validating block with slot: 6447 +2024-09-30T06:48:52.332781Z INFO fork_choice_control::block_processor: Validating block with slot: 6912 +2024-09-30T06:48:52.376583Z INFO fork_choice_control::block_processor: Validating block with slot: 6913 +2024-09-30T06:48:52.475393Z INFO fork_choice_control::block_processor: Validating block with slot: 6450 +2024-09-30T06:48:52.475442Z INFO fork_choice_control::block_processor: Validating block with slot: 6914 +2024-09-30T06:48:52.475468Z INFO fork_choice_control::block_processor: Validating block with slot: 6448 +2024-09-30T06:48:52.475587Z INFO fork_choice_control::block_processor: Validating block with slot: 6452 +2024-09-30T06:48:52.475635Z INFO fork_choice_control::block_processor: Validating block with slot: 6449 +2024-09-30T06:48:52.569236Z INFO fork_choice_control::block_processor: Validating block with slot: 6454 +2024-09-30T06:48:52.569267Z INFO fork_choice_control::block_processor: Validating block with slot: 6453 +2024-09-30T06:48:52.626978Z INFO fork_choice_control::block_processor: Validating block with slot: 6915 +2024-09-30T06:48:52.665055Z INFO fork_choice_control::block_processor: Validating block with slot: 6916 +2024-09-30T06:48:52.686176Z INFO fork_choice_control::block_processor: Validating block with slot: 6455 +2024-09-30T06:48:52.688793Z INFO fork_choice_control::block_processor: Validating block with slot: 6456 +2024-09-30T06:48:52.692536Z INFO fork_choice_control::block_processor: Validating block with slot: 6457 +2024-09-30T06:48:52.692563Z INFO fork_choice_control::block_processor: Validating block with slot: 6458 +2024-09-30T06:48:52.695692Z INFO fork_choice_control::block_processor: Validating block with slot: 6459 +2024-09-30T06:48:52.695713Z INFO fork_choice_control::block_processor: Validating block with slot: 6460 +2024-09-30T06:48:52.697280Z INFO fork_choice_control::block_processor: Validating block with slot: 6461 +2024-09-30T06:48:52.699079Z INFO fork_choice_control::block_processor: Validating block with slot: 6462 +2024-09-30T06:48:52.700530Z INFO fork_choice_control::block_processor: Validating block with slot: 6463 +2024-09-30T06:48:52.748149Z INFO fork_choice_control::block_processor: Validating block with slot: 6917 +2024-09-30T06:48:52.828690Z INFO fork_choice_control::block_processor: Validating block with slot: 6918 +2024-09-30T06:48:52.937174Z INFO fork_choice_control::block_processor: Validating block with slot: 6920 +2024-09-30T06:48:52.937218Z INFO fork_choice_control::block_processor: Validating block with slot: 6921 +2024-09-30T06:48:52.974045Z INFO fork_choice_control::block_processor: Validating block with slot: 6923 +2024-09-30T06:48:52.974114Z INFO fork_choice_control::block_processor: Validating block with slot: 6922 +2024-09-30T06:48:53.144623Z INFO fork_choice_control::block_processor: Validating block with slot: 6924 +2024-09-30T06:48:53.148351Z INFO fork_choice_control::block_processor: Validating block with slot: 6925 +2024-09-30T06:48:53.163516Z INFO fork_choice_control::block_processor: Validating block with slot: 6926 +2024-09-30T06:48:53.201512Z INFO fork_choice_control::block_processor: Validating block with slot: 6927 +2024-09-30T06:48:53.258253Z INFO fork_choice_control::block_processor: Validating block with slot: 6928 +2024-09-30T06:48:53.351733Z INFO fork_choice_control::block_processor: Validating block with slot: 6929 +2024-09-30T06:48:53.355394Z INFO fork_choice_control::block_processor: Validating block with slot: 6848 +2024-09-30T06:48:53.358632Z INFO fork_choice_control::block_processor: Validating block with slot: 6850 +2024-09-30T06:48:53.358685Z INFO fork_choice_control::block_processor: Validating block with slot: 6849 +2024-09-30T06:48:53.363320Z INFO fork_choice_control::block_processor: Validating block with slot: 6851 +2024-09-30T06:48:53.363330Z INFO fork_choice_control::block_processor: Validating block with slot: 6852 +2024-09-30T06:48:53.447815Z INFO fork_choice_control::block_processor: Validating block with slot: 6853 +2024-09-30T06:48:53.447818Z INFO fork_choice_control::block_processor: Validating block with slot: 6854 +2024-09-30T06:48:53.447838Z INFO fork_choice_control::block_processor: Validating block with slot: 6858 +2024-09-30T06:48:53.447841Z INFO fork_choice_control::block_processor: Validating block with slot: 6860 +2024-09-30T06:48:53.447873Z INFO fork_choice_control::block_processor: Validating block with slot: 6862 +2024-09-30T06:48:53.447982Z INFO fork_choice_control::block_processor: Validating block with slot: 6856 +2024-09-30T06:48:53.448131Z INFO fork_choice_control::block_processor: Validating block with slot: 6859 +2024-09-30T06:48:53.449362Z INFO fork_choice_control::block_processor: Validating block with slot: 6863 +2024-09-30T06:48:53.449445Z INFO fork_choice_control::block_processor: Validating block with slot: 6855 +2024-09-30T06:48:53.449480Z INFO fork_choice_control::block_processor: Validating block with slot: 6864 +2024-09-30T06:48:53.450419Z INFO fork_choice_control::block_processor: Validating block with slot: 6865 +2024-09-30T06:48:53.450435Z INFO fork_choice_control::block_processor: Validating block with slot: 6866 +2024-09-30T06:48:53.451312Z INFO fork_choice_control::block_processor: Validating block with slot: 6867 +2024-09-30T06:48:53.451493Z INFO fork_choice_control::block_processor: Validating block with slot: 6868 +2024-09-30T06:48:53.451748Z INFO fork_choice_control::block_processor: Validating block with slot: 6869 +2024-09-30T06:48:53.453467Z INFO fork_choice_control::block_processor: Validating block with slot: 6870 +2024-09-30T06:48:53.453586Z INFO fork_choice_control::block_processor: Validating block with slot: 6871 +2024-09-30T06:48:53.453604Z INFO fork_choice_control::block_processor: Validating block with slot: 6872 +2024-09-30T06:48:53.453730Z INFO fork_choice_control::block_processor: Validating block with slot: 6873 +2024-09-30T06:48:53.454254Z INFO fork_choice_control::block_processor: Validating block with slot: 6874 +2024-09-30T06:48:53.454449Z INFO fork_choice_control::block_processor: Validating block with slot: 6875 +2024-09-30T06:48:53.454658Z INFO fork_choice_control::block_processor: Validating block with slot: 6876 +2024-09-30T06:48:53.454882Z INFO fork_choice_control::block_processor: Validating block with slot: 6877 +2024-09-30T06:48:53.455525Z INFO fork_choice_control::block_processor: Validating block with slot: 6878 +2024-09-30T06:48:53.455735Z INFO fork_choice_control::block_processor: Validating block with slot: 6879 +2024-09-30T06:48:53.456581Z INFO fork_choice_control::block_processor: Validating block with slot: 6881 +2024-09-30T06:48:53.456597Z INFO fork_choice_control::block_processor: Validating block with slot: 6882 +2024-09-30T06:48:53.457234Z INFO fork_choice_control::block_processor: Validating block with slot: 6883 +2024-09-30T06:48:53.457659Z INFO fork_choice_control::block_processor: Validating block with slot: 6886 +2024-09-30T06:48:53.457671Z INFO fork_choice_control::block_processor: Validating block with slot: 6887 +2024-09-30T06:48:53.457964Z INFO fork_choice_control::block_processor: Validating block with slot: 6888 +2024-09-30T06:48:53.458597Z INFO fork_choice_control::block_processor: Validating block with slot: 6889 +2024-09-30T06:48:53.458623Z INFO fork_choice_control::block_processor: Validating block with slot: 6890 +2024-09-30T06:48:53.459482Z INFO fork_choice_control::block_processor: Validating block with slot: 6891 +2024-09-30T06:48:53.459592Z INFO fork_choice_control::block_processor: Validating block with slot: 6892 +2024-09-30T06:48:53.460343Z INFO fork_choice_control::block_processor: Validating block with slot: 6893 +2024-09-30T06:48:53.460670Z INFO fork_choice_control::block_processor: Validating block with slot: 6896 +2024-09-30T06:48:53.460642Z INFO fork_choice_control::block_processor: Validating block with slot: 6885 +2024-09-30T06:48:53.460705Z INFO fork_choice_control::block_processor: Validating block with slot: 6897 +2024-09-30T06:48:53.460843Z INFO fork_choice_control::block_processor: Validating block with slot: 6894 +2024-09-30T06:48:53.460966Z INFO fork_choice_control::block_processor: Validating block with slot: 6895 +2024-09-30T06:48:53.461648Z INFO fork_choice_control::block_processor: Validating block with slot: 6898 +2024-09-30T06:48:53.461775Z INFO fork_choice_control::block_processor: Validating block with slot: 6899 +2024-09-30T06:48:53.462719Z INFO fork_choice_control::block_processor: Validating block with slot: 6901 +2024-09-30T06:48:53.462874Z INFO fork_choice_control::block_processor: Validating block with slot: 6902 +2024-09-30T06:48:53.463835Z INFO fork_choice_control::block_processor: Validating block with slot: 6903 +2024-09-30T06:48:53.464663Z INFO fork_choice_control::block_processor: Validating block with slot: 6904 +2024-09-30T06:48:53.465065Z INFO fork_choice_control::block_processor: Validating block with slot: 6909 +2024-09-30T06:48:53.465084Z INFO fork_choice_control::block_processor: Validating block with slot: 6905 +2024-09-30T06:48:53.465299Z INFO fork_choice_control::block_processor: Validating block with slot: 6911 +2024-09-30T06:48:53.465341Z INFO fork_choice_control::block_processor: Validating block with slot: 6906 +2024-09-30T06:48:53.466186Z INFO fork_choice_control::block_processor: Validating block with slot: 6908 +2024-09-30T06:48:53.466205Z INFO fork_choice_control::block_processor: Validating block with slot: 6910 +2024-09-30T06:48:53.466779Z INFO fork_choice_control::block_processor: Validating block with slot: 6907 +2024-09-30T06:48:53.477867Z INFO fork_choice_control::block_processor: Validating block with slot: 6930 +2024-09-30T06:48:53.551510Z INFO fork_choice_control::block_processor: Validating block with slot: 6931 +2024-09-30T06:48:53.590383Z INFO fork_choice_control::block_processor: Validating block with slot: 6932 +2024-09-30T06:48:53.760459Z INFO fork_choice_control::block_processor: Validating block with slot: 6933 +2024-09-30T06:48:53.831987Z INFO fork_choice_control::block_processor: Validating block with slot: 6934 +2024-09-30T06:48:53.864686Z INFO fork_choice_control::block_processor: Validating block with slot: 6935 +2024-09-30T06:48:53.919260Z INFO fork_choice_control::block_processor: Validating block with slot: 6936 +2024-09-30T06:48:54.000578Z INFO fork_choice_control::block_processor: Validating block with slot: 6938 +2024-09-30T06:48:54.069222Z INFO fork_choice_control::block_processor: Validating block with slot: 6939 +2024-09-30T06:48:54.088298Z INFO fork_choice_control::block_processor: Validating block with slot: 6940 +2024-09-30T06:48:54.093431Z INFO fork_choice_control::block_processor: Validating block with slot: 6941 +2024-09-30T06:48:54.175820Z INFO fork_choice_control::block_processor: Validating block with slot: 6942 +2024-09-30T06:48:54.326825Z INFO fork_choice_control::block_processor: Validating block with slot: 6944 +2024-09-30T06:48:54.326851Z INFO fork_choice_control::block_processor: Validating block with slot: 6943 +2024-09-30T06:48:54.365099Z INFO fork_choice_control::block_processor: Validating block with slot: 6945 +2024-09-30T06:48:54.416537Z INFO fork_choice_control::block_processor: Validating block with slot: 6946 +2024-09-30T06:48:54.483773Z INFO fork_choice_control::block_processor: Validating block with slot: 6947 +2024-09-30T06:48:54.637393Z INFO fork_choice_control::block_processor: Validating block with slot: 6949 +2024-09-30T06:48:54.637397Z INFO fork_choice_control::block_processor: Validating block with slot: 6948 +2024-09-30T06:48:54.704679Z INFO fork_choice_control::block_processor: Validating block with slot: 6950 +2024-09-30T06:48:54.803949Z INFO fork_choice_control::block_processor: Validating block with slot: 6951 +2024-09-30T06:48:54.804009Z INFO fork_choice_control::block_processor: Validating block with slot: 6952 +2024-09-30T06:48:54.866666Z INFO fork_choice_control::block_processor: Validating block with slot: 6954 +2024-09-30T06:48:54.911049Z INFO fork_choice_control::block_processor: Validating block with slot: 6955 +2024-09-30T06:48:54.980301Z INFO fork_choice_control::block_processor: Validating block with slot: 6956 +2024-09-30T06:48:55.018113Z INFO fork_choice_control::block_processor: Validating block with slot: 6957 +2024-09-30T06:48:55.111522Z INFO fork_choice_control::block_processor: Validating block with slot: 6958 +2024-09-30T06:48:55.261438Z INFO fork_choice_control::block_processor: Validating block with slot: 6959 +2024-09-30T06:48:55.327193Z INFO fork_choice_control::block_processor: Validating block with slot: 6960 +2024-09-30T06:48:55.376958Z INFO fork_choice_control::block_processor: Validating block with slot: 6961 +2024-09-30T06:48:55.471228Z INFO fork_choice_control::block_processor: Validating block with slot: 6962 +2024-09-30T06:48:55.570231Z INFO fork_choice_control::block_processor: Validating block with slot: 6963 +2024-09-30T06:48:55.588552Z INFO fork_choice_control::block_processor: Validating block with slot: 6964 +2024-09-30T06:48:55.645312Z INFO fork_choice_control::block_processor: Validating block with slot: 6965 +2024-09-30T06:48:55.759960Z INFO fork_choice_control::block_processor: Validating block with slot: 6966 +2024-09-30T06:48:55.770903Z INFO fork_choice_control::block_processor: Validating block with slot: 6967 +2024-09-30T06:48:55.786254Z INFO fork_choice_control::block_processor: Validating block with slot: 6968 +2024-09-30T06:48:55.859892Z INFO fork_choice_control::block_processor: Validating block with slot: 6969 +2024-09-30T06:48:55.875217Z INFO fork_choice_control::block_processor: Validating block with slot: 6970 +2024-09-30T06:48:55.884846Z INFO fork_choice_control::block_processor: Validating block with slot: 6971 +2024-09-30T06:48:55.929730Z INFO fork_choice_control::block_processor: Validating block with slot: 6972 +2024-09-30T06:48:55.992177Z INFO fork_choice_control::block_processor: Validating block with slot: 6973 +2024-09-30T06:48:56.070355Z INFO fork_choice_control::block_processor: Validating block with slot: 6974 +2024-09-30T06:48:56.178117Z INFO fork_choice_control::block_processor: Validating block with slot: 6975 +2024-09-30T06:48:58.072908Z INFO fork_choice_control::block_processor: Validating block with slot: 6656 +2024-09-30T06:48:58.458311Z WARN discv5::handler: Authentication response already sent. Dropping session. Node: Node: 0x64e6..5c39, addr: 84.244.95.248:12001 +2024-09-30T06:48:58.458658Z WARN discv5::service: RPC Request failed: id: 4ea776bb3343f1e4, error InvalidRemotePacket +2024-09-30T06:48:58.458841Z WARN discv5::service: RPC Request failed: id: 9cfe5a111ef633d5, error InvalidRemotePacket +2024-09-30T06:49:00.558375Z INFO fork_choice_control::block_processor: Validating block with slot: 5921 +2024-09-30T06:49:00.565765Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9dfdea4467e06dac7189e96c3ce02cad8e8b61f0a634669c785adcd867062873, slot: 5921 +2024-09-30T06:49:00.630030Z INFO fork_choice_control::block_processor: Validating block with slot: 5923 +2024-09-30T06:49:00.669119Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5921 +2024-09-30T06:49:00.669141Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5921 +2024-09-30T06:49:00.680788Z INFO fork_choice_control::block_processor: Validating block with slot: 5923 +2024-09-30T06:49:00.682696Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x474f08810e4fa0e3cd4b1876c1c0303680a46c91bd6ef6ced411aa31508242b8, slot: 5923 +2024-09-30T06:49:00.693289Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5923 +2024-09-30T06:49:00.693310Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5923 +2024-09-30T06:49:00.751444Z INFO fork_choice_control::block_processor: Validating block with slot: 5924 +2024-09-30T06:49:00.752801Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd079355f9c717799bbf70c68d726aa76446d0a5f310e5f4ea49871314c297d69, slot: 5924 +2024-09-30T06:49:00.759568Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5924 +2024-09-30T06:49:00.759580Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5924 +2024-09-30T06:49:00.778196Z INFO fork_choice_control::block_processor: Validating block with slot: 5925 +2024-09-30T06:49:00.779407Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x344d84e9e1997cc55413f34533499f0738a1b1ddd5291a95c2fd5ce7b9505ae8, slot: 5925 +2024-09-30T06:49:00.786352Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5925 +2024-09-30T06:49:00.786373Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5925 +2024-09-30T06:49:00.858969Z INFO fork_choice_control::block_processor: Validating block with slot: 5927 +2024-09-30T06:49:00.860961Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1e529e2329824277e85517777e07f2d286a4ca9eb2b633339d2da59cbb8fc6e2, slot: 5927 +2024-09-30T06:49:00.872692Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5927 +2024-09-30T06:49:00.872715Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5927 +2024-09-30T06:49:00.951650Z INFO fork_choice_control::block_processor: Validating block with slot: 5928 +2024-09-30T06:49:00.953374Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd0e74d878361d290b5599ec4da9e8a9d1f20954b6c9c8324568529fbb66fa26c, slot: 5928 +2024-09-30T06:49:00.961494Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5928 +2024-09-30T06:49:00.961512Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5928 +2024-09-30T06:49:01.072053Z INFO fork_choice_control::block_processor: Validating block with slot: 5929 +2024-09-30T06:49:01.074185Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x56b50fdb6796de6b239bd3d50ecea5bdbc66d1e27d9ced000ef105f5b17bc1eb, slot: 5929 +2024-09-30T06:49:01.083889Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5929 +2024-09-30T06:49:01.083905Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5929 +2024-09-30T06:49:01.157834Z INFO fork_choice_control::block_processor: Validating block with slot: 5930 +2024-09-30T06:49:01.159594Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x89330d5686e8a6ec25002e2f98fc4bc1e2f2d8b11cea28d67a04bbd3372fb961, slot: 5930 +2024-09-30T06:49:01.168215Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5930 +2024-09-30T06:49:01.168235Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5930 +2024-09-30T06:49:01.274032Z INFO fork_choice_control::block_processor: Validating block with slot: 5931 +2024-09-30T06:49:01.276413Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf3cc19a41af8d0857d4b5e073147ca810daa51775c706a10d9d64a792acd0afe, slot: 5931 +2024-09-30T06:49:01.286331Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5931 +2024-09-30T06:49:01.286356Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5931 +2024-09-30T06:49:01.340870Z INFO fork_choice_control::block_processor: Validating block with slot: 5932 +2024-09-30T06:49:01.341862Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe4d7601471e666fad4b714b9aefd0a7520cb1c0b22b8feef7ad12d6688158c62, slot: 5932 +2024-09-30T06:49:01.347685Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5932 +2024-09-30T06:49:01.347704Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5932 +2024-09-30T06:49:01.417651Z INFO fork_choice_control::block_processor: Validating block with slot: 5933 +2024-09-30T06:49:01.418993Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9170256eae05a9adc76c518093605b9ea5f5f0aba5755f71cc8f0f3069c5459a, slot: 5933 +2024-09-30T06:49:01.426502Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5933 +2024-09-30T06:49:01.426519Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5933 +2024-09-30T06:49:01.442982Z INFO fork_choice_control::block_processor: Validating block with slot: 5934 +2024-09-30T06:49:01.445715Z INFO fork_choice_control::block_processor: Validating block with slot: 5934 +2024-09-30T06:49:01.446892Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x87e634febe7d8eaf60baea7bc9f8936bfaacdd96955b82804eee1c2ba6417255, slot: 5934 +2024-09-30T06:49:01.453108Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5934 +2024-09-30T06:49:01.453132Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5934 +2024-09-30T06:49:01.529921Z INFO fork_choice_control::block_processor: Validating block with slot: 5935 +2024-09-30T06:49:01.532303Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf3d285d7fadf7d3189bc452d1d8b70352038def7e52bf259c1583b158a66eadb, slot: 5935 +2024-09-30T06:49:01.542781Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5935 +2024-09-30T06:49:01.542805Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5935 +2024-09-30T06:49:01.637198Z INFO fork_choice_control::block_processor: Validating block with slot: 5936 +2024-09-30T06:49:01.638926Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcefeb7fb0a1f0b78a479fe90047c8dbada1da5706d22fa2586d6a605f9bd993b, slot: 5936 +2024-09-30T06:49:01.647152Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5936 +2024-09-30T06:49:01.647172Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5936 +2024-09-30T06:49:01.697517Z INFO fork_choice_control::block_processor: Validating block with slot: 5937 +2024-09-30T06:49:01.698645Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1f144e801f265a695890fc7d19e9000e336c70f589c57aa2f3706fc2d0e36a92, slot: 5937 +2024-09-30T06:49:01.705778Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5937 +2024-09-30T06:49:01.705800Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5937 +2024-09-30T06:49:01.733632Z INFO fork_choice_control::block_processor: Validating block with slot: 5938 +2024-09-30T06:49:01.734890Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x807ace49c95f94a1b5b927e461ee3b26ec91bb02347473dc83ea1bc8be378a7a, slot: 5938 +2024-09-30T06:49:01.741207Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5938 +2024-09-30T06:49:01.741226Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5938 +2024-09-30T06:49:01.775234Z INFO fork_choice_control::block_processor: Validating block with slot: 5939 +2024-09-30T06:49:01.781073Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfcc1703794ef67fadd692900128acee5d9f43a57e5795e2d493fe9b77cba87d5, slot: 5939 +2024-09-30T06:49:01.802018Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5939 +2024-09-30T06:49:01.802039Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5939 +2024-09-30T06:49:01.826867Z INFO fork_choice_control::block_processor: Validating block with slot: 5940 +2024-09-30T06:49:01.828534Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaca5173a51c7231c2724e313368f9e789cf3683f2e95264225745f32cddd594f, slot: 5940 +2024-09-30T06:49:01.836166Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5940 +2024-09-30T06:49:01.836190Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5940 +2024-09-30T06:49:01.903288Z INFO fork_choice_control::block_processor: Validating block with slot: 5941 +2024-09-30T06:49:01.904986Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x43fff688a5dc946c28fca6d32b76c27d3376795196d1f0d44715fe089514f7b5, slot: 5941 +2024-09-30T06:49:01.913116Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5941 +2024-09-30T06:49:01.913131Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5941 +2024-09-30T06:49:01.942212Z INFO fork_choice_control::block_processor: Validating block with slot: 5942 +2024-09-30T06:49:01.943759Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0089133f4493dd8091e14ae3938e413c6f4651554d47cb16e3c835aa3f819a34, slot: 5942 +2024-09-30T06:49:01.950740Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5942 +2024-09-30T06:49:01.950757Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5942 +2024-09-30T06:49:01.967298Z INFO fork_choice_control::block_processor: Validating block with slot: 5943 +2024-09-30T06:49:01.968555Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xff12b72ec0fb59c867424594004841647d6be37ab5acfc7c37fecb68b3438d5c, slot: 5943 +2024-09-30T06:49:01.975110Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5943 +2024-09-30T06:49:01.975128Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5943 +2024-09-30T06:49:01.998197Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 184, root: 0xcdfd3c1d8a3601a6fb295213c00748e1db71ce6fa7de73a2844254dbc22f3174, head slot: 5943, head root: 0xff12b72ec0fb59c867424594004841647d6be37ab5acfc7c37fecb68b3438d5c) +2024-09-30T06:49:02.015808Z INFO fork_choice_control::block_processor: Validating block with slot: 5944 +2024-09-30T06:49:02.018195Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa3ced5beecaf2e1fd3cc8b1565a02ea898bfe6763ea16e313d46040a2de64482, slot: 5944 +2024-09-30T06:49:02.030371Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5944 +2024-09-30T06:49:02.030391Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5944 +2024-09-30T06:49:02.049407Z INFO fork_choice_control::block_processor: Validating block with slot: 5945 +2024-09-30T06:49:02.050544Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xffd9a3690ef9fbc157b28e94a738f574ed48b4bf8d93b52c6efe7c32c27a3d6a, slot: 5945 +2024-09-30T06:49:02.059749Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5945 +2024-09-30T06:49:02.059769Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5945 +2024-09-30T06:49:02.129644Z INFO fork_choice_control::block_processor: Validating block with slot: 5946 +2024-09-30T06:49:02.133381Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 5888 +2024-09-30T06:49:02.133872Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x92dc3116b46fa3c502c5bdafecbcb2418ac8ee910ce60a833b8169bb0a7662fc, slot: 5946 +2024-09-30T06:49:02.151533Z INFO fork_choice_control::block_processor: Validating block with slot: 5947 +2024-09-30T06:49:02.153568Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5946 +2024-09-30T06:49:02.153595Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5946 +2024-09-30T06:49:02.183778Z INFO fork_choice_control::block_processor: Validating block with slot: 5947 +2024-09-30T06:49:02.187874Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x45c5ba30ac1a7126a7530cb27655e61d357612df3eb7925aea97faf8a1f5d4f0, slot: 5947 +2024-09-30T06:49:02.197281Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5947 +2024-09-30T06:49:02.197305Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5947 +2024-09-30T06:49:02.270817Z INFO fork_choice_control::block_processor: Validating block with slot: 5949 +2024-09-30T06:49:02.273239Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x236ea1c59db4a8f3c2e36551d26eb06b3ecead1f499e31bf97e6e9d80c1aa3b4, slot: 5949 +2024-09-30T06:49:02.287296Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5949 +2024-09-30T06:49:02.287317Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5949 +2024-09-30T06:49:02.289106Z INFO fork_choice_control::block_processor: Validating block with slot: 5950 +2024-09-30T06:49:02.289183Z INFO fork_choice_control::block_processor: Validating block with slot: 5951 +2024-09-30T06:49:02.307161Z INFO fork_choice_control::block_processor: Validating block with slot: 5950 +2024-09-30T06:49:02.308141Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x411cb01605d194a540842ff4ba6ff9369ea1d32b495bd4405c17f41e130440a2, slot: 5950 +2024-09-30T06:49:02.315163Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5950 +2024-09-30T06:49:02.315184Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5950 +2024-09-30T06:49:02.335588Z INFO fork_choice_control::block_processor: Validating block with slot: 5951 +2024-09-30T06:49:02.336995Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8af526fe5a55b8ad0b6fe81e4a8dc0312888b1871f954c0e949bfec212059eca, slot: 5951 +2024-09-30T06:49:02.344178Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5951 +2024-09-30T06:49:02.344199Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5951 +2024-09-30T06:49:02.363346Z INFO fork_choice_control::block_processor: Validating block with slot: 5952 +2024-09-30T06:49:02.365135Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x083ee121eabacecc90b86c4efecb0f12600be891ca50388d3a8c6cb3c66e118d, slot: 5952 +2024-09-30T06:49:02.466413Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5952 +2024-09-30T06:49:02.466438Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5952 +2024-09-30T06:49:02.477603Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5952) +2024-09-30T06:49:02.477763Z INFO fork_choice_control::block_processor: Validating block with slot: 5953 +2024-09-30T06:49:02.478713Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x22b73dd1344a8ea6717797e5669e094cd0162da74d21358f01672e4900d72b2e, slot: 5953 +2024-09-30T06:49:02.551544Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5953 +2024-09-30T06:49:02.551567Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5953 +2024-09-30T06:49:02.562760Z INFO fork_choice_control::block_processor: Validating block with slot: 5954 +2024-09-30T06:49:02.563720Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xec819b798ce58e72df60ea4b86d3e6a78fde4805cdebc9e642cef1d99708f17c, slot: 5954 +2024-09-30T06:49:02.570839Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5954 +2024-09-30T06:49:02.570861Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5954 +2024-09-30T06:49:02.582386Z INFO fork_choice_control::block_processor: Validating block with slot: 5955 +2024-09-30T06:49:02.585173Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf159b8bfb25a79786c5bccbc5ee9d9ea534232fe3b93fd0a08f42e0f855c1df8, slot: 5955 +2024-09-30T06:49:02.597414Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5955 +2024-09-30T06:49:02.597434Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5955 +2024-09-30T06:49:02.609763Z INFO fork_choice_control::block_processor: Validating block with slot: 5956 +2024-09-30T06:49:02.611010Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd0bca05acf8cbbe4665e9eb172193b7606f1bba5b52fd4f753122eb93e970714, slot: 5956 +2024-09-30T06:49:02.617539Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5956 +2024-09-30T06:49:02.617552Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5956 +2024-09-30T06:49:02.629896Z INFO fork_choice_control::block_processor: Validating block with slot: 5957 +2024-09-30T06:49:02.631567Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x436e8ad85176037d4745ca9674efa0549d2a4af24dac04f69b490c7967cba673, slot: 5957 +2024-09-30T06:49:02.641005Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5957 +2024-09-30T06:49:02.641026Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5957 +2024-09-30T06:49:02.653730Z INFO fork_choice_control::block_processor: Validating block with slot: 5958 +2024-09-30T06:49:02.654759Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4afcce2689d48286eb994047ad207494217f3d8101692c6d768e8ce7c283adc4, slot: 5958 +2024-09-30T06:49:02.660794Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5958 +2024-09-30T06:49:02.660806Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5958 +2024-09-30T06:49:02.674033Z INFO fork_choice_control::block_processor: Validating block with slot: 5959 +2024-09-30T06:49:02.675018Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xacb2c3133f235c0450a06d950223af5c1760d46fe57532246241606ff82127f5, slot: 5959 +2024-09-30T06:49:02.681637Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5959 +2024-09-30T06:49:02.681652Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5959 +2024-09-30T06:49:02.694945Z INFO fork_choice_control::block_processor: Validating block with slot: 5960 +2024-09-30T06:49:02.695925Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x771e123a7784d0ea9fad75ab380cd0ee867ab7583e41f0f60c6c7a57e5e85991, slot: 5960 +2024-09-30T06:49:02.703289Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5960 +2024-09-30T06:49:02.703309Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5960 +2024-09-30T06:49:02.716185Z INFO fork_choice_control::block_processor: Validating block with slot: 5961 +2024-09-30T06:49:02.717149Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0750e4f88a1290f3298b9711d1307405c405d53436a389fd5383a6f8764fc62c, slot: 5961 +2024-09-30T06:49:02.722969Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5961 +2024-09-30T06:49:02.722989Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5961 +2024-09-30T06:49:02.736279Z INFO fork_choice_control::block_processor: Validating block with slot: 5962 +2024-09-30T06:49:02.737405Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5e6074f367a9f7a1ab489f21d1051b45a95b47caad54c72bfd9bfa2fb34057c2, slot: 5962 +2024-09-30T06:49:02.743308Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5962 +2024-09-30T06:49:02.743322Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5962 +2024-09-30T06:49:02.756854Z INFO fork_choice_control::block_processor: Validating block with slot: 5963 +2024-09-30T06:49:02.758495Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8ca70671db9160776a4acbfa42aede30950b07fbbc83a1528b62c68802ce9056, slot: 5963 +2024-09-30T06:49:02.765970Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5963 +2024-09-30T06:49:02.765983Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5963 +2024-09-30T06:49:02.779993Z INFO fork_choice_control::block_processor: Validating block with slot: 5964 +2024-09-30T06:49:02.781141Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x71e218feb864e6dfa861a40a2ed5076766163c9bed8dfca1b10f0aa5844380dd, slot: 5964 +2024-09-30T06:49:02.787921Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5964 +2024-09-30T06:49:02.787940Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5964 +2024-09-30T06:49:02.801521Z INFO fork_choice_control::block_processor: Validating block with slot: 5965 +2024-09-30T06:49:02.802508Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x67a72b39fa0ef32c62318a47cd64d7d6f00384f42283681183b7c4e67176b59c, slot: 5965 +2024-09-30T06:49:02.807942Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5965 +2024-09-30T06:49:02.807954Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5965 +2024-09-30T06:49:02.821907Z INFO fork_choice_control::block_processor: Validating block with slot: 5966 +2024-09-30T06:49:02.823418Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3b83df952c659189a28913a88ac12b3abc336f219006e5b6f09681216b96d2da, slot: 5966 +2024-09-30T06:49:02.830307Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5966 +2024-09-30T06:49:02.830318Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5966 +2024-09-30T06:49:02.844619Z INFO fork_choice_control::block_processor: Validating block with slot: 5967 +2024-09-30T06:49:02.846134Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1bd081176ea97e920159bf456e8c2ed9ad9b06e5f6f81c3a8ad9d461eec34153, slot: 5967 +2024-09-30T06:49:02.853369Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5967 +2024-09-30T06:49:02.853389Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5967 +2024-09-30T06:49:02.867595Z INFO fork_choice_control::block_processor: Validating block with slot: 5969 +2024-09-30T06:49:02.869883Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9bcd0df9b61bc547c26d624f65a336385b23efac47d8bc648453fa24b0d83b2a, slot: 5969 +2024-09-30T06:49:02.879881Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5969 +2024-09-30T06:49:02.879901Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5969 +2024-09-30T06:49:02.894840Z INFO fork_choice_control::block_processor: Validating block with slot: 5970 +2024-09-30T06:49:02.896066Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb9436d3b29a9ddcbfae8953149591914a9f3c7f9219239edc8948de8dde79fa7, slot: 5970 +2024-09-30T06:49:02.903285Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5970 +2024-09-30T06:49:02.903320Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5970 +2024-09-30T06:49:02.920783Z INFO fork_choice_control::block_processor: Validating block with slot: 5971 +2024-09-30T06:49:02.921856Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x972a8494011307cfe8896f5b5866f8bafe84708a05790817277d19b841110224, slot: 5971 +2024-09-30T06:49:02.928687Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5971 +2024-09-30T06:49:02.928741Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5971 +2024-09-30T06:49:02.945547Z INFO fork_choice_control::block_processor: Validating block with slot: 5972 +2024-09-30T06:49:02.946646Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xecb20e3ee6d98ffb0c34537b59de3952141ee4dabb621f6356b8076aa8d2f4df, slot: 5972 +2024-09-30T06:49:02.952603Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5972 +2024-09-30T06:49:02.952626Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5972 +2024-09-30T06:49:02.967711Z INFO fork_choice_control::block_processor: Validating block with slot: 5973 +2024-09-30T06:49:02.969576Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc7863675fdeb0ddb2262759f77637966700d7369c1397364ff38c9d932ef813c, slot: 5973 +2024-09-30T06:49:02.977520Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5973 +2024-09-30T06:49:02.977538Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5973 +2024-09-30T06:49:02.993559Z INFO fork_choice_control::block_processor: Validating block with slot: 5975 +2024-09-30T06:49:02.995496Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfe109a370a747e5ad1310343e94ade25af6487c972d15d1db305382ca8d44e43, slot: 5975 +2024-09-30T06:49:03.005632Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5975 +2024-09-30T06:49:03.005654Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5975 +2024-09-30T06:49:03.027191Z INFO fork_choice_control::block_processor: Validating block with slot: 5976 +2024-09-30T06:49:03.027195Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 185, root: 0xe29223ec97de64581b8bff5c3348365d63c8c59bc7dc86fbbdf692c8a9049067, head slot: 5975, head root: 0xfe109a370a747e5ad1310343e94ade25af6487c972d15d1db305382ca8d44e43) +2024-09-30T06:49:03.028318Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x025461de1108993ff5d3eff36c663f101926ca7f918cb45a01a74a041fcdb36d, slot: 5976 +2024-09-30T06:49:03.035504Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5976 +2024-09-30T06:49:03.035528Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5976 +2024-09-30T06:49:03.051780Z INFO fork_choice_control::block_processor: Validating block with slot: 5977 +2024-09-30T06:49:03.052772Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x62ed70b2b1ac092b89c2a2e22b8a788eb2c9319eaf9ca4035242eb1d32164bd8, slot: 5977 +2024-09-30T06:49:03.058890Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5977 +2024-09-30T06:49:03.058904Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5977 +2024-09-30T06:49:03.075441Z INFO fork_choice_control::block_processor: Validating block with slot: 5978 +2024-09-30T06:49:03.076431Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4e4ae6d977ab16b9a635666fa0e3ca1f6f3bb23c30029c34be3b5dd3e0b61a24, slot: 5978 +2024-09-30T06:49:03.082616Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5978 +2024-09-30T06:49:03.082630Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5978 +2024-09-30T06:49:03.099442Z INFO fork_choice_control::block_processor: Validating block with slot: 5979 +2024-09-30T06:49:03.101993Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x60301d897bf40672572864bcca9c13032c530076eee2bd44e2ab1dfaf1b26d0f, slot: 5979 +2024-09-30T06:49:03.112067Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5979 +2024-09-30T06:49:03.112082Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5979 +2024-09-30T06:49:03.129212Z INFO fork_choice_control::block_processor: Validating block with slot: 5980 +2024-09-30T06:49:03.130486Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1109da227d5c8fafafd463293d2392e6a1e473a5c4a0a00dfea53c30586795bf, slot: 5980 +2024-09-30T06:49:03.137811Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5980 +2024-09-30T06:49:03.137847Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5980 +2024-09-30T06:49:03.155329Z INFO fork_choice_control::block_processor: Validating block with slot: 5981 +2024-09-30T06:49:03.156885Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x50c7736e029fe4997c169036ee40408550ead528fc498943753e136dc2a1b6a3, slot: 5981 +2024-09-30T06:49:03.158556Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 5920 +2024-09-30T06:49:03.164316Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5981 +2024-09-30T06:49:03.164332Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5981 +2024-09-30T06:49:03.182301Z INFO fork_choice_control::block_processor: Validating block with slot: 5982 +2024-09-30T06:49:03.183421Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x112816227578935dd3958dc65f312e2fface9069aa69ce2b40e60593296c8bcf, slot: 5982 +2024-09-30T06:49:03.191579Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5982 +2024-09-30T06:49:03.191598Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5982 +2024-09-30T06:49:03.210117Z INFO fork_choice_control::block_processor: Validating block with slot: 5983 +2024-09-30T06:49:03.211099Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xebaf4f1e1e589b5a84be1bdb2028c81aac794cb68ce4d4c80ddbdd128f756ba6, slot: 5983 +2024-09-30T06:49:03.217794Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5983 +2024-09-30T06:49:03.217816Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5983 +2024-09-30T06:49:03.236307Z INFO fork_choice_control::block_processor: Validating block with slot: 5984 +2024-09-30T06:49:03.237721Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x353b89b24bf97be7e6d0fe129cc1597005e3bfc23f04cd4e2b142ebf05857a64, slot: 5984 +2024-09-30T06:49:03.339551Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5984 +2024-09-30T06:49:03.339576Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5984 +2024-09-30T06:49:03.349901Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 5984) +2024-09-30T06:49:03.350022Z INFO fork_choice_control::block_processor: Validating block with slot: 5985 +2024-09-30T06:49:03.351003Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8dba8f556fa1e9db6cfc48b8fdfd6c98e8953c4927d5b03769b9556ab5fe21cc, slot: 5985 +2024-09-30T06:49:03.423852Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5985 +2024-09-30T06:49:03.423875Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5985 +2024-09-30T06:49:03.433978Z INFO fork_choice_control::block_processor: Validating block with slot: 5986 +2024-09-30T06:49:03.435532Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc431087de02b85238cca4dc4638a64a63d9acfd48aebbac5ce32bb45c9fafa77, slot: 5986 +2024-09-30T06:49:03.444539Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5986 +2024-09-30T06:49:03.444560Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5986 +2024-09-30T06:49:03.455340Z INFO fork_choice_control::block_processor: Validating block with slot: 5987 +2024-09-30T06:49:03.456318Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc397857c11fb17f3c85aa02caff2df6d2e51afce3c64fa35d79eaa33524ab9ab, slot: 5987 +2024-09-30T06:49:03.462481Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5987 +2024-09-30T06:49:03.462496Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5987 +2024-09-30T06:49:03.473125Z INFO fork_choice_control::block_processor: Validating block with slot: 5988 +2024-09-30T06:49:03.474224Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x955dc6f0e1902e9bba0a0b8cd98aa750de377e51b58ffa0ec69620f2379aa2e5, slot: 5988 +2024-09-30T06:49:03.480805Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5988 +2024-09-30T06:49:03.480818Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5988 +2024-09-30T06:49:03.491828Z INFO fork_choice_control::block_processor: Validating block with slot: 5989 +2024-09-30T06:49:03.492922Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x79f8b7a1fee13e477dcbbf8a52f973835db83cb72e449c104157501ce234158c, slot: 5989 +2024-09-30T06:49:03.499269Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5989 +2024-09-30T06:49:03.499281Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5989 +2024-09-30T06:49:03.510803Z INFO fork_choice_control::block_processor: Validating block with slot: 5990 +2024-09-30T06:49:03.512165Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4cf881d86f52aaee2be21cf1f23ddc9ed6b6e4290e3e7516ea75fe7ec8055be1, slot: 5990 +2024-09-30T06:49:03.519666Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5990 +2024-09-30T06:49:03.519687Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5990 +2024-09-30T06:49:03.530775Z INFO fork_choice_control::block_processor: Validating block with slot: 5991 +2024-09-30T06:49:03.533103Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xba368749dd1b53cd5622b26055a35e7d03bd0b76ccb6bca9376d39f943962bfc, slot: 5991 +2024-09-30T06:49:03.542746Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5991 +2024-09-30T06:49:03.542766Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5991 +2024-09-30T06:49:03.554327Z INFO fork_choice_control::block_processor: Validating block with slot: 5992 +2024-09-30T06:49:03.558025Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x006b035eacd2a6c3ba0dac0edb33be9fb295a38205205152f210305bac876dc3, slot: 5992 +2024-09-30T06:49:03.572875Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5992 +2024-09-30T06:49:03.572891Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5992 +2024-09-30T06:49:03.585142Z INFO fork_choice_control::block_processor: Validating block with slot: 5993 +2024-09-30T06:49:03.586131Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x636fc4a2e5c9c2ce24ab09f6729199458c13581be089cd611ae9611ed4057480, slot: 5993 +2024-09-30T06:49:03.592295Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5993 +2024-09-30T06:49:03.592309Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5993 +2024-09-30T06:49:03.605080Z INFO fork_choice_control::block_processor: Validating block with slot: 5994 +2024-09-30T06:49:03.606972Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0a515b862118c184e764f5b0ac3de2a57242f2a861122383e9037b03fbe90bb9, slot: 5994 +2024-09-30T06:49:03.614468Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5994 +2024-09-30T06:49:03.614484Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5994 +2024-09-30T06:49:03.627267Z INFO fork_choice_control::block_processor: Validating block with slot: 5995 +2024-09-30T06:49:03.628396Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x92cee4c6c3ddcb89f82b3ded9efc99d12c0de9d37e28ed542b21ccb4b5173ba9, slot: 5995 +2024-09-30T06:49:03.634557Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5995 +2024-09-30T06:49:03.634574Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5995 +2024-09-30T06:49:03.646994Z INFO fork_choice_control::block_processor: Validating block with slot: 5996 +2024-09-30T06:49:03.648108Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdc1e3122ae3a69fa673e8c9f1e2df09962343ae9484d813fe026f939aa3e9fee, slot: 5996 +2024-09-30T06:49:03.654639Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5996 +2024-09-30T06:49:03.654662Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5996 +2024-09-30T06:49:03.667164Z INFO fork_choice_control::block_processor: Validating block with slot: 5997 +2024-09-30T06:49:03.668156Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2b03c2527ac8b9f33e61e132cebc3d7198de24751e686aebb5d07cf41f40c5c1, slot: 5997 +2024-09-30T06:49:03.673896Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5997 +2024-09-30T06:49:03.673913Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5997 +2024-09-30T06:49:03.686817Z INFO fork_choice_control::block_processor: Validating block with slot: 5998 +2024-09-30T06:49:03.688374Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1835d4e67792cb6c1b2b9c125fcf370bd4e8035e592a368bc4e04d28e40db5b6, slot: 5998 +2024-09-30T06:49:03.695343Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5998 +2024-09-30T06:49:03.695355Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5998 +2024-09-30T06:49:03.708660Z INFO fork_choice_control::block_processor: Validating block with slot: 5999 +2024-09-30T06:49:03.709621Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8870407d64c415990e5c442264d6299550dcb252325082560542a4b92e909d0c, slot: 5999 +2024-09-30T06:49:03.715444Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 5999 +2024-09-30T06:49:03.715458Z INFO fork_choice_control::block_processor: Block validation completed for slot: 5999 +2024-09-30T06:49:03.728748Z INFO fork_choice_control::block_processor: Validating block with slot: 6001 +2024-09-30T06:49:03.732004Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1564fb34a1990b5f0679cfcf5aec81a95082592ace17a4c2f9ed50c2b6f53995, slot: 6001 +2024-09-30T06:49:03.745330Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6001 +2024-09-30T06:49:03.745350Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6001 +2024-09-30T06:49:03.759373Z INFO fork_choice_control::block_processor: Validating block with slot: 6002 +2024-09-30T06:49:03.760335Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x91a7103e394a71fa3289d0651e8fbe07fc2cc5aa9e4e426339f9d76f339b29a1, slot: 6002 +2024-09-30T06:49:03.767194Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6002 +2024-09-30T06:49:03.767208Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6002 +2024-09-30T06:49:03.781300Z INFO fork_choice_control::block_processor: Validating block with slot: 6003 +2024-09-30T06:49:03.784681Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe762899326d95fcf7cce4b6ac395afa6e5d6f11a7443738c74a162fe8e3cf493, slot: 6003 +2024-09-30T06:49:03.797320Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6003 +2024-09-30T06:49:03.797341Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6003 +2024-09-30T06:49:03.812264Z INFO fork_choice_control::block_processor: Validating block with slot: 6004 +2024-09-30T06:49:03.813496Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc498abcd689273d5592fe69e466002791eba53e576da0859dca132123c74ef80, slot: 6004 +2024-09-30T06:49:03.820211Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6004 +2024-09-30T06:49:03.820232Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6004 +2024-09-30T06:49:03.835176Z INFO fork_choice_control::block_processor: Validating block with slot: 6005 +2024-09-30T06:49:03.836173Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6e419de928b3ef835b2de0b110500c2b2cfb254935e48cd4ed2cf1e0f8fb1519, slot: 6005 +2024-09-30T06:49:03.841767Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6005 +2024-09-30T06:49:03.841781Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6005 +2024-09-30T06:49:03.856863Z INFO fork_choice_control::block_processor: Validating block with slot: 6006 +2024-09-30T06:49:03.858374Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x85f0de7ee8a6a260ed9934c9304aa35b0d4042ee85088df197143828b086a61c, slot: 6006 +2024-09-30T06:49:03.865310Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6006 +2024-09-30T06:49:03.865322Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6006 +2024-09-30T06:49:03.880468Z INFO fork_choice_control::block_processor: Validating block with slot: 6007 +2024-09-30T06:49:03.881559Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3f127a268e875dba4b86796ab3213d5a250f67b040343d0b179fe5a00f708cd0, slot: 6007 +2024-09-30T06:49:03.887552Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6007 +2024-09-30T06:49:03.887571Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6007 +2024-09-30T06:49:03.908188Z INFO fork_choice_control::block_processor: Validating block with slot: 6008 +2024-09-30T06:49:03.908191Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 186, root: 0x083ee121eabacecc90b86c4efecb0f12600be891ca50388d3a8c6cb3c66e118d, head slot: 6007, head root: 0x3f127a268e875dba4b86796ab3213d5a250f67b040343d0b179fe5a00f708cd0) +2024-09-30T06:49:03.910307Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x74c652b33fe5deb419b457a8ee897e13d6e634e6ff0607c3980f8972c6b71cca, slot: 6008 +2024-09-30T06:49:03.920280Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6008 +2024-09-30T06:49:03.920305Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6008 +2024-09-30T06:49:03.936422Z INFO fork_choice_control::block_processor: Validating block with slot: 6009 +2024-09-30T06:49:03.937483Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf53c4cd879f7245718bf338ddea3030c99cbf55544b5f3053759520ca97bf273, slot: 6009 +2024-09-30T06:49:03.943762Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6009 +2024-09-30T06:49:03.943776Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6009 +2024-09-30T06:49:03.959897Z INFO fork_choice_control::block_processor: Validating block with slot: 6010 +2024-09-30T06:49:03.961026Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8674d98bcf3092d08e010bd20208884663274b89c55112c834c1709a0ec7da91, slot: 6010 +2024-09-30T06:49:03.968193Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6010 +2024-09-30T06:49:03.968214Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6010 +2024-09-30T06:49:03.984342Z INFO fork_choice_control::block_processor: Validating block with slot: 6011 +2024-09-30T06:49:03.986150Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x80e3979f450eed8f579fe9f12d25a1d92868e06e238aca6839e6303a389cc1d9, slot: 6011 +2024-09-30T06:49:03.994276Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6011 +2024-09-30T06:49:03.994293Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6011 +2024-09-30T06:49:04.011068Z INFO fork_choice_control::block_processor: Validating block with slot: 6012 +2024-09-30T06:49:04.012202Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3321bf8c67abd6ee3e72fd40d6d57829dc96b16e4a4cf76749fe57bdb20632c9, slot: 6012 +2024-09-30T06:49:04.018695Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6012 +2024-09-30T06:49:04.018716Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6012 +2024-09-30T06:49:04.035671Z INFO fork_choice_control::block_processor: Validating block with slot: 6013 +2024-09-30T06:49:04.036675Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x97332f53ef0b6f42bb2e18ccd407e3813845196cfe062027883e0a6f94f69b66, slot: 6013 +2024-09-30T06:49:04.038719Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 5952 +2024-09-30T06:49:04.042724Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6013 +2024-09-30T06:49:04.042741Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6013 +2024-09-30T06:49:04.059785Z INFO fork_choice_control::block_processor: Validating block with slot: 6014 +2024-09-30T06:49:04.061618Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x837861d3d1f03ba2ae3f48a1429817a78b2d7e0b971038ae2dfac3635529aa2e, slot: 6014 +2024-09-30T06:49:04.070776Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6014 +2024-09-30T06:49:04.070794Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6014 +2024-09-30T06:49:04.088041Z INFO fork_choice_control::block_processor: Validating block with slot: 6015 +2024-09-30T06:49:04.089170Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x14c6e8f7adb4ec4f86a45bf86ada8a0d16e6248290d9ab2db09c3244fec095d3, slot: 6015 +2024-09-30T06:49:04.095698Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6015 +2024-09-30T06:49:04.095711Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6015 +2024-09-30T06:49:04.112963Z INFO fork_choice_control::block_processor: Validating block with slot: 6017 +2024-09-30T06:49:04.114655Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x97d3c103f4f14b1d2d7fba77755af8d7a70e74b3f98817bf0aaec29fd5775d50, slot: 6017 +2024-09-30T06:49:04.285166Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6017 +2024-09-30T06:49:04.285190Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6017 +2024-09-30T06:49:04.296260Z INFO fork_choice_control::block_processor: Validating block with slot: 6018 +2024-09-30T06:49:04.298186Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb567587d40867f3096e671a2996d61e7ecbad4cfdb4a1f6cd94c587b1425ee47, slot: 6018 +2024-09-30T06:49:04.309346Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6018 +2024-09-30T06:49:04.309365Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6018 +2024-09-30T06:49:04.321458Z INFO fork_choice_control::block_processor: Validating block with slot: 6019 +2024-09-30T06:49:04.323108Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbc78f8ec4249e4b4f3f1e731d08296d726265186226081fc0cf6a712d304b66d, slot: 6019 +2024-09-30T06:49:04.331559Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6019 +2024-09-30T06:49:04.331574Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6019 +2024-09-30T06:49:04.343725Z INFO fork_choice_control::block_processor: Validating block with slot: 6020 +2024-09-30T06:49:04.344693Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4a3c7086e70a83e1abdfd20bab4be8b340462280585ce6e964b893119b7133f0, slot: 6020 +2024-09-30T06:49:04.351225Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6020 +2024-09-30T06:49:04.351242Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6020 +2024-09-30T06:49:04.363147Z INFO fork_choice_control::block_processor: Validating block with slot: 6021 +2024-09-30T06:49:04.364101Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa115e167f938e04fe7c1c15240e52cf69b76317c749a7c9bb6a928cac9f29f1d, slot: 6021 +2024-09-30T06:49:04.370987Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6021 +2024-09-30T06:49:04.371006Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6021 +2024-09-30T06:49:04.382956Z INFO fork_choice_control::block_processor: Validating block with slot: 6022 +2024-09-30T06:49:04.384204Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0c0e24f7c360c2aaa6c4a78f7cc9d4013728421ef261305a95da3e029cd66690, slot: 6022 +2024-09-30T06:49:04.390662Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6022 +2024-09-30T06:49:04.390678Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6022 +2024-09-30T06:49:04.403125Z INFO fork_choice_control::block_processor: Validating block with slot: 6023 +2024-09-30T06:49:04.405352Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf388704816bc8c2f934df0b7c8ad66ca9c184046d65bd970cc93ff08a523e06f, slot: 6023 +2024-09-30T06:49:04.414891Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6023 +2024-09-30T06:49:04.414915Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6023 +2024-09-30T06:49:04.428225Z INFO fork_choice_control::block_processor: Validating block with slot: 6024 +2024-09-30T06:49:04.430628Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcfda210cd59ae7a86069afb012845f53a16cd006fbd6d5cc2e83c81453112816, slot: 6024 +2024-09-30T06:49:04.441704Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6024 +2024-09-30T06:49:04.441727Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6024 +2024-09-30T06:49:04.454717Z INFO fork_choice_control::block_processor: Validating block with slot: 6026 +2024-09-30T06:49:04.456491Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfdd2d8c7db271fcb20c5bb6f01438d9050dc346bf57fc846723c6683150ab289, slot: 6026 +2024-09-30T06:49:04.465719Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6026 +2024-09-30T06:49:04.465734Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6026 +2024-09-30T06:49:04.479364Z INFO fork_choice_control::block_processor: Validating block with slot: 6027 +2024-09-30T06:49:04.482804Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x62f99eccb71cad117a135466701369258c53648fa1da83e84797c993fb5f48af, slot: 6027 +2024-09-30T06:49:04.498125Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6027 +2024-09-30T06:49:04.498148Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6027 +2024-09-30T06:49:04.512352Z INFO fork_choice_control::block_processor: Validating block with slot: 6028 +2024-09-30T06:49:04.513460Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x935d71dc0e88e480b6b48e091044d4460ed1ec977955f74dfe947a5398be0e5b, slot: 6028 +2024-09-30T06:49:04.519553Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6028 +2024-09-30T06:49:04.519582Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6028 +2024-09-30T06:49:04.533567Z INFO fork_choice_control::block_processor: Validating block with slot: 6029 +2024-09-30T06:49:04.534973Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb294784b4539db6361bfd371d134ea68c5470d2d002a34d57fdc7bb28acd077c, slot: 6029 +2024-09-30T06:49:04.541814Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6029 +2024-09-30T06:49:04.541834Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6029 +2024-09-30T06:49:04.556410Z INFO fork_choice_control::block_processor: Validating block with slot: 6031 +2024-09-30T06:49:04.559537Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2a31b02a3460561ea73271d934ec77585d81009f9b4a7b4088bc2a6f005ddfe8, slot: 6031 +2024-09-30T06:49:04.572042Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6031 +2024-09-30T06:49:04.572063Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6031 +2024-09-30T06:49:04.587231Z INFO fork_choice_control::block_processor: Validating block with slot: 6032 +2024-09-30T06:49:04.588482Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4bdf57a509fde10bb7d774ec9d14d0d57d82a438bcae729cc9f7580738c1c7af, slot: 6032 +2024-09-30T06:49:04.594736Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6032 +2024-09-30T06:49:04.594749Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6032 +2024-09-30T06:49:04.609847Z INFO fork_choice_control::block_processor: Validating block with slot: 6033 +2024-09-30T06:49:04.613112Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb9b27cffcc62a4870e2167327184f05f7a23ddbcdb5364c5293bddbe10357a59, slot: 6033 +2024-09-30T06:49:04.625657Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6033 +2024-09-30T06:49:04.625681Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6033 +2024-09-30T06:49:04.641904Z INFO fork_choice_control::block_processor: Validating block with slot: 6034 +2024-09-30T06:49:04.643042Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeaa3d50625f7fd8f7cbd6f767c8889fa3ec8f9d26b5ce9ef8417a4798b4d747f, slot: 6034 +2024-09-30T06:49:04.649069Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6034 +2024-09-30T06:49:04.649082Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6034 +2024-09-30T06:49:04.665095Z INFO fork_choice_control::block_processor: Validating block with slot: 6035 +2024-09-30T06:49:04.666320Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfcd08d34397df4825c19eedeacdd61f1b75eb8c11626edfa72df1d10470a7eb2, slot: 6035 +2024-09-30T06:49:04.673078Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6035 +2024-09-30T06:49:04.673098Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6035 +2024-09-30T06:49:04.689542Z INFO fork_choice_control::block_processor: Validating block with slot: 6036 +2024-09-30T06:49:04.690631Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x77a78bc684ab9ba24a70b1d7d19edbda70ee5d6e4ed6396309d03fac3a4bf319, slot: 6036 +2024-09-30T06:49:04.697067Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6036 +2024-09-30T06:49:04.697082Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6036 +2024-09-30T06:49:04.713716Z INFO fork_choice_control::block_processor: Validating block with slot: 6037 +2024-09-30T06:49:04.715953Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x29098e7ae220af4ed90c9592918ba02a6e04ba90a0e55933348c804d415ec816, slot: 6037 +2024-09-30T06:49:04.724961Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6037 +2024-09-30T06:49:04.724983Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6037 +2024-09-30T06:49:04.741765Z INFO fork_choice_control::block_processor: Validating block with slot: 6038 +2024-09-30T06:49:04.743028Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x76738e083df31fc801f9e694acf6b24bbd9420144d54f9ba5054b51bef22d122, slot: 6038 +2024-09-30T06:49:04.749474Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6038 +2024-09-30T06:49:04.749489Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6038 +2024-09-30T06:49:04.766396Z INFO fork_choice_control::block_processor: Validating block with slot: 6039 +2024-09-30T06:49:04.767413Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xadc9124e867cad9da922b7ed3e09a9ade2cbc99718aef2193030a7efeae439b1, slot: 6039 +2024-09-30T06:49:04.773338Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6039 +2024-09-30T06:49:04.773357Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6039 +2024-09-30T06:49:04.841697Z INFO fork_choice_control::block_processor: Validating block with slot: 6040 +2024-09-30T06:49:04.841701Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 187, root: 0x353b89b24bf97be7e6d0fe129cc1597005e3bfc23f04cd4e2b142ebf05857a64, head slot: 6039, head root: 0xadc9124e867cad9da922b7ed3e09a9ade2cbc99718aef2193030a7efeae439b1) +2024-09-30T06:49:04.842687Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x36f92e6fe7fab6f711a1883e7a2e2d385b90510fdc95e6eec185807f9af4e25d, slot: 6040 +2024-09-30T06:49:04.850529Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6040 +2024-09-30T06:49:04.850554Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6040 +2024-09-30T06:49:04.868420Z INFO fork_choice_control::block_processor: Validating block with slot: 6041 +2024-09-30T06:49:04.869819Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x698fd9391bbd5552c37c293eab7fe4e157b74694930f901d8aa98aeb644affbb, slot: 6041 +2024-09-30T06:49:04.877101Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6041 +2024-09-30T06:49:04.877118Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6041 +2024-09-30T06:49:04.894838Z INFO fork_choice_control::block_processor: Validating block with slot: 6042 +2024-09-30T06:49:04.896316Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x307aff3806f97775f6f28781d972d95df4178eccef24ec15b6b9701f7de85fbe, slot: 6042 +2024-09-30T06:49:04.903425Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6042 +2024-09-30T06:49:04.903450Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6042 +2024-09-30T06:49:04.921432Z INFO fork_choice_control::block_processor: Validating block with slot: 6043 +2024-09-30T06:49:04.923128Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbddc28fb9577ab9b4f045954f427bda56cf5cffa4b88b1a51e81b48e6da435ed, slot: 6043 +2024-09-30T06:49:04.931028Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6043 +2024-09-30T06:49:04.931045Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6043 +2024-09-30T06:49:04.949471Z INFO fork_choice_control::block_processor: Validating block with slot: 6044 +2024-09-30T06:49:04.950595Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9d8b6ca3b8644fe7212915ad01d7f5fb5f790a64b53139d18b19167fc775e0c5, slot: 6044 +2024-09-30T06:49:04.957245Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6044 +2024-09-30T06:49:04.957263Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6044 +2024-09-30T06:49:04.973616Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 5984 +2024-09-30T06:49:04.975701Z INFO fork_choice_control::block_processor: Validating block with slot: 6045 +2024-09-30T06:49:04.976676Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xef518031fe21f190774ca6ab3de7969037961ccc1f2cec124e596d68869e2a21, slot: 6045 +2024-09-30T06:49:04.983034Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6045 +2024-09-30T06:49:04.983048Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6045 +2024-09-30T06:49:05.002162Z INFO fork_choice_control::block_processor: Validating block with slot: 6046 +2024-09-30T06:49:05.003624Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3745857ccc7693d442bf4d0bd055aab5da839ec3a8323ad9c807d7d393096219, slot: 6046 +2024-09-30T06:49:05.010610Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6046 +2024-09-30T06:49:05.010628Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6046 +2024-09-30T06:49:05.029946Z INFO fork_choice_control::block_processor: Validating block with slot: 6047 +2024-09-30T06:49:05.031752Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaac3029de5810d69056bf49482dbdb534eb0083ec84b9f36de56e1e362675102, slot: 6047 +2024-09-30T06:49:05.056984Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6047 +2024-09-30T06:49:05.057036Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6047 +2024-09-30T06:49:05.079234Z INFO fork_choice_control::block_processor: Validating block with slot: 6048 +2024-09-30T06:49:05.080511Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbd0fb40b7ca8f295a2b3cfaaeb2c245a3f810dd31ac5478e754483e65d9f5c10, slot: 6048 +2024-09-30T06:49:05.181355Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6048 +2024-09-30T06:49:05.181378Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6048 +2024-09-30T06:49:05.192516Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6048) +2024-09-30T06:49:05.192616Z INFO fork_choice_control::block_processor: Validating block with slot: 6049 +2024-09-30T06:49:05.193832Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe6dc170a3ec0f4e2a2336609f415817978b953ad66de52376c852bee58bab42a, slot: 6049 +2024-09-30T06:49:05.269754Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6049 +2024-09-30T06:49:05.269775Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6049 +2024-09-30T06:49:05.281108Z INFO fork_choice_control::block_processor: Validating block with slot: 6050 +2024-09-30T06:49:05.282883Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe8ab21f3c5eb7c3f5e7d4062d12d8676181344d8cbbe3661a152cbe2aef5d935, slot: 6050 +2024-09-30T06:49:05.291558Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6050 +2024-09-30T06:49:05.291580Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6050 +2024-09-30T06:49:05.303483Z INFO fork_choice_control::block_processor: Validating block with slot: 6051 +2024-09-30T06:49:05.304467Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xadcec4c23a1bdbdb7a3b5ff169332788f10ff11abe7d79ac2a66359ce0aa764b, slot: 6051 +2024-09-30T06:49:05.310250Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6051 +2024-09-30T06:49:05.310263Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6051 +2024-09-30T06:49:05.322206Z INFO fork_choice_control::block_processor: Validating block with slot: 6052 +2024-09-30T06:49:05.325944Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1027764a81ef723ab1d571d0873874f8614b8d776d1c54fd2c881784f475de54, slot: 6052 +2024-09-30T06:49:05.342274Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6052 +2024-09-30T06:49:05.342296Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6052 +2024-09-30T06:49:05.355270Z INFO fork_choice_control::block_processor: Validating block with slot: 6053 +2024-09-30T06:49:05.356936Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb93642d53b5ff6a85af6459da876cf65df39fac502fb296860936cf4740c65aa, slot: 6053 +2024-09-30T06:49:05.364389Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6053 +2024-09-30T06:49:05.364405Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6053 +2024-09-30T06:49:05.377604Z INFO fork_choice_control::block_processor: Validating block with slot: 6054 +2024-09-30T06:49:05.378859Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa18891302d736704189cf4bee832560b1b47a4e36f6a5b34e2af4e534be24da3, slot: 6054 +2024-09-30T06:49:05.385840Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6054 +2024-09-30T06:49:05.385863Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6054 +2024-09-30T06:49:05.399206Z INFO fork_choice_control::block_processor: Validating block with slot: 6055 +2024-09-30T06:49:05.400474Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5bbbaa2abf70e0aec4a375a6ec8c056675538f81dff5d8e9f657da671bf6760f, slot: 6055 +2024-09-30T06:49:05.407915Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6055 +2024-09-30T06:49:05.407937Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6055 +2024-09-30T06:49:05.421481Z INFO fork_choice_control::block_processor: Validating block with slot: 6056 +2024-09-30T06:49:05.422745Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x908e0171aab1a8de2af7d1a4205caa7d0f9472dd80884424635b67457b8df77d, slot: 6056 +2024-09-30T06:49:05.429549Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6056 +2024-09-30T06:49:05.429561Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6056 +2024-09-30T06:49:05.443076Z INFO fork_choice_control::block_processor: Validating block with slot: 6057 +2024-09-30T06:49:05.445399Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbe640c6c9ccc8bc1266c8c4d69e2a822b0cffc8132eb0b1d0d32a2c770ccbd8c, slot: 6057 +2024-09-30T06:49:05.455051Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6057 +2024-09-30T06:49:05.455074Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6057 +2024-09-30T06:49:05.468686Z INFO fork_choice_control::block_processor: Validating block with slot: 6058 +2024-09-30T06:49:05.469807Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd508c5c6ec90e1169eb28ebeaa317cd1ba458dbe048ea921e2e8745e9c7e5855, slot: 6058 +2024-09-30T06:49:05.476433Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6058 +2024-09-30T06:49:05.476451Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6058 +2024-09-30T06:49:05.490600Z INFO fork_choice_control::block_processor: Validating block with slot: 6059 +2024-09-30T06:49:05.491971Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9c7091b7494f4ea90ab9909597de3625326116756904608ca6150ccfe88c5bb9, slot: 6059 +2024-09-30T06:49:05.498799Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6059 +2024-09-30T06:49:05.498812Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6059 +2024-09-30T06:49:05.513019Z INFO fork_choice_control::block_processor: Validating block with slot: 6060 +2024-09-30T06:49:05.516959Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x49230f6d0ed4c84b2e63586d1995f16850e9d03bfccfa320030ece739eec7540, slot: 6060 +2024-09-30T06:49:05.530899Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6060 +2024-09-30T06:49:05.530920Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6060 +2024-09-30T06:49:05.545955Z INFO fork_choice_control::block_processor: Validating block with slot: 6061 +2024-09-30T06:49:05.548015Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6536ee7726488e2ab8964319d888f6286d58c141885e3c468c92edba072634db, slot: 6061 +2024-09-30T06:49:05.557354Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6061 +2024-09-30T06:49:05.557375Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6061 +2024-09-30T06:49:05.573063Z INFO fork_choice_control::block_processor: Validating block with slot: 6062 +2024-09-30T06:49:05.574221Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x394e3af63b599aedbe39c0713342a9202c6eb6d2e172929f6dd64dfe3e5db26e, slot: 6062 +2024-09-30T06:49:05.580516Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6062 +2024-09-30T06:49:05.580585Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6062 +2024-09-30T06:49:05.597157Z INFO fork_choice_control::block_processor: Validating block with slot: 6063 +2024-09-30T06:49:05.598409Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xce1aa2cfc8c208a3ec93e3aeb50daf11b5a3f873f59113c2dbeb96ff5c2c2c24, slot: 6063 +2024-09-30T06:49:05.606008Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6063 +2024-09-30T06:49:05.606026Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6063 +2024-09-30T06:49:05.622191Z INFO fork_choice_control::block_processor: Validating block with slot: 6064 +2024-09-30T06:49:05.623587Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa7a8cf40901eaeaee65f2129d878f18a897dbc7cabc315f14827bc22ca941911, slot: 6064 +2024-09-30T06:49:05.631507Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6064 +2024-09-30T06:49:05.631523Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6064 +2024-09-30T06:49:05.647892Z INFO fork_choice_control::block_processor: Validating block with slot: 6065 +2024-09-30T06:49:05.649021Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb3bd58befef7c297de3be08b40c927f77636901b2235765fd446754a051555af, slot: 6065 +2024-09-30T06:49:05.655789Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6065 +2024-09-30T06:49:05.655810Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6065 +2024-09-30T06:49:05.672216Z INFO fork_choice_control::block_processor: Validating block with slot: 6066 +2024-09-30T06:49:05.674943Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xebde67ca192e7cbcccaef8afa8f6719f6a89d00728e37e60cb59e80227599927, slot: 6066 +2024-09-30T06:49:05.686447Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6066 +2024-09-30T06:49:05.686468Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6066 +2024-09-30T06:49:05.703266Z INFO fork_choice_control::block_processor: Validating block with slot: 6067 +2024-09-30T06:49:05.704260Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2494cecb3e091a2b973b013997f3267af2d6364218b35539c60f26e9be3ce08c, slot: 6067 +2024-09-30T06:49:05.710775Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6067 +2024-09-30T06:49:05.710819Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6067 +2024-09-30T06:49:05.727574Z INFO fork_choice_control::block_processor: Validating block with slot: 6068 +2024-09-30T06:49:05.730168Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x957a00b80ba72a73486ce04ff8e2bfb218e8a3c8a700332a1a6793cb9f0d8c63, slot: 6068 +2024-09-30T06:49:05.740136Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6068 +2024-09-30T06:49:05.740157Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6068 +2024-09-30T06:49:05.757230Z INFO fork_choice_control::block_processor: Validating block with slot: 6069 +2024-09-30T06:49:05.758679Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x05a4401e2a69bb977eb87d319e82c9e5ad59f6fc16fa7f5fa153453800589230, slot: 6069 +2024-09-30T06:49:05.765328Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6069 +2024-09-30T06:49:05.765343Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6069 +2024-09-30T06:49:05.782606Z INFO fork_choice_control::block_processor: Validating block with slot: 6070 +2024-09-30T06:49:05.783737Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x315b9053161e03d8754b3b1b318c37f83fd0654b4aa6bfc49f6d227c060ad7a7, slot: 6070 +2024-09-30T06:49:05.790172Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6070 +2024-09-30T06:49:05.790194Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6070 +2024-09-30T06:49:05.807780Z INFO fork_choice_control::block_processor: Validating block with slot: 6071 +2024-09-30T06:49:05.809828Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2c6d319e9b9fd7f6d810f660aaed4fc95bad8765fdec79a4f6a0bc2ca71400d1, slot: 6071 +2024-09-30T06:49:05.818143Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6071 +2024-09-30T06:49:05.818160Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6071 +2024-09-30T06:49:05.841217Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 188, root: 0x14c6e8f7adb4ec4f86a45bf86ada8a0d16e6248290d9ab2db09c3244fec095d3, head slot: 6071, head root: 0x2c6d319e9b9fd7f6d810f660aaed4fc95bad8765fdec79a4f6a0bc2ca71400d1) +2024-09-30T06:49:05.841237Z INFO fork_choice_control::block_processor: Validating block with slot: 6072 +2024-09-30T06:49:05.842205Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5fce2f0f52b1ed9fcb72844566a66003aca74d4564ba6b55244a3d102565fb59, slot: 6072 +2024-09-30T06:49:05.848206Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6072 +2024-09-30T06:49:05.848222Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6072 +2024-09-30T06:49:05.866152Z INFO fork_choice_control::block_processor: Validating block with slot: 6073 +2024-09-30T06:49:05.867126Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x405bfb2c8fb829c0505b56560fa396c432180adcb896fc4ea327b9b9d74dc217, slot: 6073 +2024-09-30T06:49:05.873026Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6073 +2024-09-30T06:49:05.873044Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6073 +2024-09-30T06:49:05.891224Z INFO fork_choice_control::block_processor: Validating block with slot: 6074 +2024-09-30T06:49:05.892337Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0cf5e25c561fa9b5d058a00e40bc1445dffca56866829ce8f1b230260c223d06, slot: 6074 +2024-09-30T06:49:05.898720Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6074 +2024-09-30T06:49:05.898737Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6074 +2024-09-30T06:49:05.917133Z INFO fork_choice_control::block_processor: Validating block with slot: 6075 +2024-09-30T06:49:05.919680Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0c3e859265faad1670996fc3862c4a9daaa1032768aabbbfa33c9cd8da126bfd, slot: 6075 +2024-09-30T06:49:05.929356Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6075 +2024-09-30T06:49:05.929376Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6075 +2024-09-30T06:49:05.948267Z INFO fork_choice_control::block_processor: Validating block with slot: 6076 +2024-09-30T06:49:05.949628Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaef538f5206b1c7c2c199158f68939df9012f13e72ca9f253542d3bed1fe236b, slot: 6076 +2024-09-30T06:49:05.956294Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6076 +2024-09-30T06:49:05.956315Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6076 +2024-09-30T06:49:05.975465Z INFO fork_choice_control::block_processor: Validating block with slot: 6077 +2024-09-30T06:49:05.976451Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbece770e627e12d5b81daeab5552c4dddd7f44d49f499c22a8e5602104889a83, slot: 6077 +2024-09-30T06:49:05.982403Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6077 +2024-09-30T06:49:05.982422Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6077 +2024-09-30T06:49:06.001983Z INFO fork_choice_control::block_processor: Validating block with slot: 6078 +2024-09-30T06:49:06.003963Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xada4841621607f5af94ee0c4951f5473d8c95a65eba4340521374f4b4f5b4bc5, slot: 6078 +2024-09-30T06:49:06.012659Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6078 +2024-09-30T06:49:06.012673Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6078 +2024-09-30T06:49:06.032164Z INFO fork_choice_control::block_processor: Validating block with slot: 6079 +2024-09-30T06:49:06.033147Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xefd272ea3161abbd4416e4cb001a23ee6aae610ab9e94e6d7e745a7cba003743, slot: 6079 +2024-09-30T06:49:06.039758Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6079 +2024-09-30T06:49:06.039777Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6079 +2024-09-30T06:49:06.059217Z INFO fork_choice_control::block_processor: Validating block with slot: 6080 +2024-09-30T06:49:06.060588Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe072060063986fa9b9133fd05fd6331b50b169021c14cb103119275a511af289, slot: 6080 +2024-09-30T06:49:06.162406Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6080 +2024-09-30T06:49:06.162429Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6080 +2024-09-30T06:49:06.174256Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6080) +2024-09-30T06:49:06.174344Z INFO fork_choice_control::block_processor: Validating block with slot: 6081 +2024-09-30T06:49:06.175451Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x293ffd1ec1739f562d40f1033a3ac09769909f10cc248ea581d314b258d159a7, slot: 6081 +2024-09-30T06:49:06.249375Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6081 +2024-09-30T06:49:06.249395Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6081 +2024-09-30T06:49:06.261429Z INFO fork_choice_control::block_processor: Validating block with slot: 6083 +2024-09-30T06:49:06.263367Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0a0e3469d676b52188062b2e97d7ced8c6accc279052bfe507ff2473c33b89d3, slot: 6083 +2024-09-30T06:49:06.275313Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6083 +2024-09-30T06:49:06.275332Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6083 +2024-09-30T06:49:06.287669Z INFO fork_choice_control::block_processor: Validating block with slot: 6084 +2024-09-30T06:49:06.288634Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0fe727e84002454b230ea41a77ae3c742a3128aa79cd6d0d0f7f3107e9b06855, slot: 6084 +2024-09-30T06:49:06.295155Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6084 +2024-09-30T06:49:06.295170Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6084 +2024-09-30T06:49:06.307826Z INFO fork_choice_control::block_processor: Validating block with slot: 6085 +2024-09-30T06:49:06.309517Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x55b183cb3725531927c1059cc08db01d8d62b7e8c7e719b0cc2860bff79603c2, slot: 6085 +2024-09-30T06:49:06.317415Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6085 +2024-09-30T06:49:06.317431Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6085 +2024-09-30T06:49:06.330056Z INFO fork_choice_control::block_processor: Validating block with slot: 6086 +2024-09-30T06:49:06.334161Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8bbf23f016b42330fe31daa48506e2de9888ed9808bb0e38a635f37ef69d5836, slot: 6086 +2024-09-30T06:49:06.348346Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6086 +2024-09-30T06:49:06.348366Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6086 +2024-09-30T06:49:06.361828Z INFO fork_choice_control::block_processor: Validating block with slot: 6087 +2024-09-30T06:49:06.363231Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x40ef367e122a77f4416e08d09dcd0086177c8b0b779e51e78fe34c323b33fc84, slot: 6087 +2024-09-30T06:49:06.371168Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6087 +2024-09-30T06:49:06.371190Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6087 +2024-09-30T06:49:06.384683Z INFO fork_choice_control::block_processor: Validating block with slot: 6088 +2024-09-30T06:49:06.385819Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8d3c82d4e9a42f7285042f31bd43b5250cccb67bb4d749bad4e4ba7e07f05e49, slot: 6088 +2024-09-30T06:49:06.392804Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6088 +2024-09-30T06:49:06.392822Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6088 +2024-09-30T06:49:06.406716Z INFO fork_choice_control::block_processor: Validating block with slot: 6089 +2024-09-30T06:49:06.407702Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xda313fc285afa073fe5f24e05a3145fae0af15671a0d0246d786fd52bd243610, slot: 6089 +2024-09-30T06:49:06.413604Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6089 +2024-09-30T06:49:06.413730Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6089 +2024-09-30T06:49:06.427918Z INFO fork_choice_control::block_processor: Validating block with slot: 6090 +2024-09-30T06:49:06.429013Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb04301262deaefea50fbaa99001af01a6cc6fba849f525fa9685b40c79b44c44, slot: 6090 +2024-09-30T06:49:06.434895Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6090 +2024-09-30T06:49:06.434915Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6090 +2024-09-30T06:49:06.448915Z INFO fork_choice_control::block_processor: Validating block with slot: 6091 +2024-09-30T06:49:06.450593Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xca46c4f5878ee1ed38f3c1bb4459144c86c961c83f5d506aa2ea01a1af763c16, slot: 6091 +2024-09-30T06:49:06.458453Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6091 +2024-09-30T06:49:06.458472Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6091 +2024-09-30T06:49:06.472745Z INFO fork_choice_control::block_processor: Validating block with slot: 6092 +2024-09-30T06:49:06.473849Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8f8ad69f0a9ce0d7efa34e8235aea1accd0ae3cb169871a4c4308729e54f8db1, slot: 6092 +2024-09-30T06:49:06.479803Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6092 +2024-09-30T06:49:06.479816Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6092 +2024-09-30T06:49:06.494437Z INFO fork_choice_control::block_processor: Validating block with slot: 6093 +2024-09-30T06:49:06.495407Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x817992974db3c1ba164238f1e192ec2cb7907d1d777a7e8d109feb056e706d93, slot: 6093 +2024-09-30T06:49:06.501037Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6093 +2024-09-30T06:49:06.501050Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6093 +2024-09-30T06:49:06.515528Z INFO fork_choice_control::block_processor: Validating block with slot: 6094 +2024-09-30T06:49:06.517460Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa70a9d6c342b53059b962022c03c5bd7ab33d03265c0dbab587d0714ee794376, slot: 6094 +2024-09-30T06:49:06.525838Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6094 +2024-09-30T06:49:06.525859Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6094 +2024-09-30T06:49:06.540710Z INFO fork_choice_control::block_processor: Validating block with slot: 6095 +2024-09-30T06:49:06.541827Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x979c9d42ae488ac632b36d76805c956314d3f50d55dfad36e9d783a8d7deb3ef, slot: 6095 +2024-09-30T06:49:06.547681Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6095 +2024-09-30T06:49:06.547696Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6095 +2024-09-30T06:49:06.562953Z INFO fork_choice_control::block_processor: Validating block with slot: 6096 +2024-09-30T06:49:06.564339Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x756f3dc611781bcf0dad40bb6a0dacce3fbad27ee7f0f4e4705374e9ca066aec, slot: 6096 +2024-09-30T06:49:06.571327Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6096 +2024-09-30T06:49:06.571348Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6096 +2024-09-30T06:49:06.586788Z INFO fork_choice_control::block_processor: Validating block with slot: 6097 +2024-09-30T06:49:06.587805Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x77fe33dddd233393029bd463e627c7e48f56070ae199c8f083abec17fe5b2301, slot: 6097 +2024-09-30T06:49:06.593278Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6097 +2024-09-30T06:49:06.593291Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6097 +2024-09-30T06:49:06.608963Z INFO fork_choice_control::block_processor: Validating block with slot: 6098 +2024-09-30T06:49:06.609923Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe964cd11cc6ac9d80cf62a0597811bae91e648eed389249ccd729749c6a582cd, slot: 6098 +2024-09-30T06:49:06.615689Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6098 +2024-09-30T06:49:06.615705Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6098 +2024-09-30T06:49:06.631576Z INFO fork_choice_control::block_processor: Validating block with slot: 6099 +2024-09-30T06:49:06.634782Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x11cee36ef44181cee1975fcb9bc56df8bcda640f3bbfcec3f18fade25adef2ba, slot: 6099 +2024-09-30T06:49:06.646364Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6099 +2024-09-30T06:49:06.646381Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6099 +2024-09-30T06:49:06.662864Z INFO fork_choice_control::block_processor: Validating block with slot: 6100 +2024-09-30T06:49:06.663959Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9155b434b7e9d4e956b3d8da6c5de2e75877b4e0660afaaeb21d754b48d5433f, slot: 6100 +2024-09-30T06:49:06.670569Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6100 +2024-09-30T06:49:06.670589Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6100 +2024-09-30T06:49:06.687172Z INFO fork_choice_control::block_processor: Validating block with slot: 6101 +2024-09-30T06:49:06.688166Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcdb6a5618296e81da11d7eb686ef503855e8fd86b79b23166a332638a93edc79, slot: 6101 +2024-09-30T06:49:06.694243Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6101 +2024-09-30T06:49:06.694255Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6101 +2024-09-30T06:49:06.710969Z INFO fork_choice_control::block_processor: Validating block with slot: 6102 +2024-09-30T06:49:06.712487Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb2d89f03954069d4bf805c783fd419eb0b9d609dc915fcae1be04e35b01f13e5, slot: 6102 +2024-09-30T06:49:06.719698Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6102 +2024-09-30T06:49:06.719718Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6102 +2024-09-30T06:49:06.736725Z INFO fork_choice_control::block_processor: Validating block with slot: 6103 +2024-09-30T06:49:06.738018Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5fb7fe8ba2f8d4c055a53a35899430cef976886c3a3450475652c4588deade44, slot: 6103 +2024-09-30T06:49:06.744391Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6103 +2024-09-30T06:49:06.744410Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6103 +2024-09-30T06:49:06.767779Z INFO fork_choice_control::block_processor: Validating block with slot: 6104 +2024-09-30T06:49:06.767837Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 189, root: 0xbd0fb40b7ca8f295a2b3cfaaeb2c245a3f810dd31ac5478e754483e65d9f5c10, head slot: 6103, head root: 0x5fb7fe8ba2f8d4c055a53a35899430cef976886c3a3450475652c4588deade44) +2024-09-30T06:49:06.769356Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1f126b5d4d3414141c7b94a6e3213afca5f5dd9130bd0aa4cf7b091429548804, slot: 6104 +2024-09-30T06:49:06.776963Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6104 +2024-09-30T06:49:06.776983Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6104 +2024-09-30T06:49:06.794936Z INFO fork_choice_control::block_processor: Validating block with slot: 6105 +2024-09-30T06:49:06.796201Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3a0a12b49d19f571cf5e3ee095f84935a2647c66cd014f5c23927e55e511cb7e, slot: 6105 +2024-09-30T06:49:06.804542Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6105 +2024-09-30T06:49:06.804560Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6105 +2024-09-30T06:49:06.822467Z INFO fork_choice_control::block_processor: Validating block with slot: 6106 +2024-09-30T06:49:06.823451Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6823188453edcad9a229a759ba8e02d2e4e965b0cbd20c7b03efb72ad9943086, slot: 6106 +2024-09-30T06:49:06.829669Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6106 +2024-09-30T06:49:06.829685Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6106 +2024-09-30T06:49:06.847495Z INFO fork_choice_control::block_processor: Validating block with slot: 6107 +2024-09-30T06:49:06.848620Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6db6359cd763e49223848adfb3f988e85cb3f470b27080c69a50625271bee6b4, slot: 6107 +2024-09-30T06:49:06.856336Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6107 +2024-09-30T06:49:06.856356Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6107 +2024-09-30T06:49:06.874958Z INFO fork_choice_control::block_processor: Validating block with slot: 6108 +2024-09-30T06:49:06.877821Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x484c36f0441f20a890cef1c2468b910b452b126e7c35a775fa1de5e6fa2b4c3f, slot: 6108 +2024-09-30T06:49:06.887504Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6108 +2024-09-30T06:49:06.887528Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6108 +2024-09-30T06:49:06.897462Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 6048 +2024-09-30T06:49:06.906025Z INFO fork_choice_control::block_processor: Validating block with slot: 6109 +2024-09-30T06:49:06.907715Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x00c323a2802fd7afcf5bff90f7ef671192407e3a15f4eb01dc20a121648950d5, slot: 6109 +2024-09-30T06:49:06.915983Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6109 +2024-09-30T06:49:06.916000Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6109 +2024-09-30T06:49:06.935054Z INFO fork_choice_control::block_processor: Validating block with slot: 6110 +2024-09-30T06:49:06.936100Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7ea07ea02b7f92dfc0132afb6e65467e5724d05f1502885bca6acbfe84cc47f5, slot: 6110 +2024-09-30T06:49:06.942318Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6110 +2024-09-30T06:49:06.942337Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6110 +2024-09-30T06:49:06.961051Z INFO fork_choice_control::block_processor: Validating block with slot: 6111 +2024-09-30T06:49:06.962319Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcfcdcaf07a5c2d0a9cf88ee7e34ad2f3259475dbf9242c09ad96e542f491a6f1, slot: 6111 +2024-09-30T06:49:06.969235Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6111 +2024-09-30T06:49:06.969256Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6111 +2024-09-30T06:49:06.988136Z INFO fork_choice_control::block_processor: Validating block with slot: 6112 +2024-09-30T06:49:06.989537Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf1df9e7e3a2b3c0d6467b617498db488067a05145700db36c22798704349398f, slot: 6112 +2024-09-30T06:49:07.093925Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6112 +2024-09-30T06:49:07.093946Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6112 +2024-09-30T06:49:07.104706Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6112) +2024-09-30T06:49:07.104970Z INFO fork_choice_control::block_processor: Validating block with slot: 6113 +2024-09-30T06:49:07.106266Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd73159e47d90905750912135c4d481218c34545b19829ef61b2d80fbe7e7c2b5, slot: 6113 +2024-09-30T06:49:07.181305Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6113 +2024-09-30T06:49:07.181327Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6113 +2024-09-30T06:49:07.192285Z INFO fork_choice_control::block_processor: Validating block with slot: 6114 +2024-09-30T06:49:07.196729Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbcdd3fedaf8ad044ec3be7e3df2a1400935a264ae634574bca725433a97f533c, slot: 6114 +2024-09-30T06:49:07.216625Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6114 +2024-09-30T06:49:07.216646Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6114 +2024-09-30T06:49:07.229095Z INFO fork_choice_control::block_processor: Validating block with slot: 6115 +2024-09-30T06:49:07.230480Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6e82c961de856d47f8bcbe795fb9a94d7c8c9cc363a4aeb58678949a32791db3, slot: 6115 +2024-09-30T06:49:07.238381Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6115 +2024-09-30T06:49:07.238404Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6115 +2024-09-30T06:49:07.250603Z INFO fork_choice_control::block_processor: Validating block with slot: 6116 +2024-09-30T06:49:07.251727Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x42b1339f21b0de7e63826e6a0a5fb7661f90093ece050de2a968603e16cb3ec4, slot: 6116 +2024-09-30T06:49:07.259526Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6116 +2024-09-30T06:49:07.259540Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6116 +2024-09-30T06:49:07.272250Z INFO fork_choice_control::block_processor: Validating block with slot: 6117 +2024-09-30T06:49:07.274483Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa75d8213f3ca1d0ddb5cf8fff4f397c25e0d4fe474ab79ecfab0b53ba65dcca3, slot: 6117 +2024-09-30T06:49:07.284006Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6117 +2024-09-30T06:49:07.284020Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6117 +2024-09-30T06:49:07.296747Z INFO fork_choice_control::block_processor: Validating block with slot: 6118 +2024-09-30T06:49:07.298006Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb29ef3352421faaec1fb1d9581a2dba856bd92cc5e1b91668301819cae09727c, slot: 6118 +2024-09-30T06:49:07.306522Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6118 +2024-09-30T06:49:07.306543Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6118 +2024-09-30T06:49:07.320970Z INFO fork_choice_control::block_processor: Validating block with slot: 6119 +2024-09-30T06:49:07.322533Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3ba26de2d300816e65b1d6f1da8eda4bbfe5980de44da8b606810187986b931a, slot: 6119 +2024-09-30T06:49:07.334800Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6119 +2024-09-30T06:49:07.334825Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6119 +2024-09-30T06:49:07.349036Z INFO fork_choice_control::block_processor: Validating block with slot: 6120 +2024-09-30T06:49:07.350016Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x03887bad29d1346213e3d673877f111851ec4817151f3c8d28128c75784f1ce9, slot: 6120 +2024-09-30T06:49:07.356735Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6120 +2024-09-30T06:49:07.356757Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6120 +2024-09-30T06:49:07.369933Z INFO fork_choice_control::block_processor: Validating block with slot: 6121 +2024-09-30T06:49:07.371358Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x036d8c0be9542a9eb1554d834f8c873eb9e1668d1593f2591b10bd0f39374afb, slot: 6121 +2024-09-30T06:49:07.378982Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6121 +2024-09-30T06:49:07.378996Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6121 +2024-09-30T06:49:07.392396Z INFO fork_choice_control::block_processor: Validating block with slot: 6122 +2024-09-30T06:49:07.393510Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xef60c56e25d68cad9a535be1d0e511c547a18654dc557f093c269e54d043038f, slot: 6122 +2024-09-30T06:49:07.399621Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6122 +2024-09-30T06:49:07.399640Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6122 +2024-09-30T06:49:07.413100Z INFO fork_choice_control::block_processor: Validating block with slot: 6123 +2024-09-30T06:49:07.414462Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaa931458a34e91c730d077150f4e9a2a63dacae78aaef6b9e00f57b49ebae07f, slot: 6123 +2024-09-30T06:49:07.421325Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6123 +2024-09-30T06:49:07.421345Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6123 +2024-09-30T06:49:07.434853Z INFO fork_choice_control::block_processor: Validating block with slot: 6124 +2024-09-30T06:49:07.436010Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x39318b3133bccb08a2400be3bba4c7c0f3010a71d7147da8bd8ff90f7b13fa14, slot: 6124 +2024-09-30T06:49:07.441990Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6124 +2024-09-30T06:49:07.442003Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6124 +2024-09-30T06:49:07.456154Z INFO fork_choice_control::block_processor: Validating block with slot: 6125 +2024-09-30T06:49:07.457927Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7c221e5aff831bafb0cd79e3b1ff26060859ab66f2476a7fa983deef9d2521b6, slot: 6125 +2024-09-30T06:49:07.465754Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6125 +2024-09-30T06:49:07.465767Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6125 +2024-09-30T06:49:07.479895Z INFO fork_choice_control::block_processor: Validating block with slot: 6126 +2024-09-30T06:49:07.481264Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x17e6c8e24401c99d142d493cbef595ae0e6c993201ff4b1c977cee1b42c91493, slot: 6126 +2024-09-30T06:49:07.489455Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6126 +2024-09-30T06:49:07.489476Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6126 +2024-09-30T06:49:07.504060Z INFO fork_choice_control::block_processor: Validating block with slot: 6127 +2024-09-30T06:49:07.505441Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9e2cc57a2db4cce03b9f111eaf9d474c76704243075a56afcb6f580c85fb5258, slot: 6127 +2024-09-30T06:49:07.512102Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6127 +2024-09-30T06:49:07.512115Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6127 +2024-09-30T06:49:07.526694Z INFO fork_choice_control::block_processor: Validating block with slot: 6128 +2024-09-30T06:49:07.527680Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x68d2e683f61efc1123c5908310c4250f1a83d0b68bb2efc49a9f04d637308921, slot: 6128 +2024-09-30T06:49:07.533791Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6128 +2024-09-30T06:49:07.533805Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6128 +2024-09-30T06:49:07.548439Z INFO fork_choice_control::block_processor: Validating block with slot: 6129 +2024-09-30T06:49:07.550138Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x28570da951489fc8c475b4c016958a3355f9054e08ac7379835e85e075491060, slot: 6129 +2024-09-30T06:49:07.558297Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6129 +2024-09-30T06:49:07.558316Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6129 +2024-09-30T06:49:07.573504Z INFO fork_choice_control::block_processor: Validating block with slot: 6130 +2024-09-30T06:49:07.574634Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xefd02eae1dc847658f5ff87f426db836174de087de299f3f9e47737563ebe028, slot: 6130 +2024-09-30T06:49:07.582179Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6130 +2024-09-30T06:49:07.582195Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6130 +2024-09-30T06:49:07.597330Z INFO fork_choice_control::block_processor: Validating block with slot: 6131 +2024-09-30T06:49:07.598560Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xad792e687cf933f2b56e75121d64168f5f166942b4eb8d071304d87b2469557d, slot: 6131 +2024-09-30T06:49:07.605471Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6131 +2024-09-30T06:49:07.605489Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6131 +2024-09-30T06:49:07.620928Z INFO fork_choice_control::block_processor: Validating block with slot: 6132 +2024-09-30T06:49:07.622174Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xac32a8e630966c116c9f32040cb0dcff77e802b696e594f0e6ec860f76c61383, slot: 6132 +2024-09-30T06:49:07.628434Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6132 +2024-09-30T06:49:07.628446Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6132 +2024-09-30T06:49:07.643867Z INFO fork_choice_control::block_processor: Validating block with slot: 6133 +2024-09-30T06:49:07.645920Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf8478c0bdb3678373d487abed0774d936c1854288d1aa57ff6f200ae53f1f163, slot: 6133 +2024-09-30T06:49:07.655471Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6133 +2024-09-30T06:49:07.655492Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6133 +2024-09-30T06:49:07.671510Z INFO fork_choice_control::block_processor: Validating block with slot: 6134 +2024-09-30T06:49:07.672912Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb84d205737a4f5f78295d5aef06cf6aaeeb0d7775e7ff29d012eb270f9d0ca6a, slot: 6134 +2024-09-30T06:49:07.680554Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6134 +2024-09-30T06:49:07.680568Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6134 +2024-09-30T06:49:07.696804Z INFO fork_choice_control::block_processor: Validating block with slot: 6135 +2024-09-30T06:49:07.697932Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x65182565b16e4fbfa75be6ec96b3c5be34fbb27a233a23731103686a79094b4f, slot: 6135 +2024-09-30T06:49:07.705020Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6135 +2024-09-30T06:49:07.705043Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6135 +2024-09-30T06:49:07.726985Z INFO fork_choice_control::block_processor: Validating block with slot: 6136 +2024-09-30T06:49:07.726989Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 190, root: 0xe072060063986fa9b9133fd05fd6331b50b169021c14cb103119275a511af289, head slot: 6135, head root: 0x65182565b16e4fbfa75be6ec96b3c5be34fbb27a233a23731103686a79094b4f) +2024-09-30T06:49:07.728110Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x92fca418a8806c10009b452e770d7d21f23b4e6627a3f672ba090513b42ad0c9, slot: 6136 +2024-09-30T06:49:07.735060Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6136 +2024-09-30T06:49:07.735087Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6136 +2024-09-30T06:49:07.752260Z INFO fork_choice_control::block_processor: Validating block with slot: 6137 +2024-09-30T06:49:07.753776Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x588ae953440967000ea58df507f359ef17376bdbc9a03bde8b84e0cb39511f27, slot: 6137 +2024-09-30T06:49:07.762208Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6137 +2024-09-30T06:49:07.762227Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6137 +2024-09-30T06:49:07.779613Z INFO fork_choice_control::block_processor: Validating block with slot: 6138 +2024-09-30T06:49:07.781440Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x673af035e53a5995c285dd69ef656659ebd4234d011f389f1a56e3fd4fcb6be5, slot: 6138 +2024-09-30T06:49:07.790751Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6138 +2024-09-30T06:49:07.790772Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6138 +2024-09-30T06:49:07.808467Z INFO fork_choice_control::block_processor: Validating block with slot: 6139 +2024-09-30T06:49:07.809735Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc089e87514d5dbf2e300e523acf7634ca599f3b7b08ae094d91738d2df72ea9b, slot: 6139 +2024-09-30T06:49:07.817340Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6139 +2024-09-30T06:49:07.817357Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6139 +2024-09-30T06:49:07.834660Z INFO fork_choice_control::block_processor: Validating block with slot: 6140 +2024-09-30T06:49:07.835852Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe77735d559328db62572c344e629e7b3ab7632d370bdf56aaae5727bca7c97b9, slot: 6140 +2024-09-30T06:49:07.842177Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6140 +2024-09-30T06:49:07.842191Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6140 +2024-09-30T06:49:07.860801Z INFO fork_choice_control::block_processor: Validating block with slot: 6141 +2024-09-30T06:49:07.861164Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 6080 +2024-09-30T06:49:07.862077Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe575100b310a18431acfef9a4f25944a6d61b8c945cb40d4013e6254f6bf0c68, slot: 6141 +2024-09-30T06:49:07.873326Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6141 +2024-09-30T06:49:07.873346Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6141 +2024-09-30T06:49:07.892660Z INFO fork_choice_control::block_processor: Validating block with slot: 6143 +2024-09-30T06:49:07.894780Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6ecdaa0837e14e185ca586ee01939056a5102e1330f6fb79b3f35a98544a8ffc, slot: 6143 +2024-09-30T06:49:07.907569Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6143 +2024-09-30T06:49:07.907592Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6143 +2024-09-30T06:49:07.926399Z INFO fork_choice_control::block_processor: Validating block with slot: 6144 +2024-09-30T06:49:07.928371Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2116c35ff7e0093e0f4927f92b13ef8c9ea0745517e47a8dc158945b4ec4e0a0, slot: 6144 +2024-09-30T06:49:07.943740Z INFO fork_choice_control::block_processor: Validating block with slot: 6466 +2024-09-30T06:49:07.943793Z INFO fork_choice_control::block_processor: Validating block with slot: 6465 +2024-09-30T06:49:07.943810Z INFO fork_choice_control::block_processor: Validating block with slot: 6469 +2024-09-30T06:49:07.943838Z INFO fork_choice_control::block_processor: Validating block with slot: 6467 +2024-09-30T06:49:07.943854Z INFO fork_choice_control::block_processor: Validating block with slot: 6470 +2024-09-30T06:49:07.945632Z INFO fork_choice_control::block_processor: Validating block with slot: 6468 +2024-09-30T06:49:07.994663Z INFO fork_choice_control::block_processor: Validating block with slot: 6473 +2024-09-30T06:49:07.994684Z INFO fork_choice_control::block_processor: Validating block with slot: 6471 +2024-09-30T06:49:07.994689Z INFO fork_choice_control::block_processor: Validating block with slot: 6472 +2024-09-30T06:49:07.994710Z INFO fork_choice_control::block_processor: Validating block with slot: 6474 +2024-09-30T06:49:08.010577Z INFO fork_choice_control::block_processor: Validating block with slot: 6476 +2024-09-30T06:49:08.010596Z INFO fork_choice_control::block_processor: Validating block with slot: 6475 +2024-09-30T06:49:08.026847Z INFO fork_choice_control::block_processor: Validating block with slot: 6478 +2024-09-30T06:49:08.026865Z INFO fork_choice_control::block_processor: Validating block with slot: 6477 +2024-09-30T06:49:08.026954Z INFO fork_choice_control::block_processor: Validating block with slot: 6479 +2024-09-30T06:49:08.027035Z INFO fork_choice_control::block_processor: Validating block with slot: 6480 +2024-09-30T06:49:08.027145Z INFO fork_choice_control::block_processor: Validating block with slot: 6481 +2024-09-30T06:49:08.027798Z INFO fork_choice_control::block_processor: Validating block with slot: 6482 +2024-09-30T06:49:08.027913Z INFO fork_choice_control::block_processor: Validating block with slot: 6483 +2024-09-30T06:49:08.027938Z INFO fork_choice_control::block_processor: Validating block with slot: 6484 +2024-09-30T06:49:08.028879Z INFO fork_choice_control::block_processor: Validating block with slot: 6485 +2024-09-30T06:49:08.029128Z INFO fork_choice_control::block_processor: Validating block with slot: 6486 +2024-09-30T06:49:08.032598Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6144 +2024-09-30T06:49:08.032611Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6144 +2024-09-30T06:49:08.043459Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6144) +2024-09-30T06:49:08.043613Z INFO fork_choice_control::block_processor: Validating block with slot: 6145 +2024-09-30T06:49:08.044591Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa53e24d7fa93687d482c3b9d486516523bb0a849f9c91fa2fddd211337ac2765, slot: 6145 +2024-09-30T06:49:08.047650Z INFO fork_choice_control::block_processor: Validating block with slot: 6488 +2024-09-30T06:49:08.047688Z INFO fork_choice_control::block_processor: Validating block with slot: 6487 +2024-09-30T06:49:08.056464Z INFO fork_choice_control::block_processor: Validating block with slot: 6491 +2024-09-30T06:49:08.056482Z INFO fork_choice_control::block_processor: Validating block with slot: 6489 +2024-09-30T06:49:08.056490Z INFO fork_choice_control::block_processor: Validating block with slot: 6492 +2024-09-30T06:49:08.056527Z INFO fork_choice_control::block_processor: Validating block with slot: 6490 +2024-09-30T06:49:08.056514Z INFO fork_choice_control::block_processor: Validating block with slot: 6495 +2024-09-30T06:49:08.056605Z INFO fork_choice_control::block_processor: Validating block with slot: 6493 +2024-09-30T06:49:08.057572Z INFO fork_choice_control::block_processor: Validating block with slot: 6494 +2024-09-30T06:49:08.097767Z INFO fork_choice_control::block_processor: Validating block with slot: 6496 +2024-09-30T06:49:08.122994Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6145 +2024-09-30T06:49:08.123016Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6145 +2024-09-30T06:49:08.133846Z INFO fork_choice_control::block_processor: Validating block with slot: 6146 +2024-09-30T06:49:08.134816Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5fec6b992d77715c11462d2104e74b5f15b2ffbdc3dbf17fbb9afbdf8de69d02, slot: 6146 +2024-09-30T06:49:08.144195Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6146 +2024-09-30T06:49:08.144208Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6146 +2024-09-30T06:49:08.155393Z INFO fork_choice_control::block_processor: Validating block with slot: 6147 +2024-09-30T06:49:08.156377Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe0b27cbfab4a255cd72bf76fcb77c78bf0278b22d19a56ed36e4967e40ec89a5, slot: 6147 +2024-09-30T06:49:08.162879Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6147 +2024-09-30T06:49:08.162891Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6147 +2024-09-30T06:49:08.174190Z INFO fork_choice_control::block_processor: Validating block with slot: 6148 +2024-09-30T06:49:08.176492Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd0af7b176924b7f305cfa11b6f4c02837d4e4f56b7c3b6f8209e350de11e60cc, slot: 6148 +2024-09-30T06:49:08.187750Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6148 +2024-09-30T06:49:08.187775Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6148 +2024-09-30T06:49:08.199050Z INFO fork_choice_control::block_processor: Validating block with slot: 6149 +2024-09-30T06:49:08.201010Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaf71cd9b89350e4f0eca9db3f013be6bb839d088d72053f9f5f56704414be7aa, slot: 6149 +2024-09-30T06:49:08.209951Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6149 +2024-09-30T06:49:08.209971Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6149 +2024-09-30T06:49:08.221857Z INFO fork_choice_control::block_processor: Validating block with slot: 6150 +2024-09-30T06:49:08.223685Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x13a6fe22fd27fd79df9aa3fadcc92b06a150bc2a6fd556e17790ed0f5a518aed, slot: 6150 +2024-09-30T06:49:08.232443Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6150 +2024-09-30T06:49:08.232463Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6150 +2024-09-30T06:49:08.244532Z INFO fork_choice_control::block_processor: Validating block with slot: 6151 +2024-09-30T06:49:08.245497Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x655f80f5705f61f281b491a2482dc57c3347cc669a016fe9980c7579e8ee23a3, slot: 6151 +2024-09-30T06:49:08.250883Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6151 +2024-09-30T06:49:08.250899Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6151 +2024-09-30T06:49:08.263082Z INFO fork_choice_control::block_processor: Validating block with slot: 6152 +2024-09-30T06:49:08.264347Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd72d75f095c36e684fb3c2451c59e46c6e44f0914e847f4503ab127c02b4f0df, slot: 6152 +2024-09-30T06:49:08.271687Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6152 +2024-09-30T06:49:08.271708Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6152 +2024-09-30T06:49:08.283953Z INFO fork_choice_control::block_processor: Validating block with slot: 6153 +2024-09-30T06:49:08.284937Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb34a5e716b12946f716064b3cfb6d453f3f9c09523f68884f207764c0739e178, slot: 6153 +2024-09-30T06:49:08.290655Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6153 +2024-09-30T06:49:08.290673Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6153 +2024-09-30T06:49:08.303387Z INFO fork_choice_control::block_processor: Validating block with slot: 6154 +2024-09-30T06:49:08.304662Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2c061aae7553fcc81795afee1aae2b2f4603a7a53d1b90781a25322532bb45e0, slot: 6154 +2024-09-30T06:49:08.311018Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6154 +2024-09-30T06:49:08.311034Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6154 +2024-09-30T06:49:08.324009Z INFO fork_choice_control::block_processor: Validating block with slot: 6155 +2024-09-30T06:49:08.324977Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xadbe6dcaf7f504651feb2ecf7ba8a0229b28933297f9c324bf6f77013da80a57, slot: 6155 +2024-09-30T06:49:08.330560Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6155 +2024-09-30T06:49:08.330571Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6155 +2024-09-30T06:49:08.343435Z INFO fork_choice_control::block_processor: Validating block with slot: 6156 +2024-09-30T06:49:08.344532Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1d3b804fc50c58ac4dd7071c885cbce1e6138d7022a721724c49ed25d765878f, slot: 6156 +2024-09-30T06:49:08.350620Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6156 +2024-09-30T06:49:08.350639Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6156 +2024-09-30T06:49:08.363650Z INFO fork_choice_control::block_processor: Validating block with slot: 6157 +2024-09-30T06:49:08.367050Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf8c2eafa18f2cbbab465fccc82274117898cca9d91b681c98f3675f20a1bff47, slot: 6157 +2024-09-30T06:49:08.379502Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6157 +2024-09-30T06:49:08.379521Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6157 +2024-09-30T06:49:08.393489Z INFO fork_choice_control::block_processor: Validating block with slot: 6158 +2024-09-30T06:49:08.395274Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb02f8c62e4b321f70664b9f6b42beb173daf13db57d57986a4f07b80e38a8b66, slot: 6158 +2024-09-30T06:49:08.403060Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6158 +2024-09-30T06:49:08.403081Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6158 +2024-09-30T06:49:08.416867Z INFO fork_choice_control::block_processor: Validating block with slot: 6159 +2024-09-30T06:49:08.418135Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x93e04cf8c3d2761a938c8a012401838bc2973eb26815acc71c0921b7a79e84aa, slot: 6159 +2024-09-30T06:49:08.424658Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6159 +2024-09-30T06:49:08.424674Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6159 +2024-09-30T06:49:08.438869Z INFO fork_choice_control::block_processor: Validating block with slot: 6160 +2024-09-30T06:49:08.439973Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x464c4d68c02a9f4e0b0acaeaf2a2257bb77986932e6d8c2ed58897b9a42b2473, slot: 6160 +2024-09-30T06:49:08.445961Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6160 +2024-09-30T06:49:08.445976Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6160 +2024-09-30T06:49:08.460199Z INFO fork_choice_control::block_processor: Validating block with slot: 6161 +2024-09-30T06:49:08.462244Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc710735c74d005e6aae0aaa513a242d75bdca1970cba8e46460e42adc93c30a4, slot: 6161 +2024-09-30T06:49:08.470944Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6161 +2024-09-30T06:49:08.470970Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6161 +2024-09-30T06:49:08.485801Z INFO fork_choice_control::block_processor: Validating block with slot: 6162 +2024-09-30T06:49:08.487069Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x414522edd3effb95321e033f18b71f36d16259b4aebe60fae24175f2e8039fe4, slot: 6162 +2024-09-30T06:49:08.493343Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6162 +2024-09-30T06:49:08.493362Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6162 +2024-09-30T06:49:08.508389Z INFO fork_choice_control::block_processor: Validating block with slot: 6163 +2024-09-30T06:49:08.509656Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6248965e78bfdc4f70fd819a57f9c8f9a1e8f66daaff14a1f857277b52ca3667, slot: 6163 +2024-09-30T06:49:08.516592Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6163 +2024-09-30T06:49:08.516613Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6163 +2024-09-30T06:49:08.531761Z INFO fork_choice_control::block_processor: Validating block with slot: 6164 +2024-09-30T06:49:08.532732Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x01ef812b772e17012074f3da50a1a0931cc17d40498785c05c90d4df148c17d8, slot: 6164 +2024-09-30T06:49:08.539172Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6164 +2024-09-30T06:49:08.539191Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6164 +2024-09-30T06:49:08.554583Z INFO fork_choice_control::block_processor: Validating block with slot: 6165 +2024-09-30T06:49:08.555560Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x180903ffb1b82d7f06de981022fa491f6c3b93e507804ddcb990e484aaa67105, slot: 6165 +2024-09-30T06:49:08.561542Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6165 +2024-09-30T06:49:08.561554Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6165 +2024-09-30T06:49:08.576908Z INFO fork_choice_control::block_processor: Validating block with slot: 6167 +2024-09-30T06:49:08.578814Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd8d34891b7f6f3b3ae18e010a2c4dc492b7893a75eff7113e7634061768f7402, slot: 6167 +2024-09-30T06:49:08.589276Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6167 +2024-09-30T06:49:08.589296Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6167 +2024-09-30T06:49:08.610401Z INFO fork_choice_control::block_processor: Validating block with slot: 6168 +2024-09-30T06:49:08.610404Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 191, root: 0xf1df9e7e3a2b3c0d6467b617498db488067a05145700db36c22798704349398f, head slot: 6167, head root: 0xd8d34891b7f6f3b3ae18e010a2c4dc492b7893a75eff7113e7634061768f7402) +2024-09-30T06:49:08.611977Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf0ccc9933104117b1937edaa845c929c8f1ed862528ea064e9500785a2c0fea7, slot: 6168 +2024-09-30T06:49:08.622310Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6168 +2024-09-30T06:49:08.622331Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6168 +2024-09-30T06:49:08.640120Z INFO fork_choice_control::block_processor: Validating block with slot: 6169 +2024-09-30T06:49:08.644026Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc84a9a95235d108699cdd16b46a1622799869e863df840f8edf3f9ccd2eab6fd, slot: 6169 +2024-09-30T06:49:08.661616Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6169 +2024-09-30T06:49:08.661637Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6169 +2024-09-30T06:49:08.679110Z INFO fork_choice_control::block_processor: Validating block with slot: 6170 +2024-09-30T06:49:08.680371Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x98ba41711a9b188b8a404786504d628d390277bcaeb2ba814d647d7dadef921d, slot: 6170 +2024-09-30T06:49:08.688143Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6170 +2024-09-30T06:49:08.688163Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6170 +2024-09-30T06:49:08.705516Z INFO fork_choice_control::block_processor: Validating block with slot: 6171 +2024-09-30T06:49:08.706685Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeff3f109c9ef3d5f9d25bebae10feb5f9c0a1bcf3bbf482a48f577ad950e1585, slot: 6171 +2024-09-30T06:49:08.713544Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6171 +2024-09-30T06:49:08.713561Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6171 +2024-09-30T06:49:08.730672Z INFO fork_choice_control::block_processor: Validating block with slot: 6172 +2024-09-30T06:49:08.731795Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa3442ca774853c58f9e748aa00bb690ac7f1543189847f64b3bd95b057587c59, slot: 6172 +2024-09-30T06:49:08.738811Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6172 +2024-09-30T06:49:08.738830Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6172 +2024-09-30T06:49:08.743420Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 6112 +2024-09-30T06:49:08.756328Z INFO fork_choice_control::block_processor: Validating block with slot: 6174 +2024-09-30T06:49:08.758453Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3ab6bb856672c0559f8e6f1b897119a854deacf892d3c69e32f7c0926965dab2, slot: 6174 +2024-09-30T06:49:08.769261Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6174 +2024-09-30T06:49:08.769283Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6174 +2024-09-30T06:49:08.787113Z INFO fork_choice_control::block_processor: Validating block with slot: 6175 +2024-09-30T06:49:08.788110Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1c1517174c33ab089e58403e576e56c72ef13fdb30b01661b2555118344f2dbf, slot: 6175 +2024-09-30T06:49:08.794127Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6175 +2024-09-30T06:49:08.794145Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6175 +2024-09-30T06:49:08.814312Z INFO fork_choice_control::block_processor: Validating block with slot: 6176 +2024-09-30T06:49:08.817738Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2486df7a0f7d5dc844ceef78a8d6c4a29eb4841ca6d7b0f67b87269699bc2c78, slot: 6176 +2024-09-30T06:49:08.919792Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6176 +2024-09-30T06:49:08.919816Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6176 +2024-09-30T06:49:08.930821Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6176) +2024-09-30T06:49:08.930913Z INFO fork_choice_control::block_processor: Validating block with slot: 6177 +2024-09-30T06:49:08.931878Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe3c8a46c33cc57feac71626ffb365e9973ff0909fd20bb198662948bd64b0716, slot: 6177 +2024-09-30T06:49:09.004847Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6177 +2024-09-30T06:49:09.004867Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6177 +2024-09-30T06:49:09.015950Z INFO fork_choice_control::block_processor: Validating block with slot: 6179 +2024-09-30T06:49:09.018634Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbfef888d2ce314d195819b2870131056fd59c207f542afe5c550f913dd67e1f9, slot: 6179 +2024-09-30T06:49:09.031483Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6179 +2024-09-30T06:49:09.031502Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6179 +2024-09-30T06:49:09.042848Z INFO fork_choice_control::block_processor: Validating block with slot: 6180 +2024-09-30T06:49:09.044079Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x78c0c1fba5384b24e9e27bec022731d6f24073cc6779dc0ede4980941e2c9c96, slot: 6180 +2024-09-30T06:49:09.051286Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6180 +2024-09-30T06:49:09.051303Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6180 +2024-09-30T06:49:09.062884Z INFO fork_choice_control::block_processor: Validating block with slot: 6181 +2024-09-30T06:49:09.066978Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xea9a482ec4cab6520f13cac292044569eb3bbffe00c70c43880a1bbe6aef34d4, slot: 6181 +2024-09-30T06:49:09.082122Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6181 +2024-09-30T06:49:09.082143Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6181 +2024-09-30T06:49:09.094435Z INFO fork_choice_control::block_processor: Validating block with slot: 6182 +2024-09-30T06:49:09.095662Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3b7d262229a158cc04aba2454e9dfc2fd293af3d7cc7f109b0bb7f73965c4b0f, slot: 6182 +2024-09-30T06:49:09.102136Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6182 +2024-09-30T06:49:09.102158Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6182 +2024-09-30T06:49:09.114664Z INFO fork_choice_control::block_processor: Validating block with slot: 6183 +2024-09-30T06:49:09.115644Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb703ffd0b30ef14df133954442061d2e85c5941d5e3100b3c79187a5c96934e1, slot: 6183 +2024-09-30T06:49:09.122827Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6183 +2024-09-30T06:49:09.122851Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6183 +2024-09-30T06:49:09.135483Z INFO fork_choice_control::block_processor: Validating block with slot: 6184 +2024-09-30T06:49:09.136606Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6e12c6b79515cfa5aa03e739354bbd51fb43ac1fd3e8c46053a12ea578df9e1a, slot: 6184 +2024-09-30T06:49:09.142710Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6184 +2024-09-30T06:49:09.142722Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6184 +2024-09-30T06:49:09.155773Z INFO fork_choice_control::block_processor: Validating block with slot: 6185 +2024-09-30T06:49:09.157042Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf1d7e49651127573ae60c61716ee2d0e3bd6375ea3f0ed86f9fcc610ea5c95d8, slot: 6185 +2024-09-30T06:49:09.163813Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6185 +2024-09-30T06:49:09.163831Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6185 +2024-09-30T06:49:09.177002Z INFO fork_choice_control::block_processor: Validating block with slot: 6186 +2024-09-30T06:49:09.178369Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf371aa5d5647d25bfc2e72902073b6510880f6631faba28367f964f131073933, slot: 6186 +2024-09-30T06:49:09.184824Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6186 +2024-09-30T06:49:09.184845Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6186 +2024-09-30T06:49:09.197974Z INFO fork_choice_control::block_processor: Validating block with slot: 6187 +2024-09-30T06:49:09.199206Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5e9a4f72706e80ce9525a5840cfcf398bcd77dc36f6f2e38fa6c78bb4f9b0e2c, slot: 6187 +2024-09-30T06:49:09.206009Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6187 +2024-09-30T06:49:09.206027Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6187 +2024-09-30T06:49:09.219688Z INFO fork_choice_control::block_processor: Validating block with slot: 6188 +2024-09-30T06:49:09.224072Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2e105905caf63cf9fa6293a1924c8c3924f33140a81d2bb03c196e634da45ab7, slot: 6188 +2024-09-30T06:49:09.240005Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6188 +2024-09-30T06:49:09.240028Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6188 +2024-09-30T06:49:09.254591Z INFO fork_choice_control::block_processor: Validating block with slot: 6189 +2024-09-30T06:49:09.255574Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x49b3da38b1618d531969c842fafc853bb759dbb99bcf40b0326b2cca5f76579a, slot: 6189 +2024-09-30T06:49:09.262035Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6189 +2024-09-30T06:49:09.262051Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6189 +2024-09-30T06:49:09.276573Z INFO fork_choice_control::block_processor: Validating block with slot: 6190 +2024-09-30T06:49:09.277537Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfd0d22c67fbe43262f4f6e5d05c8cddd36d8944fa33bad8f0eddd2718abe93bd, slot: 6190 +2024-09-30T06:49:09.283410Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6190 +2024-09-30T06:49:09.283424Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6190 +2024-09-30T06:49:09.297813Z INFO fork_choice_control::block_processor: Validating block with slot: 6191 +2024-09-30T06:49:09.299454Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x11b1345038d3086e1d84eb2efc68436e5b64ce82d938044aca1be5de4dcb675c, slot: 6191 +2024-09-30T06:49:09.307036Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6191 +2024-09-30T06:49:09.307056Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6191 +2024-09-30T06:49:09.319026Z INFO fork_choice_control::block_processor: Validating block with slot: 7297 +2024-09-30T06:49:09.322319Z INFO fork_choice_control::block_processor: Validating block with slot: 6192 +2024-09-30T06:49:09.325194Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1afea837a07bbea49f01f05d5f1bb59da0ba6f2075df1fba0fffb762c01328e9, slot: 6192 +2024-09-30T06:49:09.335839Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6192 +2024-09-30T06:49:09.335860Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6192 +2024-09-30T06:49:09.336811Z INFO fork_choice_control::block_processor: Validating block with slot: 7298 +2024-09-30T06:49:09.351948Z INFO fork_choice_control::block_processor: Validating block with slot: 6193 +2024-09-30T06:49:09.353345Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe5db0d0482d53deea49864bb2c016da7f158a9878c7e7a6825c981df8d3a2c82, slot: 6193 +2024-09-30T06:49:09.355536Z INFO fork_choice_control::block_processor: Validating block with slot: 7299 +2024-09-30T06:49:09.355563Z INFO fork_choice_control::block_processor: Validating block with slot: 7301 +2024-09-30T06:49:09.355562Z INFO fork_choice_control::block_processor: Validating block with slot: 7300 +2024-09-30T06:49:09.355590Z INFO fork_choice_control::block_processor: Validating block with slot: 7302 +2024-09-30T06:49:09.355788Z INFO fork_choice_control::block_processor: Validating block with slot: 7303 +2024-09-30T06:49:09.355833Z INFO fork_choice_control::block_processor: Validating block with slot: 7304 +2024-09-30T06:49:09.356902Z INFO fork_choice_control::block_processor: Validating block with slot: 7306 +2024-09-30T06:49:09.356916Z INFO fork_choice_control::block_processor: Validating block with slot: 7307 +2024-09-30T06:49:09.357576Z INFO fork_choice_control::block_processor: Validating block with slot: 7308 +2024-09-30T06:49:09.357840Z INFO fork_choice_control::block_processor: Validating block with slot: 7309 +2024-09-30T06:49:09.358833Z INFO fork_choice_control::block_processor: Validating block with slot: 7305 +2024-09-30T06:49:09.362732Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6193 +2024-09-30T06:49:09.362742Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6193 +2024-09-30T06:49:09.378132Z INFO fork_choice_control::block_processor: Validating block with slot: 6194 +2024-09-30T06:49:09.379364Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3ce0f4c9c81b3d75fb40de3eef18df8389e141c8e23661ef466adfed909e3774, slot: 6194 +2024-09-30T06:49:09.385674Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6194 +2024-09-30T06:49:09.385696Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6194 +2024-09-30T06:49:09.391414Z INFO fork_choice_control::block_processor: Validating block with slot: 7310 +2024-09-30T06:49:09.395551Z INFO fork_choice_control::block_processor: Validating block with slot: 7311 +2024-09-30T06:49:09.402438Z INFO fork_choice_control::block_processor: Validating block with slot: 6195 +2024-09-30T06:49:09.403992Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9e3c611558da8c075518fab9ab15c5514e938cbf0ec2cd27a591dab32f41560f, slot: 6195 +2024-09-30T06:49:09.413702Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6195 +2024-09-30T06:49:09.413723Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6195 +2024-09-30T06:49:09.430967Z INFO fork_choice_control::block_processor: Validating block with slot: 6196 +2024-09-30T06:49:09.432079Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x75bad478c391e37d2c42bc7bcbbdc6179b07817d6fecdd700f85a37ddea40d91, slot: 6196 +2024-09-30T06:49:09.440042Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6196 +2024-09-30T06:49:09.440061Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6196 +2024-09-30T06:49:09.446887Z INFO fork_choice_control::block_processor: Validating block with slot: 7314 +2024-09-30T06:49:09.446886Z INFO fork_choice_control::block_processor: Validating block with slot: 7312 +2024-09-30T06:49:09.446912Z INFO fork_choice_control::block_processor: Validating block with slot: 7317 +2024-09-30T06:49:09.446927Z INFO fork_choice_control::block_processor: Validating block with slot: 7316 +2024-09-30T06:49:09.446954Z INFO fork_choice_control::block_processor: Validating block with slot: 7315 +2024-09-30T06:49:09.447109Z INFO fork_choice_control::block_processor: Validating block with slot: 7313 +2024-09-30T06:49:09.447117Z INFO fork_choice_control::block_processor: Validating block with slot: 7318 +2024-09-30T06:49:09.448144Z INFO fork_choice_control::block_processor: Validating block with slot: 7319 +2024-09-30T06:49:09.448825Z INFO fork_choice_control::block_processor: Validating block with slot: 7320 +2024-09-30T06:49:09.449082Z INFO fork_choice_control::block_processor: Validating block with slot: 7321 +2024-09-30T06:49:09.449314Z INFO fork_choice_control::block_processor: Validating block with slot: 7322 +2024-09-30T06:49:09.449902Z INFO fork_choice_control::block_processor: Validating block with slot: 7323 +2024-09-30T06:49:09.450218Z INFO fork_choice_control::block_processor: Validating block with slot: 7324 +2024-09-30T06:49:09.450294Z INFO fork_choice_control::block_processor: Validating block with slot: 7325 +2024-09-30T06:49:09.451063Z INFO fork_choice_control::block_processor: Validating block with slot: 7326 +2024-09-30T06:49:09.451236Z INFO fork_choice_control::block_processor: Validating block with slot: 7329 +2024-09-30T06:49:09.451395Z INFO fork_choice_control::block_processor: Validating block with slot: 7331 +2024-09-30T06:49:09.451405Z INFO fork_choice_control::block_processor: Validating block with slot: 7332 +2024-09-30T06:49:09.452175Z INFO fork_choice_control::block_processor: Validating block with slot: 7333 +2024-09-30T06:49:09.452440Z INFO fork_choice_control::block_processor: Validating block with slot: 7334 +2024-09-30T06:49:09.452481Z INFO fork_choice_control::block_processor: Validating block with slot: 7335 +2024-09-30T06:49:09.453246Z INFO fork_choice_control::block_processor: Validating block with slot: 7336 +2024-09-30T06:49:09.453445Z INFO fork_choice_control::block_processor: Validating block with slot: 7327 +2024-09-30T06:49:09.454225Z INFO fork_choice_control::block_processor: Validating block with slot: 7337 +2024-09-30T06:49:09.454659Z INFO fork_choice_control::block_processor: Validating block with slot: 7328 +2024-09-30T06:49:09.455027Z INFO fork_choice_control::block_processor: Validating block with slot: 7339 +2024-09-30T06:49:09.455341Z INFO fork_choice_control::block_processor: Validating block with slot: 7340 +2024-09-30T06:49:09.455739Z INFO fork_choice_control::block_processor: Validating block with slot: 7341 +2024-09-30T06:49:09.456278Z INFO fork_choice_control::block_processor: Validating block with slot: 7342 +2024-09-30T06:49:09.456531Z INFO fork_choice_control::block_processor: Validating block with slot: 7345 +2024-09-30T06:49:09.456538Z INFO fork_choice_control::block_processor: Validating block with slot: 7343 +2024-09-30T06:49:09.456817Z INFO fork_choice_control::block_processor: Validating block with slot: 7346 +2024-09-30T06:49:09.457182Z INFO fork_choice_control::block_processor: Validating block with slot: 7338 +2024-09-30T06:49:09.458980Z INFO fork_choice_control::block_processor: Validating block with slot: 6197 +2024-09-30T06:49:09.459043Z INFO fork_choice_control::block_processor: Validating block with slot: 7347 +2024-09-30T06:49:09.461413Z INFO fork_choice_control::block_processor: Validating block with slot: 7348 +2024-09-30T06:49:09.462021Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7f1984bb9706e973f16c6728b17550b4f0b91657b3a409da6dd2190b0339bbe5, slot: 6197 +2024-09-30T06:49:09.468996Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6197 +2024-09-30T06:49:09.469014Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6197 +2024-09-30T06:49:09.476672Z INFO fork_choice_control::block_processor: Validating block with slot: 7350 +2024-09-30T06:49:09.476685Z INFO fork_choice_control::block_processor: Validating block with slot: 7351 +2024-09-30T06:49:09.476754Z INFO fork_choice_control::block_processor: Validating block with slot: 7352 +2024-09-30T06:49:09.476778Z INFO fork_choice_control::block_processor: Validating block with slot: 7354 +2024-09-30T06:49:09.476786Z INFO fork_choice_control::block_processor: Validating block with slot: 7353 +2024-09-30T06:49:09.476805Z INFO fork_choice_control::block_processor: Validating block with slot: 7355 +2024-09-30T06:49:09.477250Z INFO fork_choice_control::block_processor: Validating block with slot: 7356 +2024-09-30T06:49:09.478030Z INFO fork_choice_control::block_processor: Validating block with slot: 7357 +2024-09-30T06:49:09.478557Z INFO fork_choice_control::block_processor: Validating block with slot: 7358 +2024-09-30T06:49:09.478606Z INFO fork_choice_control::block_processor: Validating block with slot: 7359 +2024-09-30T06:49:09.485938Z INFO fork_choice_control::block_processor: Validating block with slot: 6198 +2024-09-30T06:49:09.490296Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5e831fbc805851ff80b05eda32517189b4c26a431683c2f229b68fe3f0df4160, slot: 6198 +2024-09-30T06:49:09.507301Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6198 +2024-09-30T06:49:09.507324Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6198 +2024-09-30T06:49:09.524782Z INFO fork_choice_control::block_processor: Validating block with slot: 6199 +2024-09-30T06:49:09.527150Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2b4e48cc69f047cadbeccab5675e50c7f78ec81e9e5fb398427ef22410bcd6e4, slot: 6199 +2024-09-30T06:49:09.527299Z INFO fork_choice_control::block_processor: Validating block with slot: 7233 +2024-09-30T06:49:09.538540Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6199 +2024-09-30T06:49:09.538563Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6199 +2024-09-30T06:49:09.561472Z INFO fork_choice_control::block_processor: Validating block with slot: 6200 +2024-09-30T06:49:09.561473Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 192, root: 0x2116c35ff7e0093e0f4927f92b13ef8c9ea0745517e47a8dc158945b4ec4e0a0, head slot: 6199, head root: 0x2b4e48cc69f047cadbeccab5675e50c7f78ec81e9e5fb398427ef22410bcd6e4) +2024-09-30T06:49:09.562855Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6d8cc99ea889a795d64916a689056c97de9702ad3e39c324c014be95ae309758, slot: 6200 +2024-09-30T06:49:09.570528Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6200 +2024-09-30T06:49:09.570560Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6200 +2024-09-30T06:49:09.588401Z INFO fork_choice_control::block_processor: Validating block with slot: 6201 +2024-09-30T06:49:09.589517Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb7637bac353213929bf209f2f87e3c46b4211160cd1b98f0ed3fac5fb28b5564, slot: 6201 +2024-09-30T06:49:09.595926Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6201 +2024-09-30T06:49:09.595944Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6201 +2024-09-30T06:49:09.602506Z INFO fork_choice_control::block_processor: Validating block with slot: 7360 +2024-09-30T06:49:09.614033Z INFO fork_choice_control::block_processor: Validating block with slot: 6202 +2024-09-30T06:49:09.615277Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x92800f302edee086e54e59ce7a1f018b89812b2d00fb8049b82b4eba9c94e3c8, slot: 6202 +2024-09-30T06:49:09.622512Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6202 +2024-09-30T06:49:09.622534Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6202 +2024-09-30T06:49:09.641070Z INFO fork_choice_control::block_processor: Validating block with slot: 6203 +2024-09-30T06:49:09.642762Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdaa05d9a72a0f3d96adce800a8252fb0398b6fdfa6a03a08db37c6ae4e3a67ca, slot: 6203 +2024-09-30T06:49:09.651272Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6203 +2024-09-30T06:49:09.651295Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6203 +2024-09-30T06:49:09.669870Z INFO fork_choice_control::block_processor: Validating block with slot: 6204 +2024-09-30T06:49:09.672120Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x60602c1ec6be2e587546bcd75f6dc4b63d626ae9de9a846ce180ae67020be59c, slot: 6204 +2024-09-30T06:49:09.681853Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6204 +2024-09-30T06:49:09.681867Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6204 +2024-09-30T06:49:09.693361Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 6144 +2024-09-30T06:49:09.701149Z INFO fork_choice_control::block_processor: Validating block with slot: 6205 +2024-09-30T06:49:09.702991Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x24ac8acddcfef2f0718c039b7a00dcfd9a9dc28c87b8684b9c4b6b041d636b6f, slot: 6205 +2024-09-30T06:49:09.712456Z INFO fork_choice_control::block_processor: Validating block with slot: 7234 +2024-09-30T06:49:09.713193Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6205 +2024-09-30T06:49:09.713205Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6205 +2024-09-30T06:49:09.720904Z INFO fork_choice_control::block_processor: Validating block with slot: 7235 +2024-09-30T06:49:09.733212Z INFO fork_choice_control::block_processor: Validating block with slot: 6206 +2024-09-30T06:49:09.735792Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc999fb3987b89c5a0d84c26305ecc51eda62fb712f62c6b4b287df20837cb24a, slot: 6206 +2024-09-30T06:49:09.745708Z INFO fork_choice_control::storage: saving state in slot 6144 +2024-09-30T06:49:09.746468Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6206 +2024-09-30T06:49:09.746479Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6206 +2024-09-30T06:49:09.747348Z INFO fork_choice_control::block_processor: Validating block with slot: 7236 +2024-09-30T06:49:09.747395Z INFO fork_choice_control::block_processor: Validating block with slot: 7238 +2024-09-30T06:49:09.766209Z INFO fork_choice_control::block_processor: Validating block with slot: 6208 +2024-09-30T06:49:09.768022Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xea26085284003ac76f96bbe331831ec68e72582ab1b38d6199da1fbd7177f11e, slot: 6208 +2024-09-30T06:49:09.874421Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6208 +2024-09-30T06:49:09.874444Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6208 +2024-09-30T06:49:09.887090Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6208) +2024-09-30T06:49:09.887265Z INFO fork_choice_control::block_processor: Validating block with slot: 6209 +2024-09-30T06:49:09.888488Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd689176d0eb57efea1a759254d5b2be08e7bea4e7c6a4b0117e745837fb2e07e, slot: 6209 +2024-09-30T06:49:09.894541Z INFO fork_choice_control::block_processor: Validating block with slot: 7239 +2024-09-30T06:49:09.911312Z INFO fork_choice_control::block_processor: Validating block with slot: 7240 +2024-09-30T06:49:09.937841Z INFO fork_choice_control::block_processor: Validating block with slot: 7241 +2024-09-30T06:49:09.937866Z INFO fork_choice_control::block_processor: Validating block with slot: 7242 +2024-09-30T06:49:09.975516Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6209 +2024-09-30T06:49:09.975536Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6209 +2024-09-30T06:49:09.988649Z INFO fork_choice_control::block_processor: Validating block with slot: 6210 +2024-09-30T06:49:09.990439Z INFO fork_choice_control::block_processor: Validating block with slot: 7245 +2024-09-30T06:49:09.990452Z INFO fork_choice_control::block_processor: Validating block with slot: 7244 +2024-09-30T06:49:09.990485Z INFO fork_choice_control::block_processor: Validating block with slot: 7246 +2024-09-30T06:49:09.990527Z INFO fork_choice_control::block_processor: Validating block with slot: 7243 +2024-09-30T06:49:09.991527Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x160d34caae08188409af5b6756169f98faac76b8bee9ab5f19b6e1e9aa491ebe, slot: 6210 +2024-09-30T06:49:10.013570Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6210 +2024-09-30T06:49:10.013586Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6210 +2024-09-30T06:49:10.028640Z INFO fork_choice_control::block_processor: Validating block with slot: 6211 +2024-09-30T06:49:10.029881Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4b75c2ac8cb5e1fa13c81927248f90f54655fa30b40f25276acd2d9b870ebe76, slot: 6211 +2024-09-30T06:49:10.036576Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6211 +2024-09-30T06:49:10.036597Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6211 +2024-09-30T06:49:10.050295Z INFO fork_choice_control::block_processor: Validating block with slot: 6212 +2024-09-30T06:49:10.051248Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x952dd06e5f4fe1b0b2b95814cee45de1bfdedd310f550a4c0062f604b3952ec9, slot: 6212 +2024-09-30T06:49:10.058211Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6212 +2024-09-30T06:49:10.058232Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6212 +2024-09-30T06:49:10.072238Z INFO fork_choice_control::block_processor: Validating block with slot: 6213 +2024-09-30T06:49:10.073345Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1eb9b4afa537ef7cf5f5f103dcfa5704c170cabfc9aa32803debb49306ff976e, slot: 6213 +2024-09-30T06:49:10.081667Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6213 +2024-09-30T06:49:10.081686Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6213 +2024-09-30T06:49:10.096049Z INFO fork_choice_control::block_processor: Validating block with slot: 6214 +2024-09-30T06:49:10.098787Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xedf6e738731d67907570bf3580524aea7c0fb492d4d629fe4f585be7617d4c7b, slot: 6214 +2024-09-30T06:49:10.110025Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6214 +2024-09-30T06:49:10.110044Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6214 +2024-09-30T06:49:10.124348Z INFO fork_choice_control::block_processor: Validating block with slot: 6215 +2024-09-30T06:49:10.125730Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x97bfca10fc35f3eb671850c5a4a4382979eed1e7fda56334d4385d54fe2c1d34, slot: 6215 +2024-09-30T06:49:10.141508Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6215 +2024-09-30T06:49:10.141527Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6215 +2024-09-30T06:49:10.158246Z INFO fork_choice_control::block_processor: Validating block with slot: 6216 +2024-09-30T06:49:10.159293Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6b928c19d16658841e30dda9f513609045e02e75023db188bcec92b6048f46e4, slot: 6216 +2024-09-30T06:49:10.163443Z INFO fork_choice_control::block_processor: Validating block with slot: 7041 +2024-09-30T06:49:10.163763Z INFO fork_choice_control::block_processor: Validating block with slot: 7247 +2024-09-30T06:49:10.163968Z INFO fork_choice_control::block_processor: Validating block with slot: 7248 +2024-09-30T06:49:10.164141Z INFO fork_choice_control::block_processor: Validating block with slot: 7249 +2024-09-30T06:49:10.165380Z INFO fork_choice_control::block_processor: Validating block with slot: 7042 +2024-09-30T06:49:10.165388Z INFO fork_choice_control::block_processor: Validating block with slot: 7250 +2024-09-30T06:49:10.166889Z INFO fork_choice_control::block_processor: Validating block with slot: 6721 +2024-09-30T06:49:10.174778Z INFO fork_choice_control::block_processor: Validating block with slot: 6722 +2024-09-30T06:49:10.174975Z INFO fork_choice_control::block_processor: Validating block with slot: 6728 +2024-09-30T06:49:10.175185Z INFO fork_choice_control::block_processor: Validating block with slot: 6724 +2024-09-30T06:49:10.175240Z INFO fork_choice_control::block_processor: Validating block with slot: 6723 +2024-09-30T06:49:10.175265Z INFO fork_choice_control::block_processor: Validating block with slot: 6725 +2024-09-30T06:49:10.176117Z INFO fork_choice_control::block_processor: Validating block with slot: 6726 +2024-09-30T06:49:10.176206Z INFO fork_choice_control::block_processor: Validating block with slot: 6729 +2024-09-30T06:49:10.176767Z INFO fork_choice_control::block_processor: Validating block with slot: 7251 +2024-09-30T06:49:10.177277Z INFO fork_choice_control::block_processor: Validating block with slot: 7252 +2024-09-30T06:49:10.177879Z INFO fork_choice_control::block_processor: Validating block with slot: 6727 +2024-09-30T06:49:10.178013Z INFO fork_choice_control::block_processor: Validating block with slot: 7253 +2024-09-30T06:49:10.186747Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6216 +2024-09-30T06:49:10.186793Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6216 +2024-09-30T06:49:10.204018Z INFO fork_choice_control::block_processor: Validating block with slot: 7254 +2024-09-30T06:49:10.204143Z INFO fork_choice_control::block_processor: Validating block with slot: 7255 +2024-09-30T06:49:10.204150Z INFO fork_choice_control::block_processor: Validating block with slot: 7043 +2024-09-30T06:49:10.209886Z INFO fork_choice_control::block_processor: Validating block with slot: 6217 +2024-09-30T06:49:10.215187Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6512a7d09d125a0207ada12476439b2569ebf3170206c8c8f71ea077f0ab461b, slot: 6217 +2024-09-30T06:49:10.229901Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6217 +2024-09-30T06:49:10.229919Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6217 +2024-09-30T06:49:10.245686Z INFO fork_choice_control::block_processor: Validating block with slot: 6218 +2024-09-30T06:49:10.246946Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbf11b0073f8409689d8d43c7c8254d95076a598caacd37f9645e97f43cc045e4, slot: 6218 +2024-09-30T06:49:10.258626Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6218 +2024-09-30T06:49:10.258701Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6218 +2024-09-30T06:49:10.274663Z INFO fork_choice_control::block_processor: Validating block with slot: 6219 +2024-09-30T06:49:10.275774Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfe197bffe470d7a16458a1ba000f0f9d12588a487925041ef3d1650d5e18b651, slot: 6219 +2024-09-30T06:49:10.282688Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6219 +2024-09-30T06:49:10.282703Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6219 +2024-09-30T06:49:10.298571Z INFO fork_choice_control::block_processor: Validating block with slot: 6220 +2024-09-30T06:49:10.299685Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbce025296e53585ae99a25c0985ea58cb49a1552d8f0152d96c58456189f050c, slot: 6220 +2024-09-30T06:49:10.307100Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6220 +2024-09-30T06:49:10.307120Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6220 +2024-09-30T06:49:10.319598Z INFO fork_choice_control::block_processor: Validating block with slot: 7256 +2024-09-30T06:49:10.319603Z INFO fork_choice_control::block_processor: Validating block with slot: 6730 +2024-09-30T06:49:10.319653Z INFO fork_choice_control::block_processor: Validating block with slot: 6731 +2024-09-30T06:49:10.319688Z INFO fork_choice_control::block_processor: Validating block with slot: 7257 +2024-09-30T06:49:10.319685Z INFO fork_choice_control::block_processor: Validating block with slot: 6734 +2024-09-30T06:49:10.319837Z INFO fork_choice_control::block_processor: Validating block with slot: 6733 +2024-09-30T06:49:10.320455Z INFO fork_choice_control::block_processor: Validating block with slot: 6732 +2024-09-30T06:49:10.321225Z INFO fork_choice_control::block_processor: Validating block with slot: 6736 +2024-09-30T06:49:10.322898Z INFO fork_choice_control::block_processor: Validating block with slot: 7258 +2024-09-30T06:49:10.323467Z INFO fork_choice_control::block_processor: Validating block with slot: 7259 +2024-09-30T06:49:10.323630Z INFO fork_choice_control::block_processor: Validating block with slot: 7044 +2024-09-30T06:49:10.324832Z INFO fork_choice_control::block_processor: Validating block with slot: 7260 +2024-09-30T06:49:10.325390Z INFO fork_choice_control::block_processor: Validating block with slot: 7261 +2024-09-30T06:49:10.326945Z INFO fork_choice_control::block_processor: Validating block with slot: 7262 +2024-09-30T06:49:10.327208Z INFO fork_choice_control::block_processor: Validating block with slot: 6739 +2024-09-30T06:49:10.327304Z INFO fork_choice_control::block_processor: Validating block with slot: 6738 +2024-09-30T06:49:10.328986Z INFO fork_choice_control::block_processor: Validating block with slot: 6740 +2024-09-30T06:49:10.329342Z INFO fork_choice_control::block_processor: Validating block with slot: 6741 +2024-09-30T06:49:10.330631Z INFO fork_choice_control::block_processor: Validating block with slot: 6742 +2024-09-30T06:49:10.330675Z INFO fork_choice_control::block_processor: Validating block with slot: 6737 +2024-09-30T06:49:10.331564Z INFO fork_choice_control::block_processor: Validating block with slot: 6743 +2024-09-30T06:49:10.332782Z INFO fork_choice_control::block_processor: Validating block with slot: 6744 +2024-09-30T06:49:10.334137Z INFO fork_choice_control::block_processor: Validating block with slot: 7045 +2024-09-30T06:49:10.335215Z INFO fork_choice_control::block_processor: Validating block with slot: 7265 +2024-09-30T06:49:10.335351Z INFO fork_choice_control::block_processor: Validating block with slot: 7266 +2024-09-30T06:49:10.335952Z INFO fork_choice_control::block_processor: Validating block with slot: 7263 +2024-09-30T06:49:10.336166Z INFO fork_choice_control::block_processor: Validating block with slot: 7046 +2024-09-30T06:49:10.336650Z INFO fork_choice_control::block_processor: Validating block with slot: 7267 +2024-09-30T06:49:10.336773Z INFO fork_choice_control::block_processor: Validating block with slot: 7264 +2024-09-30T06:49:10.337671Z INFO fork_choice_control::block_processor: Validating block with slot: 6221 +2024-09-30T06:49:10.338509Z INFO fork_choice_control::block_processor: Validating block with slot: 6746 +2024-09-30T06:49:10.339579Z INFO fork_choice_control::block_processor: Validating block with slot: 6747 +2024-09-30T06:49:10.341534Z INFO fork_choice_control::block_processor: Validating block with slot: 6745 +2024-09-30T06:49:10.341634Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3ed07b4c469deea24ed673365d334f0700964c5fd4d2f6443c3a79d4535c643c, slot: 6221 +2024-09-30T06:49:10.347113Z INFO fork_choice_control::block_processor: Validating block with slot: 6748 +2024-09-30T06:49:10.347126Z INFO fork_choice_control::block_processor: Validating block with slot: 6749 +2024-09-30T06:49:10.347141Z INFO fork_choice_control::block_processor: Validating block with slot: 6750 +2024-09-30T06:49:10.347825Z INFO fork_choice_control::block_processor: Validating block with slot: 6751 +2024-09-30T06:49:10.353326Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6221 +2024-09-30T06:49:10.353343Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6221 +2024-09-30T06:49:10.368943Z INFO fork_choice_control::block_processor: Validating block with slot: 6222 +2024-09-30T06:49:10.370351Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x48d6e4ba9f83a8c01a1c0d9dff841f48104f5d1f8f1645d5d8041c901a1e26eb, slot: 6222 +2024-09-30T06:49:10.376874Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6222 +2024-09-30T06:49:10.376887Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6222 +2024-09-30T06:49:10.377913Z INFO fork_choice_control::block_processor: Validating block with slot: 7047 +2024-09-30T06:49:10.392644Z INFO fork_choice_control::block_processor: Validating block with slot: 6223 +2024-09-30T06:49:10.393605Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x67e8948bcfa392d182ff8666b4555ab623e297f448172248cb7fcb9b207942fa, slot: 6223 +2024-09-30T06:49:10.399879Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6223 +2024-09-30T06:49:10.399899Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6223 +2024-09-30T06:49:10.416063Z INFO fork_choice_control::block_processor: Validating block with slot: 6224 +2024-09-30T06:49:10.419018Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbeb1752f2d2f234ced7f5d21ba1dbc08cb23b303226e06b3d2ec9bb1c4b7f275, slot: 6224 +2024-09-30T06:49:10.430122Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6224 +2024-09-30T06:49:10.430135Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6224 +2024-09-30T06:49:10.444941Z INFO fork_choice_control::block_processor: Validating block with slot: 7048 +2024-09-30T06:49:10.446638Z INFO fork_choice_control::block_processor: Validating block with slot: 6225 +2024-09-30T06:49:10.447733Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xff1487022ef44e36d1a1d7fe11e087c59e75d5a37bb410cce74db56bb88c302c, slot: 6225 +2024-09-30T06:49:10.454332Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6225 +2024-09-30T06:49:10.454353Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6225 +2024-09-30T06:49:10.471242Z INFO fork_choice_control::block_processor: Validating block with slot: 6226 +2024-09-30T06:49:10.474066Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7205142541269d4a636af9cda87f6d3030af9ef583b1a5740a7cde0c4ca155c8, slot: 6226 +2024-09-30T06:49:10.475365Z INFO fork_choice_control::block_processor: Validating block with slot: 7049 +2024-09-30T06:49:10.484884Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6226 +2024-09-30T06:49:10.484905Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6226 +2024-09-30T06:49:10.501693Z INFO fork_choice_control::block_processor: Validating block with slot: 6227 +2024-09-30T06:49:10.502675Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd800a5fea0cd971fcfedb54e1184bf3a58907c223864ccbb99523bb3294f3507, slot: 6227 +2024-09-30T06:49:10.508097Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6227 +2024-09-30T06:49:10.508109Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6227 +2024-09-30T06:49:10.525384Z INFO fork_choice_control::block_processor: Validating block with slot: 6228 +2024-09-30T06:49:10.526479Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0d0539fe44af6b229fcbec8df779dad9c4aecef3bc366a94b43eb2fd3ad4598d, slot: 6228 +2024-09-30T06:49:10.532314Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6228 +2024-09-30T06:49:10.532329Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6228 +2024-09-30T06:49:10.549679Z INFO fork_choice_control::block_processor: Validating block with slot: 6229 +2024-09-30T06:49:10.550958Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x87a483bc345c1f6da9ae55011c60dcc498f029a9c05e9696553494194f83c4fd, slot: 6229 +2024-09-30T06:49:10.558061Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6229 +2024-09-30T06:49:10.558082Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6229 +2024-09-30T06:49:10.576250Z INFO fork_choice_control::block_processor: Validating block with slot: 6230 +2024-09-30T06:49:10.578027Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x023ce38c68c244a7ecf615f7f7d5544ed4ee6d255a2ff3c32089a3b13ed2fd71, slot: 6230 +2024-09-30T06:49:10.585681Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6230 +2024-09-30T06:49:10.585701Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6230 +2024-09-30T06:49:10.596792Z INFO fork_choice_control::block_processor: Validating block with slot: 7050 +2024-09-30T06:49:10.604031Z INFO fork_choice_control::block_processor: Validating block with slot: 6231 +2024-09-30T06:49:10.605048Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf17c2499a9d5fe3f01d351e817fbb3df4d0b46adad5a9ab67812440ac3c4df70, slot: 6231 +2024-09-30T06:49:10.605538Z INFO fork_choice_control::block_processor: Validating block with slot: 7268 +2024-09-30T06:49:10.613212Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6231 +2024-09-30T06:49:10.613227Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6231 +2024-09-30T06:49:10.637518Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 193, root: 0x2486df7a0f7d5dc844ceef78a8d6c4a29eb4841ca6d7b0f67b87269699bc2c78, head slot: 6231, head root: 0xf17c2499a9d5fe3f01d351e817fbb3df4d0b46adad5a9ab67812440ac3c4df70) +2024-09-30T06:49:10.637532Z INFO fork_choice_control::block_processor: Validating block with slot: 6232 +2024-09-30T06:49:10.639151Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf5bc9c9d659d7ba75af6900ae2990b617577245f877ce52752e353477091a2b1, slot: 6232 +2024-09-30T06:49:10.648992Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6232 +2024-09-30T06:49:10.649013Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6232 +2024-09-30T06:49:10.669042Z INFO fork_choice_control::block_processor: Validating block with slot: 6233 +2024-09-30T06:49:10.671676Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9121e150bcb28a76081aa01dd09fa976448309af5fbaea883a12306303be2308, slot: 6233 +2024-09-30T06:49:10.679251Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6233 +2024-09-30T06:49:10.679267Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6233 +2024-09-30T06:49:10.689520Z INFO fork_choice_control::block_processor: Validating block with slot: 7271 +2024-09-30T06:49:10.689548Z INFO fork_choice_control::block_processor: Validating block with slot: 7273 +2024-09-30T06:49:10.689573Z INFO fork_choice_control::block_processor: Validating block with slot: 7272 +2024-09-30T06:49:10.689583Z INFO fork_choice_control::block_processor: Validating block with slot: 7270 +2024-09-30T06:49:10.689776Z INFO fork_choice_control::block_processor: Validating block with slot: 7269 +2024-09-30T06:49:10.689822Z INFO fork_choice_control::block_processor: Validating block with slot: 7274 +2024-09-30T06:49:10.689863Z INFO fork_choice_control::block_processor: Validating block with slot: 7275 +2024-09-30T06:49:10.690698Z INFO fork_choice_control::block_processor: Validating block with slot: 7276 +2024-09-30T06:49:10.691637Z INFO fork_choice_control::block_processor: Validating block with slot: 7277 +2024-09-30T06:49:10.692711Z INFO fork_choice_control::block_processor: Validating block with slot: 7278 +2024-09-30T06:49:10.693184Z INFO fork_choice_control::block_processor: Validating block with slot: 7279 +2024-09-30T06:49:10.697560Z INFO fork_choice_control::block_processor: Validating block with slot: 7280 +2024-09-30T06:49:10.698186Z INFO fork_choice_control::block_processor: Validating block with slot: 7285 +2024-09-30T06:49:10.698786Z INFO fork_choice_control::block_processor: Validating block with slot: 7286 +2024-09-30T06:49:10.699144Z INFO fork_choice_control::block_processor: Validating block with slot: 7282 +2024-09-30T06:49:10.699262Z INFO fork_choice_control::block_processor: Validating block with slot: 7287 +2024-09-30T06:49:10.700002Z INFO fork_choice_control::block_processor: Validating block with slot: 7288 +2024-09-30T06:49:10.700766Z INFO fork_choice_control::block_processor: Validating block with slot: 7289 +2024-09-30T06:49:10.700816Z INFO fork_choice_control::block_processor: Validating block with slot: 7290 +2024-09-30T06:49:10.702738Z INFO fork_choice_control::block_processor: Validating block with slot: 7291 +2024-09-30T06:49:10.703837Z INFO fork_choice_control::block_processor: Validating block with slot: 7295 +2024-09-30T06:49:10.703781Z INFO fork_choice_control::block_processor: Validating block with slot: 7292 +2024-09-30T06:49:10.704778Z INFO fork_choice_control::block_processor: Validating block with slot: 7051 +2024-09-30T06:49:10.705849Z INFO fork_choice_control::block_processor: Validating block with slot: 7052 +2024-09-30T06:49:10.706309Z INFO fork_choice_control::block_processor: Validating block with slot: 6235 +2024-09-30T06:49:10.707481Z INFO fork_choice_control::block_processor: Validating block with slot: 7294 +2024-09-30T06:49:10.707961Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4a6b5928a413a5fcc53d19512998946dd749b460f3d11a8b083223402862fa50, slot: 6235 +2024-09-30T06:49:10.708139Z INFO fork_choice_control::block_processor: Validating block with slot: 7283 +2024-09-30T06:49:10.708396Z INFO fork_choice_control::block_processor: Validating block with slot: 7284 +2024-09-30T06:49:10.709776Z INFO fork_choice_control::block_processor: Validating block with slot: 7053 +2024-09-30T06:49:10.719478Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6235 +2024-09-30T06:49:10.719505Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6235 +2024-09-30T06:49:10.738584Z INFO fork_choice_control::block_processor: Validating block with slot: 6236 +2024-09-30T06:49:10.739729Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa3cb111c57349cd330eb50d73562bf5103897a39dfa02ca773ffe4700ba95881, slot: 6236 +2024-09-30T06:49:10.746095Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6236 +2024-09-30T06:49:10.746110Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6236 +2024-09-30T06:49:10.765162Z INFO fork_choice_control::block_processor: Validating block with slot: 6237 +2024-09-30T06:49:10.766282Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2cfc9b762aebe9a0a372dee7f73e8203d1c0efb3fe297ab741fb452c2c8ce937, slot: 6237 +2024-09-30T06:49:10.768739Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 6176 +2024-09-30T06:49:10.773291Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6237 +2024-09-30T06:49:10.773309Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6237 +2024-09-30T06:49:10.792633Z INFO fork_choice_control::block_processor: Validating block with slot: 6238 +2024-09-30T06:49:10.796135Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe5acd369bae70480a63abedd42158956940eeeb6deb36f13b3b50c856021bf11, slot: 6238 +2024-09-30T06:49:10.808516Z INFO fork_choice_control::block_processor: Validating block with slot: 7054 +2024-09-30T06:49:10.811169Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6238 +2024-09-30T06:49:10.811184Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6238 +2024-09-30T06:49:10.811640Z INFO fork_choice_control::block_processor: Validating block with slot: 7296 +2024-09-30T06:49:10.814067Z INFO fork_choice_control::block_processor: Validating block with slot: 7055 +2024-09-30T06:49:10.819100Z INFO fork_choice_control::storage: saving state in slot 6144 +2024-09-30T06:49:10.823446Z INFO fork_choice_control::block_processor: Validating block with slot: 7056 +2024-09-30T06:49:10.831564Z INFO fork_choice_control::block_processor: Validating block with slot: 6239 +2024-09-30T06:49:10.832531Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd4b9b505cdb90cb83f06e32b5a9ad9af03d9aebaab20e2dbdaa82fa1ae9d4f1c, slot: 6239 +2024-09-30T06:49:10.840336Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6239 +2024-09-30T06:49:10.840352Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6239 +2024-09-30T06:49:10.860173Z INFO fork_choice_control::block_processor: Validating block with slot: 6240 +2024-09-30T06:49:10.861159Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7da388ca3d36c2fbcaa4ae60bfb0f976af54660e362f17730fcad8d14d0d740e, slot: 6240 +2024-09-30T06:49:10.881132Z INFO fork_choice_control::block_processor: Validating block with slot: 7057 +2024-09-30T06:49:10.887750Z INFO fork_choice_control::block_processor: Validating block with slot: 7058 +2024-09-30T06:49:10.964300Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6240 +2024-09-30T06:49:10.964323Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6240 +2024-09-30T06:49:10.973988Z INFO fork_choice_control::block_processor: Validating block with slot: 7059 +2024-09-30T06:49:10.975318Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6240) +2024-09-30T06:49:10.975463Z INFO fork_choice_control::block_processor: Validating block with slot: 6241 +2024-09-30T06:49:10.976961Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3db0c6a2e31f78144e882e727795e796ca852b8fcd62323511c6584e5e899c2a, slot: 6241 +2024-09-30T06:49:11.053806Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6241 +2024-09-30T06:49:11.053826Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6241 +2024-09-30T06:49:11.064895Z INFO fork_choice_control::block_processor: Validating block with slot: 6242 +2024-09-30T06:49:11.066598Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1048714f8175991560113fe3485e893256e0ad25dbe4f8a392860a81f24eedb7, slot: 6242 +2024-09-30T06:49:11.076319Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6242 +2024-09-30T06:49:11.076337Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6242 +2024-09-30T06:49:11.088251Z INFO fork_choice_control::block_processor: Validating block with slot: 6243 +2024-09-30T06:49:11.089377Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9a9b726c408bb27d32801a9a92389105e69cb04c4be2cce3de684addfe1574d9, slot: 6243 +2024-09-30T06:49:11.096781Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6243 +2024-09-30T06:49:11.096804Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6243 +2024-09-30T06:49:11.108687Z INFO fork_choice_control::block_processor: Validating block with slot: 6244 +2024-09-30T06:49:11.109664Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x260d70d6088e35d50bf83f13db1fadab48a058c84baef85ea0108c7afe9bcf6a, slot: 6244 +2024-09-30T06:49:11.117146Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6244 +2024-09-30T06:49:11.117185Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6244 +2024-09-30T06:49:11.118304Z INFO fork_choice_control::block_processor: Validating block with slot: 7060 +2024-09-30T06:49:11.124517Z INFO fork_choice_control::block_processor: Validating block with slot: 7061 +2024-09-30T06:49:11.129305Z INFO fork_choice_control::block_processor: Validating block with slot: 6245 +2024-09-30T06:49:11.130382Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd43766ce723dc64aa439e5bde33b5ae7bc05933553cfe9138be00167f142ed1a, slot: 6245 +2024-09-30T06:49:11.138358Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6245 +2024-09-30T06:49:11.138380Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6245 +2024-09-30T06:49:11.150094Z INFO fork_choice_control::block_processor: Validating block with slot: 6246 +2024-09-30T06:49:11.151357Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd55582632d2d347a8806e437349d0636340cef4c4d3cadc1d778b1684b694d1a, slot: 6246 +2024-09-30T06:49:11.158647Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6246 +2024-09-30T06:49:11.158666Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6246 +2024-09-30T06:49:11.170889Z INFO fork_choice_control::block_processor: Validating block with slot: 6247 +2024-09-30T06:49:11.172014Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd5783ffd78bab66e3e0c1690474289c5e9bf624ce385e8f7901d678c17240b2c, slot: 6247 +2024-09-30T06:49:11.179196Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6247 +2024-09-30T06:49:11.179212Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6247 +2024-09-30T06:49:11.191976Z INFO fork_choice_control::block_processor: Validating block with slot: 6248 +2024-09-30T06:49:11.193386Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xde30a08d1714816e36d58b5b377c45d7f6985adfa233f16c66b59e770c737da9, slot: 6248 +2024-09-30T06:49:11.200281Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6248 +2024-09-30T06:49:11.200295Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6248 +2024-09-30T06:49:11.212769Z INFO fork_choice_control::block_processor: Validating block with slot: 6249 +2024-09-30T06:49:11.214129Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x58145200f28c04072a729daa32339b5be1bb9a3d52d78e1f334eeb5185ff028f, slot: 6249 +2024-09-30T06:49:11.221562Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6249 +2024-09-30T06:49:11.221585Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6249 +2024-09-30T06:49:11.233976Z INFO fork_choice_control::block_processor: Validating block with slot: 6250 +2024-09-30T06:49:11.234959Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1cc67c3ecbe147d989acad8cc1a966685e58454bce772110ddeeaf55f964b3c5, slot: 6250 +2024-09-30T06:49:11.241889Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6250 +2024-09-30T06:49:11.241904Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6250 +2024-09-30T06:49:11.242931Z INFO fork_choice_control::block_processor: Validating block with slot: 7062 +2024-09-30T06:49:11.242975Z INFO fork_choice_control::block_processor: Validating block with slot: 7063 +2024-09-30T06:49:11.254917Z INFO fork_choice_control::block_processor: Validating block with slot: 6251 +2024-09-30T06:49:11.258720Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb414e3f8e55231c0b8796c0cbc7bc7b3343dbf1874ae9bed7e57e065aaf709ab, slot: 6251 +2024-09-30T06:49:11.272023Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6251 +2024-09-30T06:49:11.272045Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6251 +2024-09-30T06:49:11.285567Z INFO fork_choice_control::block_processor: Validating block with slot: 6252 +2024-09-30T06:49:11.287262Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe9ad2dbabbca72658418010bbc044bf9b8d1a42eb266ad03233f96ee85746243, slot: 6252 +2024-09-30T06:49:11.287687Z INFO fork_choice_control::block_processor: Validating block with slot: 7064 +2024-09-30T06:49:11.296339Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6252 +2024-09-30T06:49:11.296354Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6252 +2024-09-30T06:49:11.310079Z INFO fork_choice_control::block_processor: Validating block with slot: 6253 +2024-09-30T06:49:11.311040Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x73df21369a5a95b103364346a2bb1aa7cd613c2a186ed7a61746136587c44aef, slot: 6253 +2024-09-30T06:49:11.316748Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6253 +2024-09-30T06:49:11.316760Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6253 +2024-09-30T06:49:11.330330Z INFO fork_choice_control::block_processor: Validating block with slot: 6254 +2024-09-30T06:49:11.331290Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x972bdf6c2f6aec18628226ea48bb40853acb466eeee1fc3b07367a971d57385e, slot: 6254 +2024-09-30T06:49:11.337433Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6254 +2024-09-30T06:49:11.337458Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6254 +2024-09-30T06:49:11.339479Z INFO fork_choice_control::block_processor: Validating block with slot: 7065 +2024-09-30T06:49:11.351088Z INFO fork_choice_control::block_processor: Validating block with slot: 6255 +2024-09-30T06:49:11.352211Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x32c773c9335a61461f36d2b4da23bd0d907e551df460e39463330b4ccaba9e83, slot: 6255 +2024-09-30T06:49:11.358483Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6255 +2024-09-30T06:49:11.358498Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6255 +2024-09-30T06:49:11.373062Z INFO fork_choice_control::block_processor: Validating block with slot: 6256 +2024-09-30T06:49:11.374611Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4f0656b9456665acd7c073f350fd906e5a1f8a71fd02228b085efac4c522e63c, slot: 6256 +2024-09-30T06:49:11.382177Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6256 +2024-09-30T06:49:11.382192Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6256 +2024-09-30T06:49:11.397039Z INFO fork_choice_control::block_processor: Validating block with slot: 6257 +2024-09-30T06:49:11.398865Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x52fd98dcad3e0dfe4f59ffc79f57247b1650797a3b9f700a03a53cf13dd4028e, slot: 6257 +2024-09-30T06:49:11.406790Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6257 +2024-09-30T06:49:11.406808Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6257 +2024-09-30T06:49:11.421493Z INFO fork_choice_control::block_processor: Validating block with slot: 6258 +2024-09-30T06:49:11.422463Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x758b272d255c57932d1a7f606281bd31e3e02181d603420a5e9380166c862f93, slot: 6258 +2024-09-30T06:49:11.428205Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6258 +2024-09-30T06:49:11.428218Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6258 +2024-09-30T06:49:11.437909Z INFO fork_choice_control::block_processor: Validating block with slot: 7066 +2024-09-30T06:49:11.443204Z INFO fork_choice_control::block_processor: Validating block with slot: 6259 +2024-09-30T06:49:11.444283Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2d53a775a58f701c34e0cdcf6fb333f992e1a0dd6f3764755b7b2afc0c00aadc, slot: 6259 +2024-09-30T06:49:11.450225Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6259 +2024-09-30T06:49:11.450239Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6259 +2024-09-30T06:49:11.465023Z INFO fork_choice_control::block_processor: Validating block with slot: 6260 +2024-09-30T06:49:11.465987Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa6279add488de0c1e1a634885acdf69fc031322bc8b4142257347cdd892205be, slot: 6260 +2024-09-30T06:49:11.472418Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6260 +2024-09-30T06:49:11.472437Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6260 +2024-09-30T06:49:11.485944Z INFO fork_choice_control::block_processor: Validating block with slot: 7067 +2024-09-30T06:49:11.487666Z INFO fork_choice_control::block_processor: Validating block with slot: 6261 +2024-09-30T06:49:11.489547Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9e1b7a2d441d879063158a3cb6d4d1da9ca9578c92b7f768c3edbe6a7feb1923, slot: 6261 +2024-09-30T06:49:11.497448Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6261 +2024-09-30T06:49:11.497458Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6261 +2024-09-30T06:49:11.513171Z INFO fork_choice_control::block_processor: Validating block with slot: 6262 +2024-09-30T06:49:11.514143Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x87e59473f1bcb2877cb7ce1adc3670f9d6ef07abbdc2dd0c70a52e50191d1302, slot: 6262 +2024-09-30T06:49:11.520283Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6262 +2024-09-30T06:49:11.520310Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6262 +2024-09-30T06:49:11.535961Z INFO fork_choice_control::block_processor: Validating block with slot: 6263 +2024-09-30T06:49:11.536946Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x95d1ecac1fa978caa7535a233d10f55f5a4853f06d3bf56aad9f31cce1545ab5, slot: 6263 +2024-09-30T06:49:11.542565Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6263 +2024-09-30T06:49:11.542579Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6263 +2024-09-30T06:49:11.563607Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 194, root: 0xea26085284003ac76f96bbe331831ec68e72582ab1b38d6199da1fbd7177f11e, head slot: 6263, head root: 0x95d1ecac1fa978caa7535a233d10f55f5a4853f06d3bf56aad9f31cce1545ab5) +2024-09-30T06:49:11.563620Z INFO fork_choice_control::block_processor: Validating block with slot: 6264 +2024-09-30T06:49:11.565026Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd4ee972c9f0b1c4f69f05f34be9b99fc5cc749281a4b407fafdf646d1807b087, slot: 6264 +2024-09-30T06:49:11.573270Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6264 +2024-09-30T06:49:11.573291Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6264 +2024-09-30T06:49:11.589603Z INFO fork_choice_control::block_processor: Validating block with slot: 6265 +2024-09-30T06:49:11.592527Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x374eb7e7497fece0b1fb96c371ea716e6b18b71b0c43558d5d19d941330c9a93, slot: 6265 +2024-09-30T06:49:11.619587Z INFO fork_choice_control::block_processor: Validating block with slot: 7068 +2024-09-30T06:49:11.621082Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6265 +2024-09-30T06:49:11.621149Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6265 +2024-09-30T06:49:11.638951Z INFO fork_choice_control::block_processor: Validating block with slot: 6266 +2024-09-30T06:49:11.640078Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x553f673315b0755324e8bfe15a6354946ed75ec6f10cafab379a0796051f8c44, slot: 6266 +2024-09-30T06:49:11.647262Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6266 +2024-09-30T06:49:11.647274Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6266 +2024-09-30T06:49:11.664530Z INFO fork_choice_control::block_processor: Validating block with slot: 6267 +2024-09-30T06:49:11.665924Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6295a9a46a972dcce79610bc9d7d48067edba5331550b637a2071c1cebdb5c8d, slot: 6267 +2024-09-30T06:49:11.674295Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6267 +2024-09-30T06:49:11.674316Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6267 +2024-09-30T06:49:11.691334Z INFO fork_choice_control::block_processor: Validating block with slot: 6268 +2024-09-30T06:49:11.692454Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4f3833c1256688cd1c8c3d3e5ebc6b615c1e36b9cdf84b388222b561f473bc10, slot: 6268 +2024-09-30T06:49:11.699017Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6268 +2024-09-30T06:49:11.699036Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6268 +2024-09-30T06:49:11.705149Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 6208 +2024-09-30T06:49:11.715436Z INFO fork_choice_control::block_processor: Validating block with slot: 7069 +2024-09-30T06:49:11.716724Z INFO fork_choice_control::block_processor: Validating block with slot: 6269 +2024-09-30T06:49:11.717801Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3491172f01b3aa8c380b04216c6205129dbdf4a5fd7f481b24df7aa04049e866, slot: 6269 +2024-09-30T06:49:11.724123Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6269 +2024-09-30T06:49:11.724145Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6269 +2024-09-30T06:49:11.741756Z INFO fork_choice_control::block_processor: Validating block with slot: 6270 +2024-09-30T06:49:11.743011Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbc4c491ca4fd6c8a13d038d478a4fe2b1672d2cf6820ac8721e84031b872f04d, slot: 6270 +2024-09-30T06:49:11.750147Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6270 +2024-09-30T06:49:11.750164Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6270 +2024-09-30T06:49:11.767631Z INFO fork_choice_control::block_processor: Validating block with slot: 6271 +2024-09-30T06:49:11.769234Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd909d94a22c3f560378e6994cb9ad4700ee7607c2211084ccab453f89035ac80, slot: 6271 +2024-09-30T06:49:11.776625Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6271 +2024-09-30T06:49:11.776638Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6271 +2024-09-30T06:49:11.794176Z INFO fork_choice_control::block_processor: Validating block with slot: 6272 +2024-09-30T06:49:11.796138Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfc6f33590efb8130e1b240fd5610fb9fd711ad34413ad6fa49489ee60e50570e, slot: 6272 +2024-09-30T06:49:11.825861Z INFO fork_choice_control::block_processor: Validating block with slot: 7070 +2024-09-30T06:49:11.898681Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6272 +2024-09-30T06:49:11.898704Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6272 +2024-09-30T06:49:11.909357Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6272) +2024-09-30T06:49:11.909467Z INFO fork_choice_control::block_processor: Validating block with slot: 6273 +2024-09-30T06:49:11.912582Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x17e7976f8d87b1e5e1a7cfa6c6893fdb50548856856ab0944544e71a16a10943, slot: 6273 +2024-09-30T06:49:11.917827Z INFO fork_choice_control::block_processor: Validating block with slot: 7071 +2024-09-30T06:49:11.973195Z INFO fork_choice_control::block_processor: Validating block with slot: 7072 +2024-09-30T06:49:11.991520Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6273 +2024-09-30T06:49:11.991537Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6273 +2024-09-30T06:49:12.001189Z INFO fork_choice_control::block_processor: Validating block with slot: 7073 +2024-09-30T06:49:12.003004Z INFO fork_choice_control::block_processor: Validating block with slot: 6274 +2024-09-30T06:49:12.004856Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0e86e0384ab2735f08432c60b72594564f020defc8fab891d2756fbe490822f5, slot: 6274 +2024-09-30T06:49:12.013764Z INFO fork_choice_control::block_processor: Validating block with slot: 7075 +2024-09-30T06:49:12.014046Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6274 +2024-09-30T06:49:12.014058Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6274 +2024-09-30T06:49:12.026217Z INFO fork_choice_control::block_processor: Validating block with slot: 6275 +2024-09-30T06:49:12.027499Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd9d67e03690e3de3b651ddbe51f185dedf1cf345dee958f2f7720531aeafe03d, slot: 6275 +2024-09-30T06:49:12.034228Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6275 +2024-09-30T06:49:12.034246Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6275 +2024-09-30T06:49:12.046332Z INFO fork_choice_control::block_processor: Validating block with slot: 6276 +2024-09-30T06:49:12.049014Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa94039ea255ad0b94c7bcba226765cab3b9128cfcc4965d823e33c1863558dfc, slot: 6276 +2024-09-30T06:49:12.060286Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6276 +2024-09-30T06:49:12.060303Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6276 +2024-09-30T06:49:12.072840Z INFO fork_choice_control::block_processor: Validating block with slot: 6277 +2024-09-30T06:49:12.074197Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x67d553f49f883b03939ed3abff418f95a780f282096794e9893e294b993376a5, slot: 6277 +2024-09-30T06:49:12.082048Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6277 +2024-09-30T06:49:12.082066Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6277 +2024-09-30T06:49:12.094706Z INFO fork_choice_control::block_processor: Validating block with slot: 6278 +2024-09-30T06:49:12.095831Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdcdd8a2d140684d17c2d22738222dc86ea7d1c35e48680d19159f94eb7d506ea, slot: 6278 +2024-09-30T06:49:12.102574Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6278 +2024-09-30T06:49:12.102593Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6278 +2024-09-30T06:49:12.115217Z INFO fork_choice_control::block_processor: Validating block with slot: 6279 +2024-09-30T06:49:12.116603Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7a63e0fb288864df05c963569095832b51a6ad9ba8c6cc8d2ae5c78ac031310e, slot: 6279 +2024-09-30T06:49:12.124198Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6279 +2024-09-30T06:49:12.124217Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6279 +2024-09-30T06:49:12.137588Z INFO fork_choice_control::block_processor: Validating block with slot: 6280 +2024-09-30T06:49:12.139990Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaef43e32b166d35fa10d32940f5c0a097df5a70795a27e9f2ed3d3c679e816dc, slot: 6280 +2024-09-30T06:49:12.149245Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6280 +2024-09-30T06:49:12.149257Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6280 +2024-09-30T06:49:12.152027Z INFO fork_choice_control::block_processor: Validating block with slot: 7076 +2024-09-30T06:49:12.162500Z INFO fork_choice_control::block_processor: Validating block with slot: 6281 +2024-09-30T06:49:12.163575Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x25a441d02b2982e239267284a5e1aae2937cbe1ace2e67542718bbbbf7d56b5d, slot: 6281 +2024-09-30T06:49:12.169440Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6281 +2024-09-30T06:49:12.169464Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6281 +2024-09-30T06:49:12.185327Z INFO fork_choice_control::block_processor: Validating block with slot: 6282 +2024-09-30T06:49:12.186936Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6955dc8fae81c5a097e889c3a16638d474bc6ddc0c8323bc9854fb37f836d6b9, slot: 6282 +2024-09-30T06:49:12.194887Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6282 +2024-09-30T06:49:12.194910Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6282 +2024-09-30T06:49:12.209353Z INFO fork_choice_control::block_processor: Validating block with slot: 6283 +2024-09-30T06:49:12.210476Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf6236160535e5f03c50e2156f41c30c1b9af9339ea086ad08a93db0e896ba9cc, slot: 6283 +2024-09-30T06:49:12.216181Z INFO fork_choice_control::block_processor: Validating block with slot: 7077 +2024-09-30T06:49:12.219635Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6283 +2024-09-30T06:49:12.219660Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6283 +2024-09-30T06:49:12.235203Z INFO fork_choice_control::block_processor: Validating block with slot: 6284 +2024-09-30T06:49:12.236198Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9c09c9d9877954d4e7333eacf9412126a24ef5ed4bb633ceb321356bdbe4aef3, slot: 6284 +2024-09-30T06:49:12.244148Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6284 +2024-09-30T06:49:12.244171Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6284 +2024-09-30T06:49:12.259142Z INFO fork_choice_control::block_processor: Validating block with slot: 6285 +2024-09-30T06:49:12.260474Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf6d3d56bb023f72af1c3f554bbc90daafd6e89c0bbeae0df715155621d35ce90, slot: 6285 +2024-09-30T06:49:12.267877Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6285 +2024-09-30T06:49:12.267904Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6285 +2024-09-30T06:49:12.282835Z INFO fork_choice_control::block_processor: Validating block with slot: 6286 +2024-09-30T06:49:12.284117Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xea81eca81bbe1f64c8abad8ea325b2f2e1a7a48a9be6581f772b4d61816abde4, slot: 6286 +2024-09-30T06:49:12.290730Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6286 +2024-09-30T06:49:12.290748Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6286 +2024-09-30T06:49:12.297751Z INFO fork_choice_control::block_processor: Validating block with slot: 7078 +2024-09-30T06:49:12.300051Z INFO fork_choice_control::block_processor: Validating block with slot: 7079 +2024-09-30T06:49:12.305396Z INFO fork_choice_control::block_processor: Validating block with slot: 6287 +2024-09-30T06:49:12.307721Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc56fb0aee38035e0a2062c686690ee3925409cc98495629bc0660e55d125d225, slot: 6287 +2024-09-30T06:49:12.316687Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6287 +2024-09-30T06:49:12.316698Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6287 +2024-09-30T06:49:12.331146Z INFO fork_choice_control::block_processor: Validating block with slot: 6288 +2024-09-30T06:49:12.332253Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x961aea3f3c1a9d85ed89b44c6bea2776833516a7b9eb4713bfd4de17744bbc76, slot: 6288 +2024-09-30T06:49:12.339446Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6288 +2024-09-30T06:49:12.339469Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6288 +2024-09-30T06:49:12.354431Z INFO fork_choice_control::block_processor: Validating block with slot: 6289 +2024-09-30T06:49:12.355401Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb49cac3c93ada893824bb0fed8a75f3a6b9acb6d26b41ecb36be63732d3666bf, slot: 6289 +2024-09-30T06:49:12.361077Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6289 +2024-09-30T06:49:12.361090Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6289 +2024-09-30T06:49:12.375906Z INFO fork_choice_control::block_processor: Validating block with slot: 6290 +2024-09-30T06:49:12.377956Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1cce5856500db4f39108abe657d52748a6248d3e910bdf6d248c404aac6eb679, slot: 6290 +2024-09-30T06:49:12.386263Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6290 +2024-09-30T06:49:12.386284Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6290 +2024-09-30T06:49:12.401392Z INFO fork_choice_control::block_processor: Validating block with slot: 6291 +2024-09-30T06:49:12.402377Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd1b14425e863dc5e6340302c8ac9c9b080d937b070fefb36fd2607cd7fb4e24f, slot: 6291 +2024-09-30T06:49:12.408072Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6291 +2024-09-30T06:49:12.408084Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6291 +2024-09-30T06:49:12.423388Z INFO fork_choice_control::block_processor: Validating block with slot: 6292 +2024-09-30T06:49:12.424347Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd2b58ad78b65f83be5c10c33479c44d4dec7c53a0fc00d0af6a54bfe90b6ef36, slot: 6292 +2024-09-30T06:49:12.427705Z INFO fork_choice_control::block_processor: Validating block with slot: 7080 +2024-09-30T06:49:12.430664Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6292 +2024-09-30T06:49:12.430674Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6292 +2024-09-30T06:49:12.446522Z INFO fork_choice_control::block_processor: Validating block with slot: 6293 +2024-09-30T06:49:12.448321Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x98bff178f82cc903ff62bbb154a226d4328ef127f350139900cd0bcbc418debd, slot: 6293 +2024-09-30T06:49:12.456601Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6293 +2024-09-30T06:49:12.456622Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6293 +2024-09-30T06:49:12.472432Z INFO fork_choice_control::block_processor: Validating block with slot: 6294 +2024-09-30T06:49:12.473404Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf1d8f4052c2421bb365559a7b9fe79e1de76fef4f90d022a0f1e3105fc810afc, slot: 6294 +2024-09-30T06:49:12.479166Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6294 +2024-09-30T06:49:12.479178Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6294 +2024-09-30T06:49:12.484534Z INFO fork_choice_control::block_processor: Validating block with slot: 7081 +2024-09-30T06:49:12.495521Z INFO fork_choice_control::block_processor: Validating block with slot: 6295 +2024-09-30T06:49:12.496463Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x09e8e5c10d86e42ce33ab45c04f27b54ee93f61234c24b91612b00878735341e, slot: 6295 +2024-09-30T06:49:12.502322Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6295 +2024-09-30T06:49:12.502348Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6295 +2024-09-30T06:49:12.504713Z INFO fork_choice_control::block_processor: Validating block with slot: 7082 +2024-09-30T06:49:12.523827Z INFO fork_choice_control::block_processor: Validating block with slot: 6296 +2024-09-30T06:49:12.523878Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 195, root: 0x7da388ca3d36c2fbcaa4ae60bfb0f976af54660e362f17730fcad8d14d0d740e, head slot: 6295, head root: 0x09e8e5c10d86e42ce33ab45c04f27b54ee93f61234c24b91612b00878735341e) +2024-09-30T06:49:12.524823Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa333a7a79920d500f6ff8168543b29818b7edc5de9cd8dc253ddbb03eaf789d6, slot: 6296 +2024-09-30T06:49:12.530825Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6296 +2024-09-30T06:49:12.530841Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6296 +2024-09-30T06:49:12.547540Z INFO fork_choice_control::block_processor: Validating block with slot: 6297 +2024-09-30T06:49:12.550788Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x763284902d05575aff162ff07e5c0cf445a2a997af999f8b83fa8d25a9b009b7, slot: 6297 +2024-09-30T06:49:12.562569Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6297 +2024-09-30T06:49:12.562586Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6297 +2024-09-30T06:49:12.564015Z INFO fork_choice_control::block_processor: Validating block with slot: 7083 +2024-09-30T06:49:12.579873Z INFO fork_choice_control::block_processor: Validating block with slot: 6298 +2024-09-30T06:49:12.580917Z INFO fork_choice_control::block_processor: Validating block with slot: 7084 +2024-09-30T06:49:12.581110Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe2d0238c1dcf19644bd176d25afa098d2b1a1db2c86eb5412f5a4d1cd54338e8, slot: 6298 +2024-09-30T06:49:12.587352Z INFO fork_choice_control::block_processor: Validating block with slot: 7085 +2024-09-30T06:49:12.591023Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6298 +2024-09-30T06:49:12.591036Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6298 +2024-09-30T06:49:12.608671Z INFO fork_choice_control::block_processor: Validating block with slot: 6299 +2024-09-30T06:49:12.611920Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x25cca284ada9c39d0e2b8beab1683ecc42e4ab63fd299d2466d83726bc0e3b1a, slot: 6299 +2024-09-30T06:49:12.627931Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6299 +2024-09-30T06:49:12.627952Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6299 +2024-09-30T06:49:12.645894Z INFO fork_choice_control::block_processor: Validating block with slot: 6300 +2024-09-30T06:49:12.647589Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9920a87d513bd1a9442c641f05bef9ac8b07cfb0591eff84f6db6a5273033d6f, slot: 6300 +2024-09-30T06:49:12.652351Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 6240 +2024-09-30T06:49:12.657327Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6300 +2024-09-30T06:49:12.657343Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6300 +2024-09-30T06:49:12.675434Z INFO fork_choice_control::block_processor: Validating block with slot: 6301 +2024-09-30T06:49:12.676708Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd7f5fefa05a74a15792d61c0fe3044c045b47b2588901eae0f964ac6e7f185db, slot: 6301 +2024-09-30T06:49:12.684213Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6301 +2024-09-30T06:49:12.684232Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6301 +2024-09-30T06:49:12.702447Z INFO fork_choice_control::block_processor: Validating block with slot: 6302 +2024-09-30T06:49:12.704415Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x74091dd448d5602eb11d4e99d5857b27b82eab901b3caf3f9c157c2c56309a9d, slot: 6302 +2024-09-30T06:49:12.713754Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6302 +2024-09-30T06:49:12.713769Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6302 +2024-09-30T06:49:12.732341Z INFO fork_choice_control::block_processor: Validating block with slot: 6303 +2024-09-30T06:49:12.733104Z INFO fork_choice_control::block_processor: Validating block with slot: 7086 +2024-09-30T06:49:12.733302Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe929c242a27e4575bc9d2d11743fd98ec2290e23ae126df161c3ef82751bba9b, slot: 6303 +2024-09-30T06:49:12.740336Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6303 +2024-09-30T06:49:12.740351Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6303 +2024-09-30T06:49:12.759216Z INFO fork_choice_control::block_processor: Validating block with slot: 6304 +2024-09-30T06:49:12.761047Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x500aa711d58a7b2b7eeecc195ec828552205b396d3b531b725124f96e38c3d05, slot: 6304 +2024-09-30T06:49:12.862771Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6304 +2024-09-30T06:49:12.862795Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6304 +2024-09-30T06:49:12.871102Z INFO fork_choice_control::block_processor: Validating block with slot: 7087 +2024-09-30T06:49:12.874135Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6304) +2024-09-30T06:49:12.874246Z INFO fork_choice_control::block_processor: Validating block with slot: 6305 +2024-09-30T06:49:12.874886Z INFO fork_choice_control::block_processor: Validating block with slot: 7088 +2024-09-30T06:49:12.875769Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe6dbf85189190fa22b186445b733c58c2b1258259fb2212c5f4e85f02a4c446a, slot: 6305 +2024-09-30T06:49:12.926012Z INFO fork_choice_control::block_processor: Validating block with slot: 7089 +2024-09-30T06:49:12.928513Z INFO fork_choice_control::block_processor: Validating block with slot: 7090 +2024-09-30T06:49:12.950578Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6305 +2024-09-30T06:49:12.950598Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6305 +2024-09-30T06:49:12.962249Z INFO fork_choice_control::block_processor: Validating block with slot: 6306 +2024-09-30T06:49:12.964033Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5d2afcb8933a4bf9508e44918ce50bd831a34a6072d4ac122282d543c07cd136, slot: 6306 +2024-09-30T06:49:12.974990Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6306 +2024-09-30T06:49:12.975011Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6306 +2024-09-30T06:49:12.980015Z INFO fork_choice_control::block_processor: Validating block with slot: 7091 +2024-09-30T06:49:12.982169Z INFO fork_choice_control::block_processor: Validating block with slot: 7092 +2024-09-30T06:49:13.000533Z INFO fork_choice_control::block_processor: Validating block with slot: 6307 +2024-09-30T06:49:13.005268Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4585a9eba9e0b026c50ac52765da3755894f98da1a438d04c9e25a78ad2f9b0b, slot: 6307 +2024-09-30T06:49:13.024688Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6307 +2024-09-30T06:49:13.024712Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6307 +2024-09-30T06:49:13.038853Z INFO fork_choice_control::block_processor: Validating block with slot: 6308 +2024-09-30T06:49:13.040752Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb81e794b9eab3da206d39b10020533be067fa9e9ea06cdde805c252cd3a7f3ed, slot: 6308 +2024-09-30T06:49:13.049337Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6308 +2024-09-30T06:49:13.049354Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6308 +2024-09-30T06:49:13.062514Z INFO fork_choice_control::block_processor: Validating block with slot: 6309 +2024-09-30T06:49:13.063977Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9dae3a6ead231e91dc74c9e9e928d0239b5725d2e86f1caf2fd4c2591f3efd22, slot: 6309 +2024-09-30T06:49:13.073159Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6309 +2024-09-30T06:49:13.073179Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6309 +2024-09-30T06:49:13.086356Z INFO fork_choice_control::block_processor: Validating block with slot: 6310 +2024-09-30T06:49:13.087357Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x51cb16bc2d4efcfca50cb716eadffcca985eae0e206ba7e82bdd7090569ee0ed, slot: 6310 +2024-09-30T06:49:13.092692Z INFO fork_choice_control::block_processor: Validating block with slot: 7093 +2024-09-30T06:49:13.093916Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6310 +2024-09-30T06:49:13.093929Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6310 +2024-09-30T06:49:13.107162Z INFO fork_choice_control::block_processor: Validating block with slot: 6311 +2024-09-30T06:49:13.108428Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x557af42644844f753cf07105dc21abea3c1af2f8cc59491463119db95abeb0e4, slot: 6311 +2024-09-30T06:49:13.115093Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6311 +2024-09-30T06:49:13.115108Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6311 +2024-09-30T06:49:13.128525Z INFO fork_choice_control::block_processor: Validating block with slot: 6312 +2024-09-30T06:49:13.131045Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf7c59ae3294f76a5c56b5de4d55639aae6d0339431ed2ecc0b339b1f177a88ec, slot: 6312 +2024-09-30T06:49:13.140781Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6312 +2024-09-30T06:49:13.140805Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6312 +2024-09-30T06:49:13.154552Z INFO fork_choice_control::block_processor: Validating block with slot: 6314 +2024-09-30T06:49:13.156461Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd952c7352c4a5a1fae2c0990ed90ca33486257eab63584d277f470ab2f5f85b8, slot: 6314 +2024-09-30T06:49:13.165940Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6314 +2024-09-30T06:49:13.165951Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6314 +2024-09-30T06:49:13.179953Z INFO fork_choice_control::block_processor: Validating block with slot: 6315 +2024-09-30T06:49:13.181040Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5e488ead78589d05c7127865780bc3515d5015141469fbda930db6c184d91790, slot: 6315 +2024-09-30T06:49:13.187344Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6315 +2024-09-30T06:49:13.187366Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6315 +2024-09-30T06:49:13.201437Z INFO fork_choice_control::block_processor: Validating block with slot: 6316 +2024-09-30T06:49:13.204840Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8443afe503830cee5e7716e659ab9e83a6c63c483b4c67a4a6c220c2124ec3c0, slot: 6316 +2024-09-30T06:49:13.211499Z INFO fork_choice_control::block_processor: Validating block with slot: 7094 +2024-09-30T06:49:13.211518Z INFO fork_choice_control::block_processor: Validating block with slot: 7095 +2024-09-30T06:49:13.218613Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6316 +2024-09-30T06:49:13.218633Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6316 +2024-09-30T06:49:13.233331Z INFO fork_choice_control::block_processor: Validating block with slot: 6317 +2024-09-30T06:49:13.234315Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3964f865ac83c8e8654367a77b332673f674757faece13bbb019ce02d525fda2, slot: 6317 +2024-09-30T06:49:13.241156Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6317 +2024-09-30T06:49:13.241173Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6317 +2024-09-30T06:49:13.256133Z INFO fork_choice_control::block_processor: Validating block with slot: 6318 +2024-09-30T06:49:13.257093Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3e7dac04bada24c361f84a3a763803e689fff7a4c182947897def4843ba5e62c, slot: 6318 +2024-09-30T06:49:13.262883Z INFO fork_choice_control::block_processor: Validating block with slot: 7096 +2024-09-30T06:49:13.263237Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6318 +2024-09-30T06:49:13.263248Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6318 +2024-09-30T06:49:13.278461Z INFO fork_choice_control::block_processor: Validating block with slot: 6319 +2024-09-30T06:49:13.280114Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd8c345972c8e6e05c488240fc83b735b0286df6028cd8cd28cd6b04f9edbd981, slot: 6319 +2024-09-30T06:49:13.287342Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6319 +2024-09-30T06:49:13.287358Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6319 +2024-09-30T06:49:13.296116Z INFO fork_choice_control::block_processor: Validating block with slot: 7097 +2024-09-30T06:49:13.302816Z INFO fork_choice_control::block_processor: Validating block with slot: 6320 +2024-09-30T06:49:13.303934Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x296891c909656c992653d3018f9f3cbcf9b8845ccdf430e02a0536777a958803, slot: 6320 +2024-09-30T06:49:13.309688Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6320 +2024-09-30T06:49:13.309701Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6320 +2024-09-30T06:49:13.325286Z INFO fork_choice_control::block_processor: Validating block with slot: 6321 +2024-09-30T06:49:13.326246Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2864923fdfe4720c675df3c5ffbf23fa9e24e5b28d6be6fc9f38949115966cf0, slot: 6321 +2024-09-30T06:49:13.331862Z INFO fork_choice_control::block_processor: Validating block with slot: 7098 +2024-09-30T06:49:13.332782Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6321 +2024-09-30T06:49:13.332798Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6321 +2024-09-30T06:49:13.348355Z INFO fork_choice_control::block_processor: Validating block with slot: 6322 +2024-09-30T06:49:13.349447Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x26db165cc6c5454dd2598c544dcda2d58ef8d35766b28596ab7bcc907b81b2f1, slot: 6322 +2024-09-30T06:49:13.356008Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6322 +2024-09-30T06:49:13.356028Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6322 +2024-09-30T06:49:13.372090Z INFO fork_choice_control::block_processor: Validating block with slot: 6323 +2024-09-30T06:49:13.373072Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8d4841043410cc69465debd4fd4bbbb2b74b485b20dcc3c302516bf36eda65c9, slot: 6323 +2024-09-30T06:49:13.378840Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6323 +2024-09-30T06:49:13.378852Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6323 +2024-09-30T06:49:13.394695Z INFO fork_choice_control::block_processor: Validating block with slot: 6324 +2024-09-30T06:49:13.397288Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0cc2dd6e8a7bf210c2e95f67da221cf9328539bbb3cec988e6a7559817e662a3, slot: 6324 +2024-09-30T06:49:13.408697Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6324 +2024-09-30T06:49:13.408720Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6324 +2024-09-30T06:49:13.425305Z INFO fork_choice_control::block_processor: Validating block with slot: 6325 +2024-09-30T06:49:13.426695Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4f43c0cd289e9accc85246bae8eb98c45ba77e564899e9af56ba337e489be2f2, slot: 6325 +2024-09-30T06:49:13.433601Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6325 +2024-09-30T06:49:13.433615Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6325 +2024-09-30T06:49:13.452832Z INFO fork_choice_control::block_processor: Validating block with slot: 6326 +2024-09-30T06:49:13.454358Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6c631f746c4d08cb9dd8d11c440c3a8666b12e09f84f2194c88c903722577c5d, slot: 6326 +2024-09-30T06:49:13.457553Z INFO fork_choice_control::block_processor: Validating block with slot: 7099 +2024-09-30T06:49:13.467335Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6326 +2024-09-30T06:49:13.467361Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6326 +2024-09-30T06:49:13.484991Z INFO fork_choice_control::block_processor: Validating block with slot: 6327 +2024-09-30T06:49:13.485990Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xedd1117b98294d667941922a822e6b9831b84039b8f048f0a8ab362b9e624f4e, slot: 6327 +2024-09-30T06:49:13.491502Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6327 +2024-09-30T06:49:13.491515Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6327 +2024-09-30T06:49:13.491737Z INFO fork_choice_control::block_processor: Validating block with slot: 7100 +2024-09-30T06:49:13.513637Z INFO fork_choice_control::block_processor: Validating block with slot: 6329 +2024-09-30T06:49:13.513670Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 196, root: 0xfc6f33590efb8130e1b240fd5610fb9fd711ad34413ad6fa49489ee60e50570e, head slot: 6327, head root: 0xedd1117b98294d667941922a822e6b9831b84039b8f048f0a8ab362b9e624f4e) +2024-09-30T06:49:13.515479Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9e9ca26510aff77e050860ca8ab6419c4eadeaec9fe7aeb2a370319d06cbf8f4, slot: 6329 +2024-09-30T06:49:13.525793Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6329 +2024-09-30T06:49:13.525813Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6329 +2024-09-30T06:49:13.543462Z INFO fork_choice_control::block_processor: Validating block with slot: 6330 +2024-09-30T06:49:13.545283Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7d294976fb072580fd18b4ffad2eaa0903437af7f153a611d91498210504d7f8, slot: 6330 +2024-09-30T06:49:13.553630Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6330 +2024-09-30T06:49:13.553659Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6330 +2024-09-30T06:49:13.571379Z INFO fork_choice_control::block_processor: Validating block with slot: 6331 +2024-09-30T06:49:13.572636Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2a7c2949749b238b052ae0c5cd39939a8a32937b56dca3b2fae3e6217627f678, slot: 6331 +2024-09-30T06:49:13.579208Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6331 +2024-09-30T06:49:13.579221Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6331 +2024-09-30T06:49:13.597328Z INFO fork_choice_control::block_processor: Validating block with slot: 6332 +2024-09-30T06:49:13.599294Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd7d08ca77f568429ee73081d9a0a24534a333455140b83c8bd30d6e652a835e3, slot: 6332 +2024-09-30T06:49:13.608799Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6332 +2024-09-30T06:49:13.608818Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6332 +2024-09-30T06:49:13.627113Z INFO fork_choice_control::block_processor: Validating block with slot: 6333 +2024-09-30T06:49:13.629641Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x77e1742bc4c3f823462b281dae2bc4b1fd12f7a593a26f4682b24a1b94697114, slot: 6333 +2024-09-30T06:49:13.635780Z INFO fork_choice_control::block_processor: Validating block with slot: 7101 +2024-09-30T06:49:13.641445Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6333 +2024-09-30T06:49:13.641464Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6333 +2024-09-30T06:49:13.648284Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 6272 +2024-09-30T06:49:13.660265Z INFO fork_choice_control::block_processor: Validating block with slot: 6334 +2024-09-30T06:49:13.661383Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc845ef991bbbf89946964313832458285d5aad6cc07a84cc4f61f11b7e35f2f4, slot: 6334 +2024-09-30T06:49:13.667739Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6334 +2024-09-30T06:49:13.667756Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6334 +2024-09-30T06:49:13.687347Z INFO fork_choice_control::block_processor: Validating block with slot: 6335 +2024-09-30T06:49:13.688745Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xca2dd0cc8205ddd947735c5c53c0f79e1a9bf04dcd82e19117fc96939f76e8da, slot: 6335 +2024-09-30T06:49:13.696195Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6335 +2024-09-30T06:49:13.696213Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6335 +2024-09-30T06:49:13.728556Z INFO fork_choice_control::block_processor: Validating block with slot: 7102 +2024-09-30T06:49:13.779884Z INFO fork_choice_control::block_processor: Validating block with slot: 7103 +2024-09-30T06:49:14.063116Z INFO fork_choice_control::block_processor: Validating block with slot: 7104 +2024-09-30T06:49:14.849186Z INFO fork_choice_control::block_processor: Validating block with slot: 8001 +2024-09-30T06:49:14.849193Z INFO fork_choice_control::block_processor: Validating block with slot: 8003 +2024-09-30T06:49:14.849238Z INFO fork_choice_control::block_processor: Validating block with slot: 8002 +2024-09-30T06:49:14.849255Z INFO fork_choice_control::block_processor: Validating block with slot: 8004 +2024-09-30T06:49:15.218387Z INFO fork_choice_control::block_processor: Validating block with slot: 8005 +2024-09-30T06:49:15.218421Z INFO fork_choice_control::block_processor: Validating block with slot: 8006 +2024-09-30T06:49:15.218931Z INFO fork_choice_control::block_processor: Validating block with slot: 8007 +2024-09-30T06:49:15.218987Z INFO fork_choice_control::block_processor: Validating block with slot: 8008 +2024-09-30T06:49:15.219045Z INFO fork_choice_control::block_processor: Validating block with slot: 8009 +2024-09-30T06:49:15.219457Z INFO fork_choice_control::block_processor: Validating block with slot: 8010 +2024-09-30T06:49:15.219473Z INFO fork_choice_control::block_processor: Validating block with slot: 8065 +2024-09-30T06:49:15.221513Z INFO fork_choice_control::block_processor: Validating block with slot: 8011 +2024-09-30T06:49:15.223709Z INFO fork_choice_control::block_processor: Validating block with slot: 8013 +2024-09-30T06:49:15.223801Z INFO fork_choice_control::block_processor: Validating block with slot: 8014 +2024-09-30T06:49:15.341848Z INFO fork_choice_control::block_processor: Validating block with slot: 7361 +2024-09-30T06:49:15.349756Z INFO fork_choice_control::block_processor: Validating block with slot: 7363 +2024-09-30T06:49:15.349759Z INFO fork_choice_control::block_processor: Validating block with slot: 7364 +2024-09-30T06:49:15.349770Z INFO fork_choice_control::block_processor: Validating block with slot: 7365 +2024-09-30T06:49:15.349855Z INFO fork_choice_control::block_processor: Validating block with slot: 7366 +2024-09-30T06:49:15.394177Z INFO fork_choice_control::block_processor: Validating block with slot: 8015 +2024-09-30T06:49:15.394196Z INFO fork_choice_control::block_processor: Validating block with slot: 8016 +2024-09-30T06:49:15.394202Z INFO fork_choice_control::block_processor: Validating block with slot: 8017 +2024-09-30T06:49:15.394304Z INFO fork_choice_control::block_processor: Validating block with slot: 8018 +2024-09-30T06:49:15.394336Z INFO fork_choice_control::block_processor: Validating block with slot: 8019 +2024-09-30T06:49:15.459922Z INFO fork_choice_control::block_processor: Validating block with slot: 8066 +2024-09-30T06:49:15.503066Z INFO fork_choice_control::block_processor: Validating block with slot: 8067 +2024-09-30T06:49:15.537597Z INFO fork_choice_control::block_processor: Validating block with slot: 7368 +2024-09-30T06:49:15.537614Z INFO fork_choice_control::block_processor: Validating block with slot: 7369 +2024-09-30T06:49:15.537639Z INFO fork_choice_control::block_processor: Validating block with slot: 7367 +2024-09-30T06:49:15.563801Z INFO fork_choice_control::block_processor: Validating block with slot: 7370 +2024-09-30T06:49:15.563873Z INFO fork_choice_control::block_processor: Validating block with slot: 7371 +2024-09-30T06:49:15.563895Z INFO fork_choice_control::block_processor: Validating block with slot: 7373 +2024-09-30T06:49:15.563899Z INFO fork_choice_control::block_processor: Validating block with slot: 7375 +2024-09-30T06:49:15.563908Z INFO fork_choice_control::block_processor: Validating block with slot: 7372 +2024-09-30T06:49:15.563919Z INFO fork_choice_control::block_processor: Validating block with slot: 7376 +2024-09-30T06:49:15.563942Z INFO fork_choice_control::block_processor: Validating block with slot: 7374 +2024-09-30T06:49:15.565133Z INFO fork_choice_control::block_processor: Validating block with slot: 7377 +2024-09-30T06:49:15.565135Z INFO fork_choice_control::block_processor: Validating block with slot: 7378 +2024-09-30T06:49:15.565302Z INFO fork_choice_control::block_processor: Validating block with slot: 7379 +2024-09-30T06:49:15.565333Z INFO fork_choice_control::block_processor: Validating block with slot: 7380 +2024-09-30T06:49:15.565962Z INFO fork_choice_control::block_processor: Validating block with slot: 7381 +2024-09-30T06:49:15.566301Z INFO fork_choice_control::block_processor: Validating block with slot: 7382 +2024-09-30T06:49:15.566766Z INFO fork_choice_control::block_processor: Validating block with slot: 7383 +2024-09-30T06:49:15.588586Z INFO fork_choice_control::block_processor: Validating block with slot: 8020 +2024-09-30T06:49:15.588602Z INFO fork_choice_control::block_processor: Validating block with slot: 8021 +2024-09-30T06:49:15.588634Z INFO fork_choice_control::block_processor: Validating block with slot: 8025 +2024-09-30T06:49:15.588668Z INFO fork_choice_control::block_processor: Validating block with slot: 8024 +2024-09-30T06:49:15.588679Z INFO fork_choice_control::block_processor: Validating block with slot: 8027 +2024-09-30T06:49:15.588689Z INFO fork_choice_control::block_processor: Validating block with slot: 8022 +2024-09-30T06:49:15.588713Z INFO fork_choice_control::block_processor: Validating block with slot: 8026 +2024-09-30T06:49:15.589605Z INFO fork_choice_control::block_processor: Validating block with slot: 8028 +2024-09-30T06:49:15.589755Z INFO fork_choice_control::block_processor: Validating block with slot: 8029 +2024-09-30T06:49:15.589824Z INFO fork_choice_control::block_processor: Validating block with slot: 8030 +2024-09-30T06:49:15.590672Z INFO fork_choice_control::block_processor: Validating block with slot: 8023 +2024-09-30T06:49:15.590805Z INFO fork_choice_control::block_processor: Validating block with slot: 8031 +2024-09-30T06:49:15.600273Z INFO fork_choice_control::block_processor: Validating block with slot: 8068 +2024-09-30T06:49:15.615965Z INFO fork_choice_control::block_processor: Validating block with slot: 8033 +2024-09-30T06:49:15.637845Z INFO fork_choice_control::block_processor: Validating block with slot: 7384 +2024-09-30T06:49:15.782292Z INFO fork_choice_control::block_processor: Validating block with slot: 8034 +2024-09-30T06:49:15.782303Z INFO fork_choice_control::block_processor: Validating block with slot: 8069 +2024-09-30T06:49:15.782309Z INFO fork_choice_control::block_processor: Validating block with slot: 8035 +2024-09-30T06:49:15.782334Z INFO fork_choice_control::block_processor: Validating block with slot: 7388 +2024-09-30T06:49:15.782382Z INFO fork_choice_control::block_processor: Validating block with slot: 7387 +2024-09-30T06:49:15.782365Z INFO fork_choice_control::block_processor: Validating block with slot: 7386 +2024-09-30T06:49:15.782518Z INFO fork_choice_control::block_processor: Validating block with slot: 7385 +2024-09-30T06:49:15.782783Z INFO fork_choice_control::block_processor: Validating block with slot: 8036 +2024-09-30T06:49:15.783290Z INFO fork_choice_control::block_processor: Validating block with slot: 7389 +2024-09-30T06:49:15.783390Z INFO fork_choice_control::block_processor: Validating block with slot: 7390 +2024-09-30T06:49:15.783397Z INFO fork_choice_control::block_processor: Validating block with slot: 7391 +2024-09-30T06:49:15.783457Z INFO fork_choice_control::block_processor: Validating block with slot: 7392 +2024-09-30T06:49:15.784225Z INFO fork_choice_control::block_processor: Validating block with slot: 7393 +2024-09-30T06:49:15.784337Z INFO fork_choice_control::block_processor: Validating block with slot: 7394 +2024-09-30T06:49:15.786769Z INFO fork_choice_control::block_processor: Validating block with slot: 7395 +2024-09-30T06:49:15.786864Z INFO fork_choice_control::block_processor: Validating block with slot: 7399 +2024-09-30T06:49:15.786934Z INFO fork_choice_control::block_processor: Validating block with slot: 7396 +2024-09-30T06:49:15.787077Z INFO fork_choice_control::block_processor: Validating block with slot: 7400 +2024-09-30T06:49:15.787740Z INFO fork_choice_control::block_processor: Validating block with slot: 7401 +2024-09-30T06:49:15.787939Z INFO fork_choice_control::block_processor: Validating block with slot: 7402 +2024-09-30T06:49:15.788016Z INFO fork_choice_control::block_processor: Validating block with slot: 7403 +2024-09-30T06:49:15.788272Z INFO fork_choice_control::block_processor: Validating block with slot: 7404 +2024-09-30T06:49:15.788565Z INFO fork_choice_control::block_processor: Validating block with slot: 7397 +2024-09-30T06:49:15.789347Z INFO fork_choice_control::block_processor: Validating block with slot: 7405 +2024-09-30T06:49:15.789859Z INFO fork_choice_control::block_processor: Validating block with slot: 8037 +2024-09-30T06:49:15.790304Z INFO fork_choice_control::block_processor: Validating block with slot: 8038 +2024-09-30T06:49:15.790422Z INFO fork_choice_control::block_processor: Validating block with slot: 8039 +2024-09-30T06:49:15.790501Z INFO fork_choice_control::block_processor: Validating block with slot: 7406 +2024-09-30T06:49:15.790583Z INFO fork_choice_control::block_processor: Validating block with slot: 7407 +2024-09-30T06:49:15.790590Z INFO fork_choice_control::block_processor: Validating block with slot: 7398 +2024-09-30T06:49:15.791027Z INFO fork_choice_control::block_processor: Validating block with slot: 7408 +2024-09-30T06:49:15.791376Z INFO fork_choice_control::block_processor: Validating block with slot: 7409 +2024-09-30T06:49:15.791492Z INFO fork_choice_control::block_processor: Validating block with slot: 7410 +2024-09-30T06:49:15.792452Z INFO fork_choice_control::block_processor: Validating block with slot: 7411 +2024-09-30T06:49:15.792645Z INFO fork_choice_control::block_processor: Validating block with slot: 7413 +2024-09-30T06:49:15.793101Z INFO fork_choice_control::block_processor: Validating block with slot: 8042 +2024-09-30T06:49:15.793465Z INFO fork_choice_control::block_processor: Validating block with slot: 7412 +2024-09-30T06:49:15.793682Z INFO fork_choice_control::block_processor: Validating block with slot: 8041 +2024-09-30T06:49:15.793993Z INFO fork_choice_control::block_processor: Validating block with slot: 8043 +2024-09-30T06:49:15.794117Z INFO fork_choice_control::block_processor: Validating block with slot: 8044 +2024-09-30T06:49:15.794317Z INFO fork_choice_control::block_processor: Validating block with slot: 8045 +2024-09-30T06:49:15.794362Z INFO fork_choice_control::block_processor: Validating block with slot: 8046 +2024-09-30T06:49:15.795011Z INFO fork_choice_control::block_processor: Validating block with slot: 7414 +2024-09-30T06:49:15.795253Z INFO fork_choice_control::block_processor: Validating block with slot: 7415 +2024-09-30T06:49:15.795591Z INFO fork_choice_control::block_processor: Validating block with slot: 8070 +2024-09-30T06:49:15.834360Z INFO fork_choice_control::block_processor: Validating block with slot: 8047 +2024-09-30T06:49:15.842650Z INFO fork_choice_control::block_processor: Validating block with slot: 8071 +2024-09-30T06:49:15.893963Z INFO fork_choice_control::block_processor: Validating block with slot: 7417 +2024-09-30T06:49:15.894000Z INFO fork_choice_control::block_processor: Validating block with slot: 7416 +2024-09-30T06:49:15.915066Z INFO fork_choice_control::block_processor: Validating block with slot: 7418 +2024-09-30T06:49:15.915073Z INFO fork_choice_control::block_processor: Validating block with slot: 7420 +2024-09-30T06:49:15.915089Z INFO fork_choice_control::block_processor: Validating block with slot: 7421 +2024-09-30T06:49:15.915094Z INFO fork_choice_control::block_processor: Validating block with slot: 7422 +2024-09-30T06:49:15.915173Z INFO fork_choice_control::block_processor: Validating block with slot: 8072 +2024-09-30T06:49:15.915187Z INFO fork_choice_control::block_processor: Validating block with slot: 7423 +2024-09-30T06:49:15.915254Z INFO fork_choice_control::block_processor: Validating block with slot: 7419 +2024-09-30T06:49:15.921882Z INFO fork_choice_control::block_processor: Validating block with slot: 7424 +2024-09-30T06:49:15.965426Z INFO fork_choice_control::block_processor: Validating block with slot: 8049 +2024-09-30T06:49:15.965444Z INFO fork_choice_control::block_processor: Validating block with slot: 8050 +2024-09-30T06:49:15.965482Z INFO fork_choice_control::block_processor: Validating block with slot: 8051 +2024-09-30T06:49:15.965490Z INFO fork_choice_control::block_processor: Validating block with slot: 8053 +2024-09-30T06:49:15.965489Z INFO fork_choice_control::block_processor: Validating block with slot: 8048 +2024-09-30T06:49:15.965588Z INFO fork_choice_control::block_processor: Validating block with slot: 8054 +2024-09-30T06:49:15.965610Z INFO fork_choice_control::block_processor: Validating block with slot: 8052 +2024-09-30T06:49:15.965852Z INFO fork_choice_control::block_processor: Validating block with slot: 8055 +2024-09-30T06:49:15.967157Z INFO fork_choice_control::block_processor: Validating block with slot: 8056 +2024-09-30T06:49:15.967178Z INFO fork_choice_control::block_processor: Validating block with slot: 8059 +2024-09-30T06:49:15.967456Z INFO fork_choice_control::block_processor: Validating block with slot: 8060 +2024-09-30T06:49:15.967466Z INFO fork_choice_control::block_processor: Validating block with slot: 8061 +2024-09-30T06:49:15.967679Z INFO fork_choice_control::block_processor: Validating block with slot: 8062 +2024-09-30T06:49:15.967719Z INFO fork_choice_control::block_processor: Validating block with slot: 8063 +2024-09-30T06:49:15.968539Z INFO fork_choice_control::block_processor: Validating block with slot: 8064 +2024-09-30T06:49:15.969049Z INFO fork_choice_control::block_processor: Validating block with slot: 8057 +2024-09-30T06:49:16.013938Z INFO fork_choice_control::block_processor: Validating block with slot: 8073 +2024-09-30T06:49:16.031220Z INFO fork_choice_control::block_processor: Validating block with slot: 8074 +2024-09-30T06:49:16.086640Z INFO fork_choice_control::block_processor: Validating block with slot: 7812 +2024-09-30T06:49:16.086638Z INFO fork_choice_control::block_processor: Validating block with slot: 7810 +2024-09-30T06:49:16.086657Z INFO fork_choice_control::block_processor: Validating block with slot: 7809 +2024-09-30T06:49:16.086661Z INFO fork_choice_control::block_processor: Validating block with slot: 7814 +2024-09-30T06:49:16.086673Z INFO fork_choice_control::block_processor: Validating block with slot: 7813 +2024-09-30T06:49:16.086699Z INFO fork_choice_control::block_processor: Validating block with slot: 7811 +2024-09-30T06:49:16.086778Z INFO fork_choice_control::block_processor: Validating block with slot: 8075 +2024-09-30T06:49:16.088222Z INFO fork_choice_control::block_processor: Validating block with slot: 7815 +2024-09-30T06:49:16.088267Z INFO fork_choice_control::block_processor: Validating block with slot: 7816 +2024-09-30T06:49:16.112260Z INFO fork_choice_control::block_processor: Validating block with slot: 8076 +2024-09-30T06:49:16.130300Z INFO fork_choice_control::block_processor: Validating block with slot: 7818 +2024-09-30T06:49:16.130302Z INFO fork_choice_control::block_processor: Validating block with slot: 7817 +2024-09-30T06:49:16.130306Z INFO fork_choice_control::block_processor: Validating block with slot: 7823 +2024-09-30T06:49:16.130337Z INFO fork_choice_control::block_processor: Validating block with slot: 7824 +2024-09-30T06:49:16.130358Z INFO fork_choice_control::block_processor: Validating block with slot: 7821 +2024-09-30T06:49:16.130388Z INFO fork_choice_control::block_processor: Validating block with slot: 7820 +2024-09-30T06:49:16.130628Z INFO fork_choice_control::block_processor: Validating block with slot: 7822 +2024-09-30T06:49:16.177554Z INFO fork_choice_control::block_processor: Validating block with slot: 7826 +2024-09-30T06:49:16.177557Z INFO fork_choice_control::block_processor: Validating block with slot: 7825 +2024-09-30T06:49:16.177605Z INFO fork_choice_control::block_processor: Validating block with slot: 7827 +2024-09-30T06:49:16.177663Z INFO fork_choice_control::block_processor: Validating block with slot: 7830 +2024-09-30T06:49:16.177698Z INFO fork_choice_control::block_processor: Validating block with slot: 7831 +2024-09-30T06:49:16.177719Z INFO fork_choice_control::block_processor: Validating block with slot: 7828 +2024-09-30T06:49:16.177898Z INFO fork_choice_control::block_processor: Validating block with slot: 7833 +2024-09-30T06:49:16.177967Z INFO fork_choice_control::block_processor: Validating block with slot: 7829 +2024-09-30T06:49:16.178632Z INFO fork_choice_control::block_processor: Validating block with slot: 7834 +2024-09-30T06:49:16.178677Z INFO fork_choice_control::block_processor: Validating block with slot: 7835 +2024-09-30T06:49:16.226989Z INFO fork_choice_control::block_processor: Validating block with slot: 7837 +2024-09-30T06:49:16.227002Z INFO fork_choice_control::block_processor: Validating block with slot: 7836 +2024-09-30T06:49:16.227029Z INFO fork_choice_control::block_processor: Validating block with slot: 7838 +2024-09-30T06:49:16.227040Z INFO fork_choice_control::block_processor: Validating block with slot: 7841 +2024-09-30T06:49:16.227077Z INFO fork_choice_control::block_processor: Validating block with slot: 7842 +2024-09-30T06:49:16.227129Z INFO fork_choice_control::block_processor: Validating block with slot: 7843 +2024-09-30T06:49:16.227688Z INFO fork_choice_control::block_processor: Validating block with slot: 7844 +2024-09-30T06:49:16.234827Z INFO fork_choice_control::block_processor: Validating block with slot: 8077 +2024-09-30T06:49:16.271101Z INFO fork_choice_control::block_processor: Validating block with slot: 7846 +2024-09-30T06:49:16.271117Z INFO fork_choice_control::block_processor: Validating block with slot: 7847 +2024-09-30T06:49:16.271135Z INFO fork_choice_control::block_processor: Validating block with slot: 7848 +2024-09-30T06:49:16.271172Z INFO fork_choice_control::block_processor: Validating block with slot: 7850 +2024-09-30T06:49:16.271184Z INFO fork_choice_control::block_processor: Validating block with slot: 7845 +2024-09-30T06:49:16.271202Z INFO fork_choice_control::block_processor: Validating block with slot: 7849 +2024-09-30T06:49:16.271414Z INFO fork_choice_control::block_processor: Validating block with slot: 7851 +2024-09-30T06:49:16.271552Z INFO fork_choice_control::block_processor: Validating block with slot: 7852 +2024-09-30T06:49:16.323668Z INFO fork_choice_control::block_processor: Validating block with slot: 7853 +2024-09-30T06:49:16.323671Z INFO fork_choice_control::block_processor: Validating block with slot: 7854 +2024-09-30T06:49:16.323742Z INFO fork_choice_control::block_processor: Validating block with slot: 7855 +2024-09-30T06:49:16.323755Z INFO fork_choice_control::block_processor: Validating block with slot: 7857 +2024-09-30T06:49:16.323801Z INFO fork_choice_control::block_processor: Validating block with slot: 7858 +2024-09-30T06:49:16.323944Z INFO fork_choice_control::block_processor: Validating block with slot: 7859 +2024-09-30T06:49:16.324603Z INFO fork_choice_control::block_processor: Validating block with slot: 7860 +2024-09-30T06:49:16.324776Z INFO fork_choice_control::block_processor: Validating block with slot: 7861 +2024-09-30T06:49:16.325154Z INFO fork_choice_control::block_processor: Validating block with slot: 7862 +2024-09-30T06:49:16.325214Z INFO fork_choice_control::block_processor: Validating block with slot: 7856 +2024-09-30T06:49:16.371232Z INFO fork_choice_control::block_processor: Validating block with slot: 7865 +2024-09-30T06:49:16.371235Z INFO fork_choice_control::block_processor: Validating block with slot: 7863 +2024-09-30T06:49:16.371239Z INFO fork_choice_control::block_processor: Validating block with slot: 8078 +2024-09-30T06:49:16.371251Z INFO fork_choice_control::block_processor: Validating block with slot: 7866 +2024-09-30T06:49:16.371252Z INFO fork_choice_control::block_processor: Validating block with slot: 7864 +2024-09-30T06:49:16.371277Z INFO fork_choice_control::block_processor: Validating block with slot: 7868 +2024-09-30T06:49:16.371293Z INFO fork_choice_control::block_processor: Validating block with slot: 7870 +2024-09-30T06:49:16.371333Z INFO fork_choice_control::block_processor: Validating block with slot: 7867 +2024-09-30T06:49:16.372212Z INFO fork_choice_control::block_processor: Validating block with slot: 7871 +2024-09-30T06:49:16.405152Z INFO fork_choice_control::block_processor: Validating block with slot: 7872 +2024-09-30T06:49:16.464502Z INFO fork_choice_control::block_processor: Validating block with slot: 8079 +2024-09-30T06:49:16.473969Z INFO fork_choice_control::block_processor: Validating block with slot: 8080 +2024-09-30T06:49:16.549340Z INFO fork_choice_control::block_processor: Validating block with slot: 8081 +2024-09-30T06:49:16.623178Z INFO fork_choice_control::block_processor: Validating block with slot: 8082 +2024-09-30T06:49:16.647913Z INFO fork_choice_control::block_processor: Validating block with slot: 8083 +2024-09-30T06:49:16.797688Z INFO fork_choice_control::block_processor: Validating block with slot: 8084 +2024-09-30T06:49:16.798666Z INFO fork_choice_control::block_processor: Validating block with slot: 8085 +2024-09-30T06:49:16.926840Z INFO fork_choice_control::block_processor: Validating block with slot: 8086 +2024-09-30T06:49:16.953149Z INFO fork_choice_control::block_processor: Validating block with slot: 8087 +2024-09-30T06:49:17.101811Z INFO fork_choice_control::block_processor: Validating block with slot: 8088 +2024-09-30T06:49:17.138058Z INFO fork_choice_control::block_processor: Validating block with slot: 8089 +2024-09-30T06:49:17.235434Z INFO fork_choice_control::block_processor: Validating block with slot: 8090 +2024-09-30T06:49:17.240522Z INFO fork_choice_control::block_processor: Validating block with slot: 8091 +2024-09-30T06:49:17.357473Z INFO fork_choice_control::block_processor: Validating block with slot: 8092 +2024-09-30T06:49:17.361293Z INFO fork_choice_control::block_processor: Validating block with slot: 8093 +2024-09-30T06:49:17.472662Z INFO fork_choice_control::block_processor: Validating block with slot: 8094 +2024-09-30T06:49:17.490001Z INFO fork_choice_control::block_processor: Validating block with slot: 8095 +2024-09-30T06:49:17.523315Z INFO fork_choice_control::block_processor: Validating block with slot: 8096 +2024-09-30T06:49:17.558703Z INFO fork_choice_control::block_processor: Validating block with slot: 8097 +2024-09-30T06:49:17.629519Z INFO fork_choice_control::block_processor: Validating block with slot: 8098 +2024-09-30T06:49:17.750408Z INFO fork_choice_control::block_processor: Validating block with slot: 8099 +2024-09-30T06:49:17.762048Z INFO fork_choice_control::block_processor: Validating block with slot: 8100 +2024-09-30T06:49:17.801803Z INFO fork_choice_control::block_processor: Validating block with slot: 8101 +2024-09-30T06:49:17.941981Z INFO fork_choice_control::block_processor: Validating block with slot: 8102 +2024-09-30T06:49:17.951534Z INFO fork_choice_control::block_processor: Validating block with slot: 8103 +2024-09-30T06:49:18.041291Z INFO fork_choice_control::block_processor: Validating block with slot: 8104 +2024-09-30T06:49:18.047457Z INFO fork_choice_control::block_processor: Validating block with slot: 8105 +2024-09-30T06:49:18.094682Z INFO fork_choice_control::block_processor: Validating block with slot: 8106 +2024-09-30T06:49:18.107884Z INFO fork_choice_control::block_processor: Validating block with slot: 8107 +2024-09-30T06:49:18.132372Z INFO fork_choice_control::block_processor: Validating block with slot: 7426 +2024-09-30T06:49:18.132446Z INFO fork_choice_control::block_processor: Validating block with slot: 7427 +2024-09-30T06:49:18.237119Z INFO fork_choice_control::block_processor: Validating block with slot: 7431 +2024-09-30T06:49:18.237119Z INFO fork_choice_control::block_processor: Validating block with slot: 7428 +2024-09-30T06:49:18.237131Z INFO fork_choice_control::block_processor: Validating block with slot: 7433 +2024-09-30T06:49:18.237139Z INFO fork_choice_control::block_processor: Validating block with slot: 7430 +2024-09-30T06:49:18.237144Z INFO fork_choice_control::block_processor: Validating block with slot: 8109 +2024-09-30T06:49:18.237205Z INFO fork_choice_control::block_processor: Validating block with slot: 7429 +2024-09-30T06:49:18.237221Z INFO fork_choice_control::block_processor: Validating block with slot: 7435 +2024-09-30T06:49:18.237578Z INFO fork_choice_control::block_processor: Validating block with slot: 7432 +2024-09-30T06:49:18.238100Z INFO fork_choice_control::block_processor: Validating block with slot: 7436 +2024-09-30T06:49:18.238428Z INFO fork_choice_control::block_processor: Validating block with slot: 7437 +2024-09-30T06:49:18.238787Z INFO fork_choice_control::block_processor: Validating block with slot: 7438 +2024-09-30T06:49:18.239073Z INFO fork_choice_control::block_processor: Validating block with slot: 7439 +2024-09-30T06:49:18.239235Z INFO fork_choice_control::block_processor: Validating block with slot: 7440 +2024-09-30T06:49:18.239375Z INFO fork_choice_control::block_processor: Validating block with slot: 7441 +2024-09-30T06:49:18.240012Z INFO fork_choice_control::block_processor: Validating block with slot: 7442 +2024-09-30T06:49:18.240532Z INFO fork_choice_control::block_processor: Validating block with slot: 8110 +2024-09-30T06:49:18.241173Z INFO fork_choice_control::block_processor: Validating block with slot: 7443 +2024-09-30T06:49:18.241439Z INFO fork_choice_control::block_processor: Validating block with slot: 7446 +2024-09-30T06:49:18.241436Z INFO fork_choice_control::block_processor: Validating block with slot: 7444 +2024-09-30T06:49:18.241692Z INFO fork_choice_control::block_processor: Validating block with slot: 7447 +2024-09-30T06:49:18.242231Z INFO fork_choice_control::block_processor: Validating block with slot: 7448 +2024-09-30T06:49:18.242377Z INFO fork_choice_control::block_processor: Validating block with slot: 7449 +2024-09-30T06:49:18.243197Z INFO fork_choice_control::block_processor: Validating block with slot: 7450 +2024-09-30T06:49:18.243654Z INFO fork_choice_control::block_processor: Validating block with slot: 7451 +2024-09-30T06:49:18.243727Z INFO fork_choice_control::block_processor: Validating block with slot: 7452 +2024-09-30T06:49:18.243982Z INFO fork_choice_control::block_processor: Validating block with slot: 7445 +2024-09-30T06:49:18.244669Z INFO fork_choice_control::block_processor: Validating block with slot: 7453 +2024-09-30T06:49:18.244719Z INFO fork_choice_control::block_processor: Validating block with slot: 7454 +2024-09-30T06:49:18.245073Z INFO fork_choice_control::block_processor: Validating block with slot: 7455 +2024-09-30T06:49:18.245564Z INFO fork_choice_control::block_processor: Validating block with slot: 7456 +2024-09-30T06:49:18.245690Z INFO fork_choice_control::block_processor: Validating block with slot: 7457 +2024-09-30T06:49:18.245936Z INFO fork_choice_control::block_processor: Validating block with slot: 7458 +2024-09-30T06:49:18.246008Z INFO fork_choice_control::block_processor: Validating block with slot: 7459 +2024-09-30T06:49:18.246742Z INFO fork_choice_control::block_processor: Validating block with slot: 7460 +2024-09-30T06:49:18.246764Z INFO fork_choice_control::block_processor: Validating block with slot: 7461 +2024-09-30T06:49:18.246946Z INFO fork_choice_control::block_processor: Validating block with slot: 7462 +2024-09-30T06:49:18.247662Z INFO fork_choice_control::block_processor: Validating block with slot: 7463 +2024-09-30T06:49:18.247882Z INFO fork_choice_control::block_processor: Validating block with slot: 7464 +2024-09-30T06:49:18.247983Z INFO fork_choice_control::block_processor: Validating block with slot: 7465 +2024-09-30T06:49:18.248092Z INFO fork_choice_control::block_processor: Validating block with slot: 7466 +2024-09-30T06:49:18.248456Z INFO fork_choice_control::block_processor: Validating block with slot: 7467 +2024-09-30T06:49:18.248602Z INFO fork_choice_control::block_processor: Validating block with slot: 7468 +2024-09-30T06:49:18.249055Z INFO fork_choice_control::block_processor: Validating block with slot: 7469 +2024-09-30T06:49:18.249165Z INFO fork_choice_control::block_processor: Validating block with slot: 7470 +2024-09-30T06:49:18.249764Z INFO fork_choice_control::block_processor: Validating block with slot: 7471 +2024-09-30T06:49:18.249816Z INFO fork_choice_control::block_processor: Validating block with slot: 7472 +2024-09-30T06:49:18.249990Z INFO fork_choice_control::block_processor: Validating block with slot: 7473 +2024-09-30T06:49:18.250104Z INFO fork_choice_control::block_processor: Validating block with slot: 7474 +2024-09-30T06:49:18.251661Z INFO fork_choice_control::block_processor: Validating block with slot: 7475 +2024-09-30T06:49:18.251964Z INFO fork_choice_control::block_processor: Validating block with slot: 7479 +2024-09-30T06:49:18.252182Z INFO fork_choice_control::block_processor: Validating block with slot: 7480 +2024-09-30T06:49:18.252490Z INFO fork_choice_control::block_processor: Validating block with slot: 7476 +2024-09-30T06:49:18.252705Z INFO fork_choice_control::block_processor: Validating block with slot: 7477 +2024-09-30T06:49:18.252756Z INFO fork_choice_control::block_processor: Validating block with slot: 7481 +2024-09-30T06:49:18.252903Z INFO fork_choice_control::block_processor: Validating block with slot: 7482 +2024-09-30T06:49:18.253614Z INFO fork_choice_control::block_processor: Validating block with slot: 7483 +2024-09-30T06:49:18.253963Z INFO fork_choice_control::block_processor: Validating block with slot: 7484 +2024-09-30T06:49:18.254118Z INFO fork_choice_control::block_processor: Validating block with slot: 7485 +2024-09-30T06:49:18.254739Z INFO fork_choice_control::block_processor: Validating block with slot: 7486 +2024-09-30T06:49:18.255405Z INFO fork_choice_control::block_processor: Validating block with slot: 7488 +2024-09-30T06:49:18.255768Z INFO fork_choice_control::block_processor: Validating block with slot: 7478 +2024-09-30T06:49:18.255792Z INFO fork_choice_control::block_processor: Validating block with slot: 7487 +2024-09-30T06:49:18.256960Z INFO fork_choice_control::block_processor: Validating block with slot: 8111 +2024-09-30T06:49:18.287263Z INFO fork_choice_control::block_processor: Validating block with slot: 8112 +2024-09-30T06:49:18.339717Z INFO fork_choice_control::block_processor: Validating block with slot: 8113 +2024-09-30T06:49:18.386909Z INFO fork_choice_control::block_processor: Validating block with slot: 8114 +2024-09-30T06:49:18.486389Z INFO fork_choice_control::block_processor: Validating block with slot: 8115 +2024-09-30T06:49:18.578541Z INFO fork_choice_control::block_processor: Validating block with slot: 8116 +2024-09-30T06:49:18.674576Z INFO fork_choice_control::block_processor: Validating block with slot: 8117 +2024-09-30T06:49:18.776856Z INFO fork_choice_control::block_processor: Validating block with slot: 8118 +2024-09-30T06:49:18.820610Z INFO fork_choice_control::block_processor: Validating block with slot: 8119 +2024-09-30T06:49:18.839631Z INFO fork_choice_control::block_processor: Validating block with slot: 8121 +2024-09-30T06:49:18.943053Z INFO fork_choice_control::block_processor: Validating block with slot: 8122 +2024-09-30T06:49:18.947354Z INFO fork_choice_control::block_processor: Validating block with slot: 8123 +2024-09-30T06:49:18.995499Z INFO fork_choice_control::block_processor: Validating block with slot: 8124 +2024-09-30T06:49:19.019717Z INFO fork_choice_control::block_processor: Validating block with slot: 8127 +2024-09-30T06:49:19.022036Z INFO fork_choice_control::block_processor: Validating block with slot: 8128 +2024-09-30T06:49:20.311186Z INFO fork_choice_control::block_processor: Validating block with slot: 6368 +2024-09-30T06:49:20.381840Z INFO fork_choice_control::block_processor: Validating block with slot: 6464 +2024-09-30T06:49:24.037322Z INFO fork_choice_control::block_processor: Validating block with slot: 6817 +2024-09-30T06:49:24.123695Z INFO fork_choice_control::block_processor: Validating block with slot: 6818 +2024-09-30T06:49:24.177611Z INFO fork_choice_control::block_processor: Validating block with slot: 6819 +2024-09-30T06:49:24.198357Z INFO fork_choice_control::block_processor: Validating block with slot: 6820 +2024-09-30T06:49:24.249615Z INFO fork_choice_control::block_processor: Validating block with slot: 6821 +2024-09-30T06:49:24.249626Z INFO fork_choice_control::block_processor: Validating block with slot: 6822 +2024-09-30T06:49:24.373629Z INFO fork_choice_control::block_processor: Validating block with slot: 6823 +2024-09-30T06:49:24.386280Z INFO fork_choice_control::block_processor: Validating block with slot: 6824 +2024-09-30T06:49:24.398833Z INFO fork_choice_control::block_processor: Validating block with slot: 6825 +2024-09-30T06:49:24.414333Z INFO fork_choice_control::block_processor: Validating block with slot: 6826 +2024-09-30T06:49:24.425219Z INFO fork_choice_control::block_processor: Validating block with slot: 6827 +2024-09-30T06:49:24.455477Z INFO fork_choice_control::block_processor: Validating block with slot: 6828 +2024-09-30T06:49:24.502010Z INFO fork_choice_control::block_processor: Validating block with slot: 6829 +2024-09-30T06:49:24.537067Z INFO fork_choice_control::block_processor: Validating block with slot: 6830 +2024-09-30T06:49:24.567915Z INFO fork_choice_control::block_processor: Validating block with slot: 6831 +2024-09-30T06:49:24.668650Z INFO fork_choice_control::block_processor: Validating block with slot: 6832 +2024-09-30T06:49:24.675742Z INFO fork_choice_control::block_processor: Validating block with slot: 6833 +2024-09-30T06:49:24.714338Z INFO fork_choice_control::block_processor: Validating block with slot: 6834 +2024-09-30T06:49:24.845073Z INFO fork_choice_control::block_processor: Validating block with slot: 6835 +2024-09-30T06:49:24.910192Z INFO fork_choice_control::block_processor: Validating block with slot: 6836 +2024-09-30T06:49:24.971444Z INFO fork_choice_control::block_processor: Validating block with slot: 6837 +2024-09-30T06:49:24.978389Z INFO fork_choice_control::block_processor: Validating block with slot: 6838 +2024-09-30T06:49:25.092991Z INFO fork_choice_control::block_processor: Validating block with slot: 6839 +2024-09-30T06:49:25.119646Z INFO fork_choice_control::block_processor: Validating block with slot: 6840 +2024-09-30T06:49:25.184856Z INFO fork_choice_control::block_processor: Validating block with slot: 6841 +2024-09-30T06:49:25.226722Z INFO fork_choice_control::block_processor: Validating block with slot: 6842 +2024-09-30T06:49:25.287734Z INFO fork_choice_control::block_processor: Validating block with slot: 6843 +2024-09-30T06:49:25.323185Z INFO fork_choice_control::block_processor: Validating block with slot: 6844 +2024-09-30T06:49:25.329894Z INFO fork_choice_control::block_processor: Validating block with slot: 6846 +2024-09-30T06:49:25.329907Z INFO fork_choice_control::block_processor: Validating block with slot: 6845 +2024-09-30T06:49:25.403106Z INFO fork_choice_control::block_processor: Validating block with slot: 6847 +2024-09-30T06:49:28.914244Z INFO fork_choice_control::block_processor: Validating block with slot: 6338 +2024-09-30T06:49:28.914286Z INFO fork_choice_control::block_processor: Validating block with slot: 6340 +2024-09-30T06:49:28.914295Z INFO fork_choice_control::block_processor: Validating block with slot: 6339 +2024-09-30T06:49:28.914268Z INFO fork_choice_control::block_processor: Validating block with slot: 6337 +2024-09-30T06:49:28.916305Z INFO fork_choice_control::block_processor: Validating block with slot: 6342 +2024-09-30T06:49:28.916301Z INFO fork_choice_control::block_processor: Validating block with slot: 6341 +2024-09-30T06:49:28.917172Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa2274ce1181a26d3667593d69fdd90a4ddd12d9f7a2a142b257e8f040b73e510, slot: 6337 +2024-09-30T06:49:28.920468Z INFO fork_choice_control::block_processor: Validating block with slot: 6343 +2024-09-30T06:49:28.943338Z INFO fork_choice_control::block_processor: Validating block with slot: 6345 +2024-09-30T06:49:28.943346Z INFO fork_choice_control::block_processor: Validating block with slot: 6346 +2024-09-30T06:49:28.972834Z INFO fork_choice_control::block_processor: Validating block with slot: 6349 +2024-09-30T06:49:28.972840Z INFO fork_choice_control::block_processor: Validating block with slot: 6348 +2024-09-30T06:49:28.972885Z INFO fork_choice_control::block_processor: Validating block with slot: 6347 +2024-09-30T06:49:28.980629Z INFO fork_choice_control::block_processor: Validating block with slot: 6350 +2024-09-30T06:49:28.980633Z INFO fork_choice_control::block_processor: Validating block with slot: 6351 +2024-09-30T06:49:29.025109Z INFO fork_choice_control::block_processor: Validating block with slot: 6352 +2024-09-30T06:49:29.027831Z INFO fork_choice_control::block_processor: Validating block with slot: 6354 +2024-09-30T06:49:29.027840Z INFO fork_choice_control::block_processor: Validating block with slot: 6353 +2024-09-30T06:49:29.040570Z INFO fork_choice_control::block_processor: Validating block with slot: 6356 +2024-09-30T06:49:29.040574Z INFO fork_choice_control::block_processor: Validating block with slot: 6355 +2024-09-30T06:49:29.046496Z INFO fork_choice_control::block_processor: Validating block with slot: 6357 +2024-09-30T06:49:29.046530Z INFO fork_choice_control::block_processor: Validating block with slot: 6358 +2024-09-30T06:49:29.066981Z INFO fork_choice_control::block_processor: Validating block with slot: 6360 +2024-09-30T06:49:29.066996Z INFO fork_choice_control::block_processor: Validating block with slot: 6359 +2024-09-30T06:49:29.077091Z INFO fork_choice_control::block_processor: Validating block with slot: 6361 +2024-09-30T06:49:29.104153Z INFO fork_choice_control::block_processor: Validating block with slot: 6363 +2024-09-30T06:49:29.107391Z INFO fork_choice_control::block_processor: Validating block with slot: 6362 +2024-09-30T06:49:29.110253Z INFO fork_choice_control::block_processor: Validating block with slot: 6366 +2024-09-30T06:49:29.110229Z INFO fork_choice_control::block_processor: Validating block with slot: 6364 +2024-09-30T06:49:29.110555Z INFO fork_choice_control::block_processor: Validating block with slot: 6365 +2024-09-30T06:49:29.114493Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6337 +2024-09-30T06:49:29.114518Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6337 +2024-09-30T06:49:29.127457Z INFO fork_choice_control::block_processor: Validating block with slot: 6338 +2024-09-30T06:49:29.129247Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9370face88ee37a5fb9d6a786e50c1dde0fc6bf45b96bf763c9f8e874b87ea9a, slot: 6338 +2024-09-30T06:49:29.138576Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6338 +2024-09-30T06:49:29.138604Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6338 +2024-09-30T06:49:29.150570Z INFO fork_choice_control::block_processor: Validating block with slot: 6339 +2024-09-30T06:49:29.152596Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x837b607e31f91ed18bb6c5ee784e3d15d2ae5c013820efcc545e09d686ab7f21, slot: 6339 +2024-09-30T06:49:29.162265Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6339 +2024-09-30T06:49:29.162285Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6339 +2024-09-30T06:49:29.175035Z INFO fork_choice_control::block_processor: Validating block with slot: 6340 +2024-09-30T06:49:29.176126Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x48456333760d3a39b760758d00dcff3790a494f919f17ac18f95ef1df682250a, slot: 6340 +2024-09-30T06:49:29.182833Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6340 +2024-09-30T06:49:29.182849Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6340 +2024-09-30T06:49:29.195280Z INFO fork_choice_control::block_processor: Validating block with slot: 6341 +2024-09-30T06:49:29.196268Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6dffee88f62991ae7f0afa44cc8dd60e16c3314155e864d9c227238914972530, slot: 6341 +2024-09-30T06:49:29.203604Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6341 +2024-09-30T06:49:29.203629Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6341 +2024-09-30T06:49:29.216375Z INFO fork_choice_control::block_processor: Validating block with slot: 6342 +2024-09-30T06:49:29.217476Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5373e9983f3c6ce7c1533818dc18c8d89cc3b0755894e09115ed66cda7cd027c, slot: 6342 +2024-09-30T06:49:29.226735Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6342 +2024-09-30T06:49:29.226757Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6342 +2024-09-30T06:49:29.240578Z INFO fork_choice_control::block_processor: Validating block with slot: 6343 +2024-09-30T06:49:29.241561Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb6ff04a62f9a407c326f38876b98f76d4bd57151dea10a86c83d63a17b4bcfe5, slot: 6343 +2024-09-30T06:49:29.247771Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6343 +2024-09-30T06:49:29.247788Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6343 +2024-09-30T06:49:29.261216Z INFO fork_choice_control::block_processor: Validating block with slot: 6345 +2024-09-30T06:49:29.263107Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0a1224d506815bdb4d73b7b07f52eb41f1358bd682df7e93c0b874eb2a59b509, slot: 6345 +2024-09-30T06:49:29.276988Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6345 +2024-09-30T06:49:29.277009Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6345 +2024-09-30T06:49:29.290940Z INFO fork_choice_control::block_processor: Validating block with slot: 6346 +2024-09-30T06:49:29.292225Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x549767fe7f0a4a625634500685eac78dad51cc63df4f9cdc4b510b3f0f31fe9c, slot: 6346 +2024-09-30T06:49:29.298566Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6346 +2024-09-30T06:49:29.298582Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6346 +2024-09-30T06:49:29.312046Z INFO fork_choice_control::block_processor: Validating block with slot: 6347 +2024-09-30T06:49:29.313172Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf19b1e6f04f3e5180df74257b0bf6661fe88423f5f8e87e036faed9a883043bd, slot: 6347 +2024-09-30T06:49:29.319194Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6347 +2024-09-30T06:49:29.319215Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6347 +2024-09-30T06:49:29.335059Z INFO fork_choice_control::block_processor: Validating block with slot: 6348 +2024-09-30T06:49:29.336265Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x16012117b4fb18140c5279f7e08705d6dbf914e4c54c769eeec2a80afdbbc1af, slot: 6348 +2024-09-30T06:49:29.344524Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6348 +2024-09-30T06:49:29.344545Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6348 +2024-09-30T06:49:29.359353Z INFO fork_choice_control::block_processor: Validating block with slot: 6349 +2024-09-30T06:49:29.360458Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x201bfd34f8718e03fab61c1fba13152e3b9dca8fb9a1a4cb4ef71fb50d447556, slot: 6349 +2024-09-30T06:49:29.366326Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6349 +2024-09-30T06:49:29.366340Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6349 +2024-09-30T06:49:29.380912Z INFO fork_choice_control::block_processor: Validating block with slot: 6350 +2024-09-30T06:49:29.382434Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb02f2ed29e3b2baf98307acb3579033f975026a25cea7dd5ae9ec75258b926a9, slot: 6350 +2024-09-30T06:49:29.390781Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6350 +2024-09-30T06:49:29.390803Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6350 +2024-09-30T06:49:29.391532Z INFO fork_choice_control::block_processor: Validating block with slot: 6367 +2024-09-30T06:49:29.405640Z INFO fork_choice_control::block_processor: Validating block with slot: 6351 +2024-09-30T06:49:29.406883Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x576ab9c5ce4e591db9543dce02905bc71a5a107c9e07a7420c53864ce934dfdb, slot: 6351 +2024-09-30T06:49:29.413589Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6351 +2024-09-30T06:49:29.413610Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6351 +2024-09-30T06:49:29.428977Z INFO fork_choice_control::block_processor: Validating block with slot: 6352 +2024-09-30T06:49:29.432069Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xccc4b50392783f1ee3a28b070cde50c679f94306e5a19f489e8a6bcad57d1e4f, slot: 6352 +2024-09-30T06:49:29.443769Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6352 +2024-09-30T06:49:29.443789Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6352 +2024-09-30T06:49:29.458947Z INFO fork_choice_control::block_processor: Validating block with slot: 6353 +2024-09-30T06:49:29.460460Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x21aa0719eee8b88c36de45d235b263a9b8f85e8b15f6551e20744e7f893b5114, slot: 6353 +2024-09-30T06:49:29.467481Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6353 +2024-09-30T06:49:29.467500Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6353 +2024-09-30T06:49:29.483153Z INFO fork_choice_control::block_processor: Validating block with slot: 6354 +2024-09-30T06:49:29.484576Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa2edb24b1c9fdcdccc1a93e85696e41465d64393b1c6b28ec007f57ae2251244, slot: 6354 +2024-09-30T06:49:29.490900Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6354 +2024-09-30T06:49:29.490918Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6354 +2024-09-30T06:49:29.506178Z INFO fork_choice_control::block_processor: Validating block with slot: 6355 +2024-09-30T06:49:29.509114Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdc0f37493783948e0cef4ca98833c04bdec26745e369399a4cd21ed0284565d6, slot: 6355 +2024-09-30T06:49:29.521077Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6355 +2024-09-30T06:49:29.521098Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6355 +2024-09-30T06:49:29.536952Z INFO fork_choice_control::block_processor: Validating block with slot: 6356 +2024-09-30T06:49:29.538050Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeff9ff54d35bf5479757a408a420877621b61a76409e3e7198926e984226215c, slot: 6356 +2024-09-30T06:49:29.544135Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6356 +2024-09-30T06:49:29.544149Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6356 +2024-09-30T06:49:29.560150Z INFO fork_choice_control::block_processor: Validating block with slot: 6357 +2024-09-30T06:49:29.561245Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3bda08a425f8d193eefcdce63958722ccae10ed688403b8d4e6e89dd5a9fe098, slot: 6357 +2024-09-30T06:49:29.567303Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6357 +2024-09-30T06:49:29.567316Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6357 +2024-09-30T06:49:29.583637Z INFO fork_choice_control::block_processor: Validating block with slot: 6358 +2024-09-30T06:49:29.585458Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x71f1335c7bc3e003c749b07981656f8c51ff2272582aa945fb1fa57c41f3ce7e, slot: 6358 +2024-09-30T06:49:29.593648Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6358 +2024-09-30T06:49:29.593668Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6358 +2024-09-30T06:49:29.610342Z INFO fork_choice_control::block_processor: Validating block with slot: 6359 +2024-09-30T06:49:29.611305Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x71ba2aac45f90d19246a008a5c221558c63d7fb329b32d666245d6245b7adce4, slot: 6359 +2024-09-30T06:49:29.616953Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6359 +2024-09-30T06:49:29.616967Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6359 +2024-09-30T06:49:29.688183Z INFO fork_choice_control::block_processor: Validating block with slot: 6360 +2024-09-30T06:49:29.688230Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 197, root: 0x500aa711d58a7b2b7eeecc195ec828552205b396d3b531b725124f96e38c3d05, head slot: 6359, head root: 0x71ba2aac45f90d19246a008a5c221558c63d7fb329b32d666245d6245b7adce4) +2024-09-30T06:49:29.689463Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc0c3ad15d0af7181bebc9ed1079362bcc4014403588f7bac4dc0b9aad8e3b6af, slot: 6360 +2024-09-30T06:49:29.696582Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6360 +2024-09-30T06:49:29.696601Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6360 +2024-09-30T06:49:29.713990Z INFO fork_choice_control::block_processor: Validating block with slot: 6361 +2024-09-30T06:49:29.715119Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf3773c21c2b0fe69bb579382f29dbffd435e0affee70a59f422d1beb7040950f, slot: 6361 +2024-09-30T06:49:29.723199Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6361 +2024-09-30T06:49:29.723220Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6361 +2024-09-30T06:49:29.740296Z INFO fork_choice_control::block_processor: Validating block with slot: 6362 +2024-09-30T06:49:29.741560Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x600a84da78378eca72c1e3620fcaaf70cff489ac6ce549cd98aa096e688d4f96, slot: 6362 +2024-09-30T06:49:29.748444Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6362 +2024-09-30T06:49:29.748456Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6362 +2024-09-30T06:49:29.765716Z INFO fork_choice_control::block_processor: Validating block with slot: 6363 +2024-09-30T06:49:29.767976Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xce0020db6d0c95893368708578ea406cb0463c6319da077e35e23fe36a902a8f, slot: 6363 +2024-09-30T06:49:29.777500Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6363 +2024-09-30T06:49:29.777516Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6363 +2024-09-30T06:49:29.795349Z INFO fork_choice_control::block_processor: Validating block with slot: 6364 +2024-09-30T06:49:29.797469Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xacdc18f1d8bdfc0c80af6e8eaf378c5c4fca82b88dc89d82f2b5487d06c46e08, slot: 6364 +2024-09-30T06:49:29.808047Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6364 +2024-09-30T06:49:29.808070Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6364 +2024-09-30T06:49:29.819236Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 6304 +2024-09-30T06:49:29.826339Z INFO fork_choice_control::block_processor: Validating block with slot: 6365 +2024-09-30T06:49:29.827603Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x096f93160825bdad85cc5b7fd93f9e0a1b6a35c6c4f04cf893e485b45df41506, slot: 6365 +2024-09-30T06:49:29.834454Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6365 +2024-09-30T06:49:29.834523Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6365 +2024-09-30T06:49:29.852827Z INFO fork_choice_control::block_processor: Validating block with slot: 6366 +2024-09-30T06:49:29.853855Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeb7c99e214f251d123d698f8c6bdfdf8e4e4a97c3a1eb3a255ea294e4a154a2f, slot: 6366 +2024-09-30T06:49:29.860522Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6366 +2024-09-30T06:49:29.860539Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6366 +2024-09-30T06:49:29.878847Z INFO fork_choice_control::block_processor: Validating block with slot: 6367 +2024-09-30T06:49:29.879969Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4c703f06c3f9035b2728eec376cc6e4cda90f39f73ac6d32649fd743b5a9d601, slot: 6367 +2024-09-30T06:49:29.888314Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6367 +2024-09-30T06:49:29.888336Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6367 +2024-09-30T06:49:29.907104Z INFO fork_choice_control::block_processor: Validating block with slot: 6368 +2024-09-30T06:49:29.908102Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x42fcedfdfa5030cea0e08db6d0f201be0c5eff23f4a45e4efbd0476a55618e0e, slot: 6368 +2024-09-30T06:49:30.010160Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6368 +2024-09-30T06:49:30.010181Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6368 +2024-09-30T06:49:30.021196Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6368) +2024-09-30T06:49:30.021390Z INFO fork_choice_control::block_processor: Validating block with slot: 6369 +2024-09-30T06:49:30.022621Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9cb998af4ba3337aaca0bc437bd4b653f5f01db914d1f1c735484b5318297b4d, slot: 6369 +2024-09-30T06:49:30.100519Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6369 +2024-09-30T06:49:30.100541Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6369 +2024-09-30T06:49:30.111886Z INFO fork_choice_control::block_processor: Validating block with slot: 6370 +2024-09-30T06:49:30.113435Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x408fe651dca63b96117c2408612c53a43074172d969a11fe0a498b48356d7b16, slot: 6370 +2024-09-30T06:49:30.122516Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6370 +2024-09-30T06:49:30.122540Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6370 +2024-09-30T06:49:30.133391Z INFO fork_choice_control::block_processor: Validating block with slot: 6371 +2024-09-30T06:49:30.137754Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9ecb1fd61f37173a0852dfea62d20f463d9cd46bba184df61477b54ceffd5133, slot: 6371 +2024-09-30T06:49:30.154164Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6371 +2024-09-30T06:49:30.154189Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6371 +2024-09-30T06:49:30.165948Z INFO fork_choice_control::block_processor: Validating block with slot: 6372 +2024-09-30T06:49:30.166956Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xedf0f542af95c7e617adf47c8c2b687cfc62dc567520ce1c0340bace1637469b, slot: 6372 +2024-09-30T06:49:30.173303Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6372 +2024-09-30T06:49:30.173319Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6372 +2024-09-30T06:49:30.185688Z INFO fork_choice_control::block_processor: Validating block with slot: 6373 +2024-09-30T06:49:30.187098Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xde7acdd9f3312874b27cba9a70a8092242f7c1caaaee7c09bee5ce5bef65a587, slot: 6373 +2024-09-30T06:49:30.197160Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6373 +2024-09-30T06:49:30.197180Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6373 +2024-09-30T06:49:30.209992Z INFO fork_choice_control::block_processor: Validating block with slot: 6374 +2024-09-30T06:49:30.211261Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xddf03e87bc2c71cc98ddbe70f46fb802eb4bdabd4c49c844baf9263c2944bd17, slot: 6374 +2024-09-30T06:49:30.220775Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6374 +2024-09-30T06:49:30.220808Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6374 +2024-09-30T06:49:30.233563Z INFO fork_choice_control::block_processor: Validating block with slot: 6375 +2024-09-30T06:49:30.237265Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4a1accc26dec76cf9c9c85dda3952b90b308ff92af2d43e3fad410c957744823, slot: 6375 +2024-09-30T06:49:30.253555Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6375 +2024-09-30T06:49:30.253635Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6375 +2024-09-30T06:49:30.269077Z INFO fork_choice_control::block_processor: Validating block with slot: 6376 +2024-09-30T06:49:30.273307Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5645c76cf42e16b4348f8a634b1dfe77c9c6a7604f7e00ba8791453f83e91ea7, slot: 6376 +2024-09-30T06:49:30.288029Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6376 +2024-09-30T06:49:30.288053Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6376 +2024-09-30T06:49:30.302252Z INFO fork_choice_control::block_processor: Validating block with slot: 6377 +2024-09-30T06:49:30.303246Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4a6568c56f1530c01db1d5f29c5d180d620459a9aed78db5663536538765eac5, slot: 6377 +2024-09-30T06:49:30.309192Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6377 +2024-09-30T06:49:30.309204Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6377 +2024-09-30T06:49:30.323325Z INFO fork_choice_control::block_processor: Validating block with slot: 6378 +2024-09-30T06:49:30.324709Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb3f4fbb6f3675ea1252eaa262c019f13838e82903f126214b82e7d4bec56ea0b, slot: 6378 +2024-09-30T06:49:30.331412Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6378 +2024-09-30T06:49:30.331429Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6378 +2024-09-30T06:49:30.345721Z INFO fork_choice_control::block_processor: Validating block with slot: 6379 +2024-09-30T06:49:30.347374Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe86db349763ea84c816b421676f67acad8cbaa69ae3d65394a7b55b0b7f1a553, slot: 6379 +2024-09-30T06:49:30.355889Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6379 +2024-09-30T06:49:30.355914Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6379 +2024-09-30T06:49:30.370567Z INFO fork_choice_control::block_processor: Validating block with slot: 6380 +2024-09-30T06:49:30.371661Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x119892670390ff90696c356ce88b73f42081e3ebcf1dc819967fcaa34edcff94, slot: 6380 +2024-09-30T06:49:30.377545Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6380 +2024-09-30T06:49:30.377561Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6380 +2024-09-30T06:49:30.392389Z INFO fork_choice_control::block_processor: Validating block with slot: 6381 +2024-09-30T06:49:30.393498Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x840606494a887bb53e2b509dff84286d2ff1957113f8aca16973207327792824, slot: 6381 +2024-09-30T06:49:30.399687Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6381 +2024-09-30T06:49:30.399704Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6381 +2024-09-30T06:49:30.423364Z INFO fork_choice_control::block_processor: Validating block with slot: 6382 +2024-09-30T06:49:30.424679Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x45fabde78700893dc6bbaaefe383ff017beefed43e2c61da78769b0d207b08d1, slot: 6382 +2024-09-30T06:49:30.435163Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6382 +2024-09-30T06:49:30.435188Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6382 +2024-09-30T06:49:30.450144Z INFO fork_choice_control::block_processor: Validating block with slot: 6383 +2024-09-30T06:49:30.451283Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb9cdddcf70a827bdd20b99d1675ab5c413103968ad575aa997c3ed6b50d98774, slot: 6383 +2024-09-30T06:49:30.457839Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6383 +2024-09-30T06:49:30.457859Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6383 +2024-09-30T06:49:30.473458Z INFO fork_choice_control::block_processor: Validating block with slot: 6384 +2024-09-30T06:49:30.474711Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x53afc86fecbd00b978cec70eda427cfa729867feb7589e1d6912624d9581abd1, slot: 6384 +2024-09-30T06:49:30.481668Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6384 +2024-09-30T06:49:30.481681Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6384 +2024-09-30T06:49:30.497308Z INFO fork_choice_control::block_processor: Validating block with slot: 6385 +2024-09-30T06:49:30.498677Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0c5d201b82d081343bb08f1500530c80573a9cd52f526cb135736d14429d9874, slot: 6385 +2024-09-30T06:49:30.506166Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6385 +2024-09-30T06:49:30.506188Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6385 +2024-09-30T06:49:30.521840Z INFO fork_choice_control::block_processor: Validating block with slot: 6386 +2024-09-30T06:49:30.523669Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x958a0b4638c2f07ffef421d70347bc041c341378fb859eeb2787969602e4f673, slot: 6386 +2024-09-30T06:49:30.531207Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6386 +2024-09-30T06:49:30.531221Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6386 +2024-09-30T06:49:30.547142Z INFO fork_choice_control::block_processor: Validating block with slot: 6387 +2024-09-30T06:49:30.548930Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x05648c96ff2540b6bda7a540105cdeaf69765b7b8ab523c90f27da3bb884c10d, slot: 6387 +2024-09-30T06:49:30.556686Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6387 +2024-09-30T06:49:30.556705Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6387 +2024-09-30T06:49:30.572978Z INFO fork_choice_control::block_processor: Validating block with slot: 6388 +2024-09-30T06:49:30.574337Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb8c98a049cb8c6f802c7bd27e1c5f4ecda87ae5189b6961b34c3f240f2a2f825, slot: 6388 +2024-09-30T06:49:30.580753Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6388 +2024-09-30T06:49:30.580768Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6388 +2024-09-30T06:49:30.597617Z INFO fork_choice_control::block_processor: Validating block with slot: 6389 +2024-09-30T06:49:30.598577Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9ee832da2d719daf74e2c1d76d91fc19e13fd6a0361f4baa20cb3af77f8e85aa, slot: 6389 +2024-09-30T06:49:30.605139Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6389 +2024-09-30T06:49:30.605162Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6389 +2024-09-30T06:49:30.621871Z INFO fork_choice_control::block_processor: Validating block with slot: 6390 +2024-09-30T06:49:30.623527Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9c27bdb51588149657d1c0a73312a74a135d2501fe9afc53f42222d66dcfa56a, slot: 6390 +2024-09-30T06:49:30.630848Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6390 +2024-09-30T06:49:30.630861Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6390 +2024-09-30T06:49:30.647824Z INFO fork_choice_control::block_processor: Validating block with slot: 6391 +2024-09-30T06:49:30.649080Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc9c4a408c77c76205c6c35d899024fcb20abb3172eada6d6e9a9f6e87e5164b9, slot: 6391 +2024-09-30T06:49:30.655689Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6391 +2024-09-30T06:49:30.655709Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6391 +2024-09-30T06:49:30.677904Z INFO fork_choice_control::block_processor: Validating block with slot: 6392 +2024-09-30T06:49:30.677907Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 198, root: 0xca2dd0cc8205ddd947735c5c53c0f79e1a9bf04dcd82e19117fc96939f76e8da, head slot: 6391, head root: 0xc9c4a408c77c76205c6c35d899024fcb20abb3172eada6d6e9a9f6e87e5164b9) +2024-09-30T06:49:30.679144Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcedc663c2f7de9dcd026e2852ca047a7febeaaf198ef10e5f60cd33236914751, slot: 6392 +2024-09-30T06:49:30.685636Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6392 +2024-09-30T06:49:30.685660Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6392 +2024-09-30T06:49:30.703136Z INFO fork_choice_control::block_processor: Validating block with slot: 6393 +2024-09-30T06:49:30.704682Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5f2a145415831aae28eb04122fe169ef99cd737a9300fa61beeb090fa5a80175, slot: 6393 +2024-09-30T06:49:30.711572Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6393 +2024-09-30T06:49:30.711584Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6393 +2024-09-30T06:49:30.729081Z INFO fork_choice_control::block_processor: Validating block with slot: 6394 +2024-09-30T06:49:30.730314Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe8eccb16fce59d6470bf19c7bb1f8582f7bd28ec9930700272ebba4a98813901, slot: 6394 +2024-09-30T06:49:30.737007Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6394 +2024-09-30T06:49:30.737045Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6394 +2024-09-30T06:49:30.754947Z INFO fork_choice_control::block_processor: Validating block with slot: 6395 +2024-09-30T06:49:30.756735Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x372cadc19371f459c3626d74c4fd3c30f664e5bb29b1bae9037562c4cfe8f029, slot: 6395 +2024-09-30T06:49:30.764736Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6395 +2024-09-30T06:49:30.764755Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6395 +2024-09-30T06:49:30.782784Z INFO fork_choice_control::block_processor: Validating block with slot: 6396 +2024-09-30T06:49:30.784204Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x75f227a3ee5ff1ed317b8fc8bbdef1b17587a930a71968b62237298c98a5b78c, slot: 6396 +2024-09-30T06:49:30.792249Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6396 +2024-09-30T06:49:30.792270Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6396 +2024-09-30T06:49:30.810802Z INFO fork_choice_control::block_processor: Validating block with slot: 6397 +2024-09-30T06:49:30.811784Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaf71b09de6a9424514529c2323a3683ca1d2b2e9a634517d33543f29c3cba40a, slot: 6397 +2024-09-30T06:49:30.817944Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6397 +2024-09-30T06:49:30.817969Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6397 +2024-09-30T06:49:30.836533Z INFO fork_choice_control::block_processor: Validating block with slot: 6398 +2024-09-30T06:49:30.837680Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcd988776cae92f449fbcf966b5ddd02e46e220f2c28a565b5b650c35272dbc24, slot: 6398 +2024-09-30T06:49:30.843788Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6398 +2024-09-30T06:49:30.843804Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6398 +2024-09-30T06:49:30.862298Z INFO fork_choice_control::block_processor: Validating block with slot: 6399 +2024-09-30T06:49:30.865846Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf36a0917b1cfc66d026dc715936b1a819776815d6f827b467584eb0a95f77079, slot: 6399 +2024-09-30T06:49:30.878127Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6399 +2024-09-30T06:49:30.878146Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6399 +2024-09-30T06:49:30.897377Z INFO fork_choice_control::block_processor: Validating block with slot: 6400 +2024-09-30T06:49:30.898489Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa6f6d2d31c737bb018528406aa6e7f2cdbfac136ba0bde0112f10a51966372d2, slot: 6400 +2024-09-30T06:49:30.999285Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6400 +2024-09-30T06:49:30.999308Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6400 +2024-09-30T06:49:31.011370Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6400) +2024-09-30T06:49:31.011536Z INFO fork_choice_control::block_processor: Validating block with slot: 6401 +2024-09-30T06:49:31.012872Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc830ac552d4094a448f3b68e85fbd19d263afb6554390443bd17378a275741e2, slot: 6401 +2024-09-30T06:49:31.088137Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6401 +2024-09-30T06:49:31.088158Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6401 +2024-09-30T06:49:31.100104Z INFO fork_choice_control::block_processor: Validating block with slot: 6402 +2024-09-30T06:49:31.102613Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x67ba7c29f2f60d8544b38adab1756808de61d6644e274e122b73d9ddfd2f077d, slot: 6402 +2024-09-30T06:49:31.112438Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6402 +2024-09-30T06:49:31.112451Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6402 +2024-09-30T06:49:31.125353Z INFO fork_choice_control::block_processor: Validating block with slot: 6403 +2024-09-30T06:49:31.126587Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2ed66dbc92b2c06273304903bf6b83aaeedeaaaaec3beb84c23ae6946e21b357, slot: 6403 +2024-09-30T06:49:31.134701Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6403 +2024-09-30T06:49:31.134721Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6403 +2024-09-30T06:49:31.147541Z INFO fork_choice_control::block_processor: Validating block with slot: 6404 +2024-09-30T06:49:31.148828Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1215e0fd58e795e48724a5c281e9d2246071fd68d9f9c3b09e615ff1ee71d4dc, slot: 6404 +2024-09-30T06:49:31.156305Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6404 +2024-09-30T06:49:31.156326Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6404 +2024-09-30T06:49:31.169496Z INFO fork_choice_control::block_processor: Validating block with slot: 6405 +2024-09-30T06:49:31.170756Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x54dce79e9b503c09e813037b70bcb4a3c098d9a6fd307cf1b30b41f6337ed2d7, slot: 6405 +2024-09-30T06:49:31.178881Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6405 +2024-09-30T06:49:31.178900Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6405 +2024-09-30T06:49:31.192482Z INFO fork_choice_control::block_processor: Validating block with slot: 6406 +2024-09-30T06:49:31.196608Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5d4e239f175d9185e311a40cab059c3d6824021d2953a34e4fee73d6ec4e523f, slot: 6406 +2024-09-30T06:49:31.215969Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6406 +2024-09-30T06:49:31.215990Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6406 +2024-09-30T06:49:31.230256Z INFO fork_choice_control::block_processor: Validating block with slot: 6407 +2024-09-30T06:49:31.231252Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcd7078e48419992b8e85e72daeb56f3625d1b64162db8ed7cede5f0562209cc4, slot: 6407 +2024-09-30T06:49:31.238872Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6407 +2024-09-30T06:49:31.238891Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6407 +2024-09-30T06:49:31.253376Z INFO fork_choice_control::block_processor: Validating block with slot: 6408 +2024-09-30T06:49:31.255169Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdb44f65ad4d601d009d22af65ee76c969f7279111e7894144092354074482ae6, slot: 6408 +2024-09-30T06:49:31.263606Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6408 +2024-09-30T06:49:31.263626Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6408 +2024-09-30T06:49:31.278223Z INFO fork_choice_control::block_processor: Validating block with slot: 6409 +2024-09-30T06:49:31.279871Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5d9fed6994cb6dc80ca28620a5756a9f207b9682a48241dcecff90214a5305a6, slot: 6409 +2024-09-30T06:49:31.287539Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6409 +2024-09-30T06:49:31.287558Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6409 +2024-09-30T06:49:31.302108Z INFO fork_choice_control::block_processor: Validating block with slot: 6410 +2024-09-30T06:49:31.303109Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf0974cd2ebb029595e67c507266b656b019f6a168e162ca817db542c52557672, slot: 6410 +2024-09-30T06:49:31.309011Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6410 +2024-09-30T06:49:31.309029Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6410 +2024-09-30T06:49:31.324085Z INFO fork_choice_control::block_processor: Validating block with slot: 6411 +2024-09-30T06:49:31.325070Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x49830893084a4e4bcb42129506b004746f77309c862fc954680539ebec7a5f83, slot: 6411 +2024-09-30T06:49:31.331102Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6411 +2024-09-30T06:49:31.331116Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6411 +2024-09-30T06:49:31.346178Z INFO fork_choice_control::block_processor: Validating block with slot: 6412 +2024-09-30T06:49:31.350048Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4ebd37a4eb46beb7ba9e5c1c245b05be9378f60c9b8b3a89cb3bdc5270f0a7ca, slot: 6412 +2024-09-30T06:49:31.363378Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6412 +2024-09-30T06:49:31.363397Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6412 +2024-09-30T06:49:31.379241Z INFO fork_choice_control::block_processor: Validating block with slot: 6413 +2024-09-30T06:49:31.381415Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x51ea66668877bc28d11c8bede3a89c1f27c8199b63a7dcced3c96ea06d3a483c, slot: 6413 +2024-09-30T06:49:31.390913Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6413 +2024-09-30T06:49:31.390935Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6413 +2024-09-30T06:49:31.407328Z INFO fork_choice_control::block_processor: Validating block with slot: 6414 +2024-09-30T06:49:31.408302Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x842aee3ff2e7c317a3aff806764f488fcbff647b71891e1c8981be800cd3f226, slot: 6414 +2024-09-30T06:49:31.414680Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6414 +2024-09-30T06:49:31.414694Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6414 +2024-09-30T06:49:31.431012Z INFO fork_choice_control::block_processor: Validating block with slot: 6416 +2024-09-30T06:49:31.432790Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x99d9c0268f4de76eabbc8648aa7d1245422936a71d9c76ca0952164d8d0c8df8, slot: 6416 +2024-09-30T06:49:31.443903Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6416 +2024-09-30T06:49:31.443923Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6416 +2024-09-30T06:49:31.460584Z INFO fork_choice_control::block_processor: Validating block with slot: 6417 +2024-09-30T06:49:31.461573Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x677969b578290eecff92005c8e8410c0fa65ddc29f5856ac1900ed9a37ce4192, slot: 6417 +2024-09-30T06:49:31.468519Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6417 +2024-09-30T06:49:31.468597Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6417 +2024-09-30T06:49:31.486262Z INFO fork_choice_control::block_processor: Validating block with slot: 6418 +2024-09-30T06:49:31.487304Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xde7518b3d1254d54c6641101e8ddb3d284a317afd7c372c8aa17a15a6ff17d04, slot: 6418 +2024-09-30T06:49:31.493137Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6418 +2024-09-30T06:49:31.493153Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6418 +2024-09-30T06:49:31.510633Z INFO fork_choice_control::block_processor: Validating block with slot: 6419 +2024-09-30T06:49:31.513496Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf4570c5a8297416b29744d18a376e753b3ca24ed0acccfd21364046073e5a73a, slot: 6419 +2024-09-30T06:49:31.525052Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6419 +2024-09-30T06:49:31.525073Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6419 +2024-09-30T06:49:31.542746Z INFO fork_choice_control::block_processor: Validating block with slot: 6420 +2024-09-30T06:49:31.547256Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf84df0d10b51a976051838cc1f4b5e7ed2dc91fa50e6f6fe4b89c652fe950dbf, slot: 6420 +2024-09-30T06:49:31.562916Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6420 +2024-09-30T06:49:31.562936Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6420 +2024-09-30T06:49:31.581137Z INFO fork_choice_control::block_processor: Validating block with slot: 6421 +2024-09-30T06:49:31.582231Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5734a4277a2457ecd0ff8372a84681c8b1f1bbb598de683552674759cd6a8642, slot: 6421 +2024-09-30T06:49:31.589315Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6421 +2024-09-30T06:49:31.589338Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6421 +2024-09-30T06:49:31.607968Z INFO fork_choice_control::block_processor: Validating block with slot: 6422 +2024-09-30T06:49:31.609063Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdd9e47b797e18623486fc6fe6bbb9231c075e76632c59d51f77c33e8ce22328a, slot: 6422 +2024-09-30T06:49:31.615143Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6422 +2024-09-30T06:49:31.615155Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6422 +2024-09-30T06:49:31.633539Z INFO fork_choice_control::block_processor: Validating block with slot: 6423 +2024-09-30T06:49:31.634813Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfffa64e5d80d666afc6cfce596445425ba64ccb081006bd2c04890eaacd0addc, slot: 6423 +2024-09-30T06:49:31.641226Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6423 +2024-09-30T06:49:31.641240Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6423 +2024-09-30T06:49:31.666570Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 199, root: 0x42fcedfdfa5030cea0e08db6d0f201be0c5eff23f4a45e4efbd0476a55618e0e, head slot: 6423, head root: 0xfffa64e5d80d666afc6cfce596445425ba64ccb081006bd2c04890eaacd0addc) +2024-09-30T06:49:31.666583Z INFO fork_choice_control::block_processor: Validating block with slot: 6424 +2024-09-30T06:49:31.668503Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe99d0418829d2c799d446109d6d7bb51d5378be2186701e0a79676540d5863a6, slot: 6424 +2024-09-30T06:49:31.677621Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6424 +2024-09-30T06:49:31.677640Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6424 +2024-09-30T06:49:31.696911Z INFO fork_choice_control::block_processor: Validating block with slot: 6425 +2024-09-30T06:49:31.697899Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd417ef188a64f10a7341c39f37d2cda52437c5a7180e5e962bc3866e85f40bf5, slot: 6425 +2024-09-30T06:49:31.705628Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6425 +2024-09-30T06:49:31.705692Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6425 +2024-09-30T06:49:31.725750Z INFO fork_choice_control::block_processor: Validating block with slot: 6426 +2024-09-30T06:49:31.727143Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xab088dd324dbf00f4bc97df205a3fe4f39b17553226618c5fd7dfa880bc53cf1, slot: 6426 +2024-09-30T06:49:31.735304Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6426 +2024-09-30T06:49:31.735321Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6426 +2024-09-30T06:49:31.759153Z INFO fork_choice_control::block_processor: Validating block with slot: 6427 +2024-09-30T06:49:31.761396Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc140cb0515f8d25b132f6863c3148ecf080089cea20fd6029b14345e798f6037, slot: 6427 +2024-09-30T06:49:31.771515Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6427 +2024-09-30T06:49:31.771539Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6427 +2024-09-30T06:49:31.792012Z INFO fork_choice_control::block_processor: Validating block with slot: 6428 +2024-09-30T06:49:31.793284Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xabd4d21218b17a16ed4d0ff765dfb9407a2bdaa7eaf1c2e8d66bd8882d2aa19f, slot: 6428 +2024-09-30T06:49:31.799509Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 6368 +2024-09-30T06:49:31.799606Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6428 +2024-09-30T06:49:31.799619Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6428 +2024-09-30T06:49:31.820386Z INFO fork_choice_control::block_processor: Validating block with slot: 6429 +2024-09-30T06:49:31.822533Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4669094592647924d49ab04e7a7bf53ace66b744d84c35850979c5207f98a6c1, slot: 6429 +2024-09-30T06:49:31.829645Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6429 +2024-09-30T06:49:31.829663Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6429 +2024-09-30T06:49:31.849942Z INFO fork_choice_control::block_processor: Validating block with slot: 6430 +2024-09-30T06:49:31.852637Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xda67788d57f2afb99121bc14cd354a69e141b83718a3faa8a9af9b77f2125af6, slot: 6430 +2024-09-30T06:49:31.863191Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6430 +2024-09-30T06:49:31.863205Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6430 +2024-09-30T06:49:31.884239Z INFO fork_choice_control::block_processor: Validating block with slot: 6431 +2024-09-30T06:49:31.886162Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6c3bdd60fec682c04d240fcaf66a830ae6acfba318b3168d39254dc1f70ad279, slot: 6431 +2024-09-30T06:49:31.896331Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6431 +2024-09-30T06:49:31.896346Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6431 +2024-09-30T06:49:31.918207Z INFO fork_choice_control::block_processor: Validating block with slot: 6432 +2024-09-30T06:49:31.919298Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaefe39cac86229491aaaeaca5f959cdd1da9ada9a80e8ca15d9724ae53170c25, slot: 6432 +2024-09-30T06:49:32.024727Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6432 +2024-09-30T06:49:32.024753Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6432 +2024-09-30T06:49:32.037302Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6432) +2024-09-30T06:49:32.037501Z INFO fork_choice_control::block_processor: Validating block with slot: 6433 +2024-09-30T06:49:32.038480Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb96e85f90dccf7e6f7a4ce579b51f70f3a9c9e9c0dfa414bc3a849f9cd4fb394, slot: 6433 +2024-09-30T06:49:32.112534Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6433 +2024-09-30T06:49:32.112556Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6433 +2024-09-30T06:49:32.125226Z INFO fork_choice_control::block_processor: Validating block with slot: 6434 +2024-09-30T06:49:32.127132Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4618f25069ec70151ab2312058c90b58b6441c64a12d6bf9149c4f6d1825fa0c, slot: 6434 +2024-09-30T06:49:32.136156Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6434 +2024-09-30T06:49:32.136175Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6434 +2024-09-30T06:49:32.148802Z INFO fork_choice_control::block_processor: Validating block with slot: 6435 +2024-09-30T06:49:32.150037Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6614258faa816e0710c5d71ba6096e67961ba56417c145069f3ea0abf406b8c3, slot: 6435 +2024-09-30T06:49:32.157554Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6435 +2024-09-30T06:49:32.157573Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6435 +2024-09-30T06:49:32.170707Z INFO fork_choice_control::block_processor: Validating block with slot: 6436 +2024-09-30T06:49:32.171669Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0fcff52831633f92b91bec0cb4b481044cd09b09ad6aca309662ab248a8f4375, slot: 6436 +2024-09-30T06:49:32.177952Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6436 +2024-09-30T06:49:32.177965Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6436 +2024-09-30T06:49:32.191446Z INFO fork_choice_control::block_processor: Validating block with slot: 6437 +2024-09-30T06:49:32.193416Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2593134060940ec64c5cffb2eaff6b02eef0f0ce74a8a407608b748adb1204df, slot: 6437 +2024-09-30T06:49:32.203825Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6437 +2024-09-30T06:49:32.203853Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6437 +2024-09-30T06:49:32.217862Z INFO fork_choice_control::block_processor: Validating block with slot: 6438 +2024-09-30T06:49:32.220258Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf6957a960de441546bc0cefcd7fb19df4f7bc7ec800e64aec51155f28f9f990f, slot: 6438 +2024-09-30T06:49:32.228900Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6438 +2024-09-30T06:49:32.228920Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6438 +2024-09-30T06:49:32.242828Z INFO fork_choice_control::block_processor: Validating block with slot: 6439 +2024-09-30T06:49:32.244222Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x74858846290f4037e408ba448ab45218715850549895e653c7cda3d21d36088d, slot: 6439 +2024-09-30T06:49:32.251361Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6439 +2024-09-30T06:49:32.251380Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6439 +2024-09-30T06:49:32.265464Z INFO fork_choice_control::block_processor: Validating block with slot: 6440 +2024-09-30T06:49:32.268670Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xde4a175e1925b97efccaa86ab09b35a9ad528cbb45789638ae14b82ad7729472, slot: 6440 +2024-09-30T06:49:32.280449Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6440 +2024-09-30T06:49:32.280466Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6440 +2024-09-30T06:49:32.295134Z INFO fork_choice_control::block_processor: Validating block with slot: 6441 +2024-09-30T06:49:32.296493Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc43f8d3b476be93efec560faa98be21854df0cba790adc96b22f24f565093816, slot: 6441 +2024-09-30T06:49:32.303848Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6441 +2024-09-30T06:49:32.303868Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6441 +2024-09-30T06:49:32.319238Z INFO fork_choice_control::block_processor: Validating block with slot: 6442 +2024-09-30T06:49:32.322435Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf86d36a7cc7f822c9e770caf0ea3ce4f044fa077c262c3203763633e6363d7e6, slot: 6442 +2024-09-30T06:49:32.335862Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6442 +2024-09-30T06:49:32.335900Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6442 +2024-09-30T06:49:32.351144Z INFO fork_choice_control::block_processor: Validating block with slot: 6443 +2024-09-30T06:49:32.352309Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc4789f8d4b9d48ea2f655126ac451e5f583821d5677495333a51a5d799117277, slot: 6443 +2024-09-30T06:49:32.358170Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6443 +2024-09-30T06:49:32.358185Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6443 +2024-09-30T06:49:32.374095Z INFO fork_choice_control::block_processor: Validating block with slot: 6444 +2024-09-30T06:49:32.377088Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x61b7dd17138c65ce9b1a0f0c5f19eaf6bf9fdaf6712996b2eb1799e8035d9ecf, slot: 6444 +2024-09-30T06:49:32.388709Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6444 +2024-09-30T06:49:32.388729Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6444 +2024-09-30T06:49:32.404846Z INFO fork_choice_control::block_processor: Validating block with slot: 6445 +2024-09-30T06:49:32.405827Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x367370407d8c08bac41118481e8d3c83df1643d715ee1a499e7f07921fae36dc, slot: 6445 +2024-09-30T06:49:32.412714Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6445 +2024-09-30T06:49:32.412731Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6445 +2024-09-30T06:49:32.429542Z INFO fork_choice_control::block_processor: Validating block with slot: 6446 +2024-09-30T06:49:32.430502Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeed6604cb6ef871c541f1994f46bbbd41d9813e27383a207422ce4292fadd039, slot: 6446 +2024-09-30T06:49:32.436725Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6446 +2024-09-30T06:49:32.436745Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6446 +2024-09-30T06:49:32.453283Z INFO fork_choice_control::block_processor: Validating block with slot: 6447 +2024-09-30T06:49:32.454416Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xed5cc0c269817db6b3c6bad744ec829207ae0177b6473cad5b6e06ddebd6f10c, slot: 6447 +2024-09-30T06:49:32.460224Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6447 +2024-09-30T06:49:32.460235Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6447 +2024-09-30T06:49:32.480849Z INFO fork_choice_control::block_processor: Validating block with slot: 6448 +2024-09-30T06:49:32.482494Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfed5b3bba94a0ec94bad0296f72ff7df2291066291f936ebcc064d2472f2be73, slot: 6448 +2024-09-30T06:49:32.491813Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6448 +2024-09-30T06:49:32.491851Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6448 +2024-09-30T06:49:32.509933Z INFO fork_choice_control::block_processor: Validating block with slot: 6449 +2024-09-30T06:49:32.511557Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0bc66c2c8a51a7fd8dde16e352fb25ae26343e25b0a3fd78f9c3e5913c52e0e4, slot: 6449 +2024-09-30T06:49:32.520723Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6449 +2024-09-30T06:49:32.520748Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6449 +2024-09-30T06:49:32.540152Z INFO fork_choice_control::block_processor: Validating block with slot: 6450 +2024-09-30T06:49:32.541149Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd10a28f85624beb021877c4e5f3bbb7834737299ffeba0b9635e363ead71d5e2, slot: 6450 +2024-09-30T06:49:32.547920Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6450 +2024-09-30T06:49:32.547939Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6450 +2024-09-30T06:49:32.565979Z INFO fork_choice_control::block_processor: Validating block with slot: 6452 +2024-09-30T06:49:32.568993Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x04d3a4c2a252216d71bd8e7cfbe667be9c3beff3c353688870f9f1af318517de, slot: 6452 +2024-09-30T06:49:32.582570Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6452 +2024-09-30T06:49:32.582591Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6452 +2024-09-30T06:49:32.600709Z INFO fork_choice_control::block_processor: Validating block with slot: 6453 +2024-09-30T06:49:32.601708Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x714529a62d99ce60f27114c3c5829b4d529e886f7505b08202efd49566248b6c, slot: 6453 +2024-09-30T06:49:32.608210Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6453 +2024-09-30T06:49:32.608233Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6453 +2024-09-30T06:49:32.627193Z INFO fork_choice_control::block_processor: Validating block with slot: 6454 +2024-09-30T06:49:32.628363Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x650ac9fbfb4e124cc03791021384f49bed7230dfb2c6426419b1efa1e7068465, slot: 6454 +2024-09-30T06:49:32.635288Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6454 +2024-09-30T06:49:32.635384Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6454 +2024-09-30T06:49:32.654921Z INFO fork_choice_control::block_processor: Validating block with slot: 6455 +2024-09-30T06:49:32.656324Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6d1648189139eb6d4a564242cfdccae2fc5916b6795bf4434d870b86f87d2502, slot: 6455 +2024-09-30T06:49:32.663409Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6455 +2024-09-30T06:49:32.663423Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6455 +2024-09-30T06:49:32.688069Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 200, root: 0xa6f6d2d31c737bb018528406aa6e7f2cdbfac136ba0bde0112f10a51966372d2, head slot: 6455, head root: 0x6d1648189139eb6d4a564242cfdccae2fc5916b6795bf4434d870b86f87d2502) +2024-09-30T06:49:32.688083Z INFO fork_choice_control::block_processor: Validating block with slot: 6456 +2024-09-30T06:49:32.689993Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8af2338f565fa75b9e5c684141149d72a0fbc6edcc3e28a5164f674610c41e0f, slot: 6456 +2024-09-30T06:49:32.699071Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6456 +2024-09-30T06:49:32.699091Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6456 +2024-09-30T06:49:32.717996Z INFO fork_choice_control::block_processor: Validating block with slot: 6457 +2024-09-30T06:49:32.719265Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x006c60b3d025314c6d79b91a7ed22e8bf98f73b6cf53fecf7a6fc31b35b317d0, slot: 6457 +2024-09-30T06:49:32.726861Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6457 +2024-09-30T06:49:32.726877Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6457 +2024-09-30T06:49:32.745876Z INFO fork_choice_control::block_processor: Validating block with slot: 6458 +2024-09-30T06:49:32.747299Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x349733aa0a6efad78db533abc57b7a78cb6429fb6e25afd5da78f4a7f3e16a94, slot: 6458 +2024-09-30T06:49:32.755493Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6458 +2024-09-30T06:49:32.755518Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6458 +2024-09-30T06:49:32.774976Z INFO fork_choice_control::block_processor: Validating block with slot: 6459 +2024-09-30T06:49:32.775967Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb09bd19bb51bc14f8c9a128aea33d7b96c77290ad60fa00d75738a51ec94f175, slot: 6459 +2024-09-30T06:49:32.782281Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6459 +2024-09-30T06:49:32.782301Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6459 +2024-09-30T06:49:32.802195Z INFO fork_choice_control::block_processor: Validating block with slot: 6460 +2024-09-30T06:49:32.803335Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xad3c454d922a8862487991e7c97a6dfc0f20a0b150ec44b52dd8203ee98483a8, slot: 6460 +2024-09-30T06:49:32.811606Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6460 +2024-09-30T06:49:32.811668Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6460 +2024-09-30T06:49:32.817160Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 6400 +2024-09-30T06:49:32.831917Z INFO fork_choice_control::block_processor: Validating block with slot: 6461 +2024-09-30T06:49:32.833039Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb5bf5a04cdd85f235c91c15dc3a8d575ca11e455d21e041b470bffcba5ecca20, slot: 6461 +2024-09-30T06:49:32.840312Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6461 +2024-09-30T06:49:32.840330Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6461 +2024-09-30T06:49:32.860229Z INFO fork_choice_control::block_processor: Validating block with slot: 6462 +2024-09-30T06:49:32.861503Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x13317fee9b87ee73af60836c7fdb4e881ae156a3859ad862753c83fbcebc4f86, slot: 6462 +2024-09-30T06:49:32.868770Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6462 +2024-09-30T06:49:32.868793Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6462 +2024-09-30T06:49:32.889020Z INFO fork_choice_control::block_processor: Validating block with slot: 6463 +2024-09-30T06:49:32.890004Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xba359b5fef47a95dd6311ae70619826ed5d121cb1c438c01456f50bb88512c92, slot: 6463 +2024-09-30T06:49:32.896036Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6463 +2024-09-30T06:49:32.896052Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6463 +2024-09-30T06:49:32.916124Z INFO fork_choice_control::block_processor: Validating block with slot: 6464 +2024-09-30T06:49:32.917244Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5e8397a2bdc3a181e45988ee4107413de9866cd24a6c6f2d97a578bc0957f5d1, slot: 6464 +2024-09-30T06:49:33.021492Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6464 +2024-09-30T06:49:33.021516Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6464 +2024-09-30T06:49:33.032250Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6464) +2024-09-30T06:49:33.032382Z INFO fork_choice_control::block_processor: Validating block with slot: 6465 +2024-09-30T06:49:33.034956Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7e962f76c5f54b9cb9c2d02f28c80187dbaf9d95ca3b1e5175bd0a6383f5d888, slot: 6465 +2024-09-30T06:49:33.113289Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6465 +2024-09-30T06:49:33.113312Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6465 +2024-09-30T06:49:33.125609Z INFO fork_choice_control::block_processor: Validating block with slot: 6466 +2024-09-30T06:49:33.127919Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4d24dac4d6994a2f976434f66a6ecb763457c2b0782721c229dd04ffd82f98ed, slot: 6466 +2024-09-30T06:49:33.140112Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6466 +2024-09-30T06:49:33.140131Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6466 +2024-09-30T06:49:33.152968Z INFO fork_choice_control::block_processor: Validating block with slot: 6467 +2024-09-30T06:49:33.154273Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4716cdde8a00da30b052219917cc97c1883bb4f57a168d67ef7d0ea589c100e6, slot: 6467 +2024-09-30T06:49:33.161068Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6467 +2024-09-30T06:49:33.161086Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6467 +2024-09-30T06:49:33.173397Z INFO fork_choice_control::block_processor: Validating block with slot: 6468 +2024-09-30T06:49:33.174357Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd91918f1bab10621582ebab042a0fa731164f96b3fe7822b5176049ab819c5be, slot: 6468 +2024-09-30T06:49:33.181013Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6468 +2024-09-30T06:49:33.181027Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6468 +2024-09-30T06:49:33.193513Z INFO fork_choice_control::block_processor: Validating block with slot: 6469 +2024-09-30T06:49:33.194478Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7ef1e029b101942e6a3382defce7f522e697c54e482da47e1e944844e2d2da4c, slot: 6469 +2024-09-30T06:49:33.201357Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6469 +2024-09-30T06:49:33.201379Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6469 +2024-09-30T06:49:33.213857Z INFO fork_choice_control::block_processor: Validating block with slot: 6470 +2024-09-30T06:49:33.215251Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6d15a7b58c6d8c9fec454ecc0b703f008a2f8060a4745f4a1719f040c869d19b, slot: 6470 +2024-09-30T06:49:33.228268Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6470 +2024-09-30T06:49:33.228318Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6470 +2024-09-30T06:49:33.244130Z INFO fork_choice_control::block_processor: Validating block with slot: 6471 +2024-09-30T06:49:33.245102Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x00987295361b71b9010b676dcda9c024803b1414a95216e850595d39d1e6ab17, slot: 6471 +2024-09-30T06:49:33.255883Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6471 +2024-09-30T06:49:33.255905Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6471 +2024-09-30T06:49:33.274381Z INFO fork_choice_control::block_processor: Validating block with slot: 6472 +2024-09-30T06:49:33.275776Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa17ea4c874992482b164f8efbe95833c7d3466f3c3fa275635c41d97bf418f96, slot: 6472 +2024-09-30T06:49:33.283100Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6472 +2024-09-30T06:49:33.283118Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6472 +2024-09-30T06:49:33.296156Z INFO fork_choice_control::block_processor: Validating block with slot: 6473 +2024-09-30T06:49:33.297141Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeeb6e86f0299cf2e7f8e91048c371d50f2b1f1418c810c1f4206263d0242c6b6, slot: 6473 +2024-09-30T06:49:33.303812Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6473 +2024-09-30T06:49:33.303835Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6473 +2024-09-30T06:49:33.316740Z INFO fork_choice_control::block_processor: Validating block with slot: 6474 +2024-09-30T06:49:33.317754Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xec7716017a9b0e5bb87a024cb8bb315b49b11bc1d123714017ca58934e7a25c3, slot: 6474 +2024-09-30T06:49:33.324415Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6474 +2024-09-30T06:49:33.324438Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6474 +2024-09-30T06:49:33.338094Z INFO fork_choice_control::block_processor: Validating block with slot: 6475 +2024-09-30T06:49:33.340714Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x274fdf9e3dd6a0dd09fec2211a89090072d40358b63d170b5cb91cb059b25bdb, slot: 6475 +2024-09-30T06:49:33.351756Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6475 +2024-09-30T06:49:33.351781Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6475 +2024-09-30T06:49:33.365311Z INFO fork_choice_control::block_processor: Validating block with slot: 6476 +2024-09-30T06:49:33.366573Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x866499eed853fffd63c1ea7a280f9c8cd408977f177709aa789dba875f2f3dc3, slot: 6476 +2024-09-30T06:49:33.373685Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6476 +2024-09-30T06:49:33.373704Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6476 +2024-09-30T06:49:33.387857Z INFO fork_choice_control::block_processor: Validating block with slot: 6477 +2024-09-30T06:49:33.391396Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5719641dfe64362b524de3d8e7775420b8166880b68e06738bec1cc7db3d4cf9, slot: 6477 +2024-09-30T06:49:33.404348Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6477 +2024-09-30T06:49:33.404373Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6477 +2024-09-30T06:49:33.419266Z INFO fork_choice_control::block_processor: Validating block with slot: 6478 +2024-09-30T06:49:33.420388Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x046a4d745b9111697505d28177f4ab518f1de63744134161d30288097871d757, slot: 6478 +2024-09-30T06:49:33.426886Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6478 +2024-09-30T06:49:33.426957Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6478 +2024-09-30T06:49:33.441953Z INFO fork_choice_control::block_processor: Validating block with slot: 6479 +2024-09-30T06:49:33.442932Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2a8fe1af015a86ed01d5d4ff8751959e94cdff890d24e2346ee17db9a07db67d, slot: 6479 +2024-09-30T06:49:33.448547Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6479 +2024-09-30T06:49:33.448563Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6479 +2024-09-30T06:49:33.463718Z INFO fork_choice_control::block_processor: Validating block with slot: 6480 +2024-09-30T06:49:33.465839Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6a6cd521277d7fa44984cb6359a82faa74fd80e99a842232826be5530d56f5bb, slot: 6480 +2024-09-30T06:49:33.474782Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6480 +2024-09-30T06:49:33.474806Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6480 +2024-09-30T06:49:33.490582Z INFO fork_choice_control::block_processor: Validating block with slot: 6481 +2024-09-30T06:49:33.491823Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x49d212eca4eed2aaef5fd4f7bf625a346f0eebfe11941d746a4829329534695e, slot: 6481 +2024-09-30T06:49:33.498538Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6481 +2024-09-30T06:49:33.498554Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6481 +2024-09-30T06:49:33.514643Z INFO fork_choice_control::block_processor: Validating block with slot: 6482 +2024-09-30T06:49:33.516013Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8e2ef420f5d1fcfb468961ec9e6bf181ebdb03ff48b8ad64a6bc4b05d13d13e8, slot: 6482 +2024-09-30T06:49:33.523440Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6482 +2024-09-30T06:49:33.523462Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6482 +2024-09-30T06:49:33.539704Z INFO fork_choice_control::block_processor: Validating block with slot: 6483 +2024-09-30T06:49:33.540942Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd610d38426527a86968a17d68e4e58eb30f1f536833aa82094cfce08614f6ea6, slot: 6483 +2024-09-30T06:49:33.547735Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6483 +2024-09-30T06:49:33.547754Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6483 +2024-09-30T06:49:33.563842Z INFO fork_choice_control::block_processor: Validating block with slot: 6484 +2024-09-30T06:49:33.564814Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x088ce90fd0522963ea6e4347c7827ed7eb411ee42dfe05a2756cd056c760b56a, slot: 6484 +2024-09-30T06:49:33.571304Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6484 +2024-09-30T06:49:33.571324Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6484 +2024-09-30T06:49:33.587758Z INFO fork_choice_control::block_processor: Validating block with slot: 6485 +2024-09-30T06:49:33.590009Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeb332de632b6ee4990aa68e2fb98e578d021be68bb660605e3bcd584c0d02353, slot: 6485 +2024-09-30T06:49:33.599620Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6485 +2024-09-30T06:49:33.599640Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6485 +2024-09-30T06:49:33.616074Z INFO fork_choice_control::block_processor: Validating block with slot: 6486 +2024-09-30T06:49:33.617062Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3a8d08eeee3a773c9d34a48266b8c0cc46b92ca423ec2ee00b599d94c4cf98b0, slot: 6486 +2024-09-30T06:49:33.623763Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6486 +2024-09-30T06:49:33.623783Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6486 +2024-09-30T06:49:33.640772Z INFO fork_choice_control::block_processor: Validating block with slot: 6487 +2024-09-30T06:49:33.641747Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4f5801d594fc007ac9af3661e5f9d2f4e6b10d92aebef1964d36ddc5ec789bc3, slot: 6487 +2024-09-30T06:49:33.647596Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6487 +2024-09-30T06:49:33.647611Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6487 +2024-09-30T06:49:33.670145Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 201, root: 0xaefe39cac86229491aaaeaca5f959cdd1da9ada9a80e8ca15d9724ae53170c25, head slot: 6487, head root: 0x4f5801d594fc007ac9af3661e5f9d2f4e6b10d92aebef1964d36ddc5ec789bc3) +2024-09-30T06:49:33.670156Z INFO fork_choice_control::block_processor: Validating block with slot: 6488 +2024-09-30T06:49:33.671541Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6460f27018121846ac9d3d33c5ff54adfa7ec3ba72ee946c95b777b4acc8788a, slot: 6488 +2024-09-30T06:49:33.678541Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6488 +2024-09-30T06:49:33.678558Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6488 +2024-09-30T06:49:33.696308Z INFO fork_choice_control::block_processor: Validating block with slot: 6489 +2024-09-30T06:49:33.698569Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb172a7322a8ec4a6c1bde5b406f9b5c53e1142357ee168f29e05ac5b9ffa3675, slot: 6489 +2024-09-30T06:49:33.708282Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6489 +2024-09-30T06:49:33.708303Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6489 +2024-09-30T06:49:33.726369Z INFO fork_choice_control::block_processor: Validating block with slot: 6490 +2024-09-30T06:49:33.727630Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe097451e926937cabd4eb56e3ef9cfb1b3d6ae71d821ecd5b9c531453a416f3d, slot: 6490 +2024-09-30T06:49:33.736687Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6490 +2024-09-30T06:49:33.736710Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6490 +2024-09-30T06:49:33.755127Z INFO fork_choice_control::block_processor: Validating block with slot: 6491 +2024-09-30T06:49:33.756243Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3ecbc9e415ae1b59c0f42424a5d7ed039b29fea281d82ec9c8e328cf21aac574, slot: 6491 +2024-09-30T06:49:33.764062Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6491 +2024-09-30T06:49:33.764077Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6491 +2024-09-30T06:49:33.782352Z INFO fork_choice_control::block_processor: Validating block with slot: 6492 +2024-09-30T06:49:33.783720Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4999fd4c315c1bbf834965f22817dea470d21c1c60747437209a505e260bd66a, slot: 6492 +2024-09-30T06:49:33.791539Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6492 +2024-09-30T06:49:33.791560Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6492 +2024-09-30T06:49:33.809705Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 6432 +2024-09-30T06:49:33.810614Z INFO fork_choice_control::block_processor: Validating block with slot: 6493 +2024-09-30T06:49:33.811729Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x24d65bca9544f599e156a1836dcada0de64027eb8ed0c5ee357037579a7daae6, slot: 6493 +2024-09-30T06:49:33.819670Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6493 +2024-09-30T06:49:33.819695Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6493 +2024-09-30T06:49:33.838671Z INFO fork_choice_control::block_processor: Validating block with slot: 6494 +2024-09-30T06:49:33.839944Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc2e77e49c9277fb879e983dd89a6ee51da6c42dacd0d391bb323ee36f2f70967, slot: 6494 +2024-09-30T06:49:33.846745Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6494 +2024-09-30T06:49:33.846769Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6494 +2024-09-30T06:49:33.865419Z INFO fork_choice_control::block_processor: Validating block with slot: 6495 +2024-09-30T06:49:33.866410Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9115d09846003a295d8d9cd6432f7927c4dccc69d60cdda99df13026cda38eba, slot: 6495 +2024-09-30T06:49:33.873031Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6495 +2024-09-30T06:49:33.873053Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6495 +2024-09-30T06:49:33.892027Z INFO fork_choice_control::block_processor: Validating block with slot: 6496 +2024-09-30T06:49:33.893023Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8dffbedc8547f6b189472459b3e46059f1d1e74f5c35f0e79034cfedfcb42354, slot: 6496 +2024-09-30T06:49:33.997065Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6496 +2024-09-30T06:49:33.997088Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6496 +2024-09-30T06:49:34.008250Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T06:49:34.008424Z INFO fork_choice_control::block_processor: Validating block with slot: 6497 +2024-09-30T06:49:34.011910Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x18a782d4b464d98cc873dd0b3f12ae7d51a67926462af8083e31a6d8fa6981a6, slot: 6497 +2024-09-30T06:49:34.093247Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6497 +2024-09-30T06:49:34.093274Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6497 +2024-09-30T06:49:34.104772Z INFO fork_choice_control::block_processor: Validating block with slot: 6499 +2024-09-30T06:49:34.107112Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x600e6ecf0770977287941b404ae23536a4a3ebfb8480fc7556c744533895e5f4, slot: 6499 +2024-09-30T06:49:34.119001Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6499 +2024-09-30T06:49:34.119053Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6499 +2024-09-30T06:49:34.130967Z INFO fork_choice_control::block_processor: Validating block with slot: 6500 +2024-09-30T06:49:34.132058Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc7824fd7a451a95ed28a19084a445f2bc264d2f2da79cfd398e293f9c1870609, slot: 6500 +2024-09-30T06:49:34.139752Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6500 +2024-09-30T06:49:34.139770Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6500 +2024-09-30T06:49:34.151942Z INFO fork_choice_control::block_processor: Validating block with slot: 6501 +2024-09-30T06:49:34.154689Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x79ddbc6e14da1cda20bcbaf99e0f666627280f62e6ed4d2ed02797a9919ca0dd, slot: 6501 +2024-09-30T06:49:34.164888Z INFO fork_choice_control::block_processor: Validating block with slot: 6688 +2024-09-30T06:49:34.166594Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6501 +2024-09-30T06:49:34.166605Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6501 +2024-09-30T06:49:34.175547Z INFO fork_choice_control::block_processor: Validating block with slot: 6689 +2024-09-30T06:49:34.182145Z INFO fork_choice_control::block_processor: Validating block with slot: 6502 +2024-09-30T06:49:34.183505Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x202410905b4d9649bb066c19c593e17bb071ebeba3b986d458ef275b255c1cac, slot: 6502 +2024-09-30T06:49:34.187917Z INFO fork_choice_control::block_processor: Validating block with slot: 6690 +2024-09-30T06:49:34.191131Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6502 +2024-09-30T06:49:34.191143Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6502 +2024-09-30T06:49:34.203983Z INFO fork_choice_control::block_processor: Validating block with slot: 6503 +2024-09-30T06:49:34.205084Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x472ef41416dcc518c4b0f5792b24a47251a11c5869331df0ad44c9f50308a7f8, slot: 6503 +2024-09-30T06:49:34.210943Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6503 +2024-09-30T06:49:34.210956Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6503 +2024-09-30T06:49:34.218258Z INFO fork_choice_control::block_processor: Validating block with slot: 6691 +2024-09-30T06:49:34.224290Z INFO fork_choice_control::block_processor: Validating block with slot: 6504 +2024-09-30T06:49:34.225259Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4b7126e20efc4cb34f58188e7540f07a94ca53c8c6a6ec27ff6ae93e2b8c5f32, slot: 6504 +2024-09-30T06:49:34.226675Z INFO fork_choice_control::block_processor: Validating block with slot: 6692 +2024-09-30T06:49:34.231506Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6504 +2024-09-30T06:49:34.231517Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6504 +2024-09-30T06:49:34.236952Z INFO fork_choice_control::block_processor: Validating block with slot: 6693 +2024-09-30T06:49:34.244772Z INFO fork_choice_control::block_processor: Validating block with slot: 6505 +2024-09-30T06:49:34.245851Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd9d38dbda62448688c1cf6c654098888df606f0f70668dff93ede3ed68268959, slot: 6505 +2024-09-30T06:49:34.251893Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6505 +2024-09-30T06:49:34.251914Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6505 +2024-09-30T06:49:34.257328Z INFO fork_choice_control::block_processor: Validating block with slot: 6694 +2024-09-30T06:49:34.265224Z INFO fork_choice_control::block_processor: Validating block with slot: 6506 +2024-09-30T06:49:34.266487Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x99786fa32381617c3d0c5874032a9806005f2aadaa5f00da0c6ed65a77d95879, slot: 6506 +2024-09-30T06:49:34.267875Z INFO fork_choice_control::block_processor: Validating block with slot: 6695 +2024-09-30T06:49:34.273346Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6506 +2024-09-30T06:49:34.273367Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6506 +2024-09-30T06:49:34.286693Z INFO fork_choice_control::block_processor: Validating block with slot: 6507 +2024-09-30T06:49:34.287936Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x355734d18be463eb6bd1c9e24b0b7e5fbc7f7cba042342928d13fc265db0884a, slot: 6507 +2024-09-30T06:49:34.294238Z INFO fork_choice_control::block_processor: Validating block with slot: 6696 +2024-09-30T06:49:34.295374Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6507 +2024-09-30T06:49:34.295386Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6507 +2024-09-30T06:49:34.303700Z INFO fork_choice_control::block_processor: Validating block with slot: 6697 +2024-09-30T06:49:34.309330Z INFO fork_choice_control::block_processor: Validating block with slot: 6508 +2024-09-30T06:49:34.313131Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8d9ed3d03e42481308963282195c1c5854ac8f53f4af7992fca6269812d8582a, slot: 6508 +2024-09-30T06:49:34.327380Z INFO fork_choice_control::block_processor: Validating block with slot: 6698 +2024-09-30T06:49:34.329410Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6508 +2024-09-30T06:49:34.329423Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6508 +2024-09-30T06:49:34.339879Z INFO fork_choice_control::block_processor: Validating block with slot: 6699 +2024-09-30T06:49:34.344179Z INFO fork_choice_control::block_processor: Validating block with slot: 6509 +2024-09-30T06:49:34.345848Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x381f73a24c9c21d8dab59dea3638afe7e0980de38f7bb19f0db55053825f16ef, slot: 6509 +2024-09-30T06:49:34.354517Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6509 +2024-09-30T06:49:34.354537Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6509 +2024-09-30T06:49:34.363989Z INFO fork_choice_control::block_processor: Validating block with slot: 6700 +2024-09-30T06:49:34.369629Z INFO fork_choice_control::block_processor: Validating block with slot: 6510 +2024-09-30T06:49:34.370735Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaa68e76e96ce38185455434cf5740a3bcfb1baf3d766b2033a8d00ed6cad5523, slot: 6510 +2024-09-30T06:49:34.376913Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6510 +2024-09-30T06:49:34.376929Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6510 +2024-09-30T06:49:34.379000Z INFO fork_choice_control::block_processor: Validating block with slot: 6701 +2024-09-30T06:49:34.391705Z INFO fork_choice_control::block_processor: Validating block with slot: 6511 +2024-09-30T06:49:34.392029Z INFO fork_choice_control::block_processor: Validating block with slot: 6702 +2024-09-30T06:49:34.392949Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x76ebd8138199770b0065d021b71d0673ac31adfebb752efcfface7a37a27e309, slot: 6511 +2024-09-30T06:49:34.399120Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6511 +2024-09-30T06:49:34.399132Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6511 +2024-09-30T06:49:34.414517Z INFO fork_choice_control::block_processor: Validating block with slot: 6512 +2024-09-30T06:49:34.415533Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3d58bb3b693cbc3c45b914c235502ec6407aa3907bdb4694ad27add8e442490b, slot: 6512 +2024-09-30T06:49:34.415651Z INFO fork_choice_control::block_processor: Validating block with slot: 6703 +2024-09-30T06:49:34.422595Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6512 +2024-09-30T06:49:34.422619Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6512 +2024-09-30T06:49:34.423417Z INFO fork_choice_control::block_processor: Validating block with slot: 6704 +2024-09-30T06:49:34.435434Z INFO fork_choice_control::block_processor: Validating block with slot: 6705 +2024-09-30T06:49:34.438626Z INFO fork_choice_control::block_processor: Validating block with slot: 6513 +2024-09-30T06:49:34.439417Z INFO fork_choice_control::block_processor: Validating block with slot: 6706 +2024-09-30T06:49:34.440007Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xefb3481c684c39894c94c43bf72ac36f839a069cc53a150ec9935391bd779238, slot: 6513 +2024-09-30T06:49:34.446561Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6513 +2024-09-30T06:49:34.446576Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6513 +2024-09-30T06:49:34.448010Z INFO fork_choice_control::block_processor: Validating block with slot: 6707 +2024-09-30T06:49:34.461888Z INFO fork_choice_control::block_processor: Validating block with slot: 6514 +2024-09-30T06:49:34.463722Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd62be35cf3b8b11cc7ffd021baa33efc6b9b9230975d954bf870c87eae03f978, slot: 6514 +2024-09-30T06:49:34.472651Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6514 +2024-09-30T06:49:34.472669Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6514 +2024-09-30T06:49:34.489049Z INFO fork_choice_control::block_processor: Validating block with slot: 6515 +2024-09-30T06:49:34.490955Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb5c18d27c0cde4f8da625e35b2b11515fc0dc15534170a0594cef1627a14fa95, slot: 6515 +2024-09-30T06:49:34.494703Z INFO fork_choice_control::block_processor: Validating block with slot: 6708 +2024-09-30T06:49:34.494715Z INFO fork_choice_control::block_processor: Validating block with slot: 6709 +2024-09-30T06:49:34.498372Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6515 +2024-09-30T06:49:34.498386Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6515 +2024-09-30T06:49:34.502911Z INFO fork_choice_control::block_processor: Validating block with slot: 6710 +2024-09-30T06:49:34.514423Z INFO fork_choice_control::block_processor: Validating block with slot: 6516 +2024-09-30T06:49:34.515398Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf7e988d3fc6fe4d4ea1ca2acf23e6a410e3c30d3d046ffa11359fdc6c478ce8b, slot: 6516 +2024-09-30T06:49:34.521832Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6516 +2024-09-30T06:49:34.521853Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6516 +2024-09-30T06:49:34.526120Z INFO fork_choice_control::block_processor: Validating block with slot: 6711 +2024-09-30T06:49:34.538256Z INFO fork_choice_control::block_processor: Validating block with slot: 6517 +2024-09-30T06:49:34.539522Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8c9fee965865731113f59ac833e6b83aed3d43a51e68fbd2bba3991574e640be, slot: 6517 +2024-09-30T06:49:34.546421Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6517 +2024-09-30T06:49:34.546438Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6517 +2024-09-30T06:49:34.555619Z INFO fork_choice_control::block_processor: Validating block with slot: 6712 +2024-09-30T06:49:34.562878Z INFO fork_choice_control::block_processor: Validating block with slot: 6518 +2024-09-30T06:49:34.563971Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa4c3db28e226cb990e7e38d58c82c9a936c6818850230e1b8f94f9074d35db01, slot: 6518 +2024-09-30T06:49:34.572245Z INFO fork_choice_control::block_processor: Validating block with slot: 6713 +2024-09-30T06:49:34.572926Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6518 +2024-09-30T06:49:34.572940Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6518 +2024-09-30T06:49:34.578279Z INFO fork_choice_control::block_processor: Validating block with slot: 6715 +2024-09-30T06:49:34.589616Z INFO fork_choice_control::block_processor: Validating block with slot: 6519 +2024-09-30T06:49:34.592300Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5fe106104fa990e93e38578bca6a488ed12ebe87d5bb8aae9e23c2c8fc509964, slot: 6519 +2024-09-30T06:49:34.603126Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6519 +2024-09-30T06:49:34.603149Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6519 +2024-09-30T06:49:34.609146Z INFO fork_choice_control::block_processor: Validating block with slot: 6716 +2024-09-30T06:49:34.617796Z INFO fork_choice_control::block_processor: Validating block with slot: 6717 +2024-09-30T06:49:34.625677Z INFO fork_choice_control::block_processor: Validating block with slot: 6520 +2024-09-30T06:49:34.625709Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 202, root: 0x5e8397a2bdc3a181e45988ee4107413de9866cd24a6c6f2d97a578bc0957f5d1, head slot: 6519, head root: 0x5fe106104fa990e93e38578bca6a488ed12ebe87d5bb8aae9e23c2c8fc509964) +2024-09-30T06:49:34.627367Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x09b2bcae86ade36198b6862fc79c5bd71f89af173cfb4ce751c055a44d660014, slot: 6520 +2024-09-30T06:49:34.635711Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6520 +2024-09-30T06:49:34.635737Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6520 +2024-09-30T06:49:34.641562Z INFO fork_choice_control::block_processor: Validating block with slot: 6718 +2024-09-30T06:49:34.643858Z INFO fork_choice_control::block_processor: Validating block with slot: 6719 +2024-09-30T06:49:34.653237Z INFO fork_choice_control::block_processor: Validating block with slot: 6521 +2024-09-30T06:49:34.654222Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1e44711d90dbed3084a0cb2873692a8a024a2599a5a95c612dcac221522d757a, slot: 6521 +2024-09-30T06:49:34.660017Z INFO fork_choice_control::block_processor: Validating block with slot: 6720 +2024-09-30T06:49:34.660554Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6521 +2024-09-30T06:49:34.660567Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6521 +2024-09-30T06:49:34.681530Z INFO fork_choice_control::block_processor: Validating block with slot: 6522 +2024-09-30T06:49:34.682792Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x07203abd4ad4e3ab64b8b221595672729ec1f659276ba3830dae76aa4cd36b45, slot: 6522 +2024-09-30T06:49:34.703759Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6522 +2024-09-30T06:49:34.703807Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6522 +2024-09-30T06:49:34.722769Z INFO fork_choice_control::block_processor: Validating block with slot: 6523 +2024-09-30T06:49:34.726146Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x014e91adc721610700db673f76ae19ef8f36f51abbde7f8d716ae94f50fb06c7, slot: 6523 +2024-09-30T06:49:34.739796Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6523 +2024-09-30T06:49:34.739818Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6523 +2024-09-30T06:49:34.758767Z INFO fork_choice_control::block_processor: Validating block with slot: 6524 +2024-09-30T06:49:34.761232Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2c608a453ca9010a367cb2967fc75ec41b5617997f8c11810cc93cdfef9a89c1, slot: 6524 +2024-09-30T06:49:34.762357Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 6464 +2024-09-30T06:49:34.771980Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6524 +2024-09-30T06:49:34.772000Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6524 +2024-09-30T06:49:34.791490Z INFO fork_choice_control::block_processor: Validating block with slot: 6525 +2024-09-30T06:49:34.793037Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5eaa4f7bfcc1e95547b55490aaaf5d768902f8afcb51e2f644835fa96e36f9d4, slot: 6525 +2024-09-30T06:49:34.799635Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6525 +2024-09-30T06:49:34.799652Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6525 +2024-09-30T06:49:34.818486Z INFO fork_choice_control::block_processor: Validating block with slot: 6526 +2024-09-30T06:49:34.819798Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4a2873f10fafb5ccd8d2324f9fea824d37a32627f5f924a469e209676e66939b, slot: 6526 +2024-09-30T06:49:34.827429Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6526 +2024-09-30T06:49:34.827445Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6526 +2024-09-30T06:49:34.846374Z INFO fork_choice_control::block_processor: Validating block with slot: 6529 +2024-09-30T06:49:34.848753Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbe745cf628c1e9c35684dc85afab706e15e5f0b77832028d009692037d11d138, slot: 6529 +2024-09-30T06:49:35.025780Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6529 +2024-09-30T06:49:35.025800Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6529 +2024-09-30T06:49:35.037901Z INFO fork_choice_control::block_processor: Validating block with slot: 6530 +2024-09-30T06:49:35.040499Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x38311a98d183ce9138ec72ea47df0478f489bdcee3a43a186591a8d6c4370069, slot: 6530 +2024-09-30T06:49:35.052378Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6530 +2024-09-30T06:49:35.052402Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6530 +2024-09-30T06:49:35.064664Z INFO fork_choice_control::block_processor: Validating block with slot: 6531 +2024-09-30T06:49:35.066001Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1cd5def9aea9d21a9d36fd4eb748b4ededbf09ffdac67f27e1cc9e2a93bee2fc, slot: 6531 +2024-09-30T06:49:35.074836Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6531 +2024-09-30T06:49:35.074857Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6531 +2024-09-30T06:49:35.087582Z INFO fork_choice_control::block_processor: Validating block with slot: 6532 +2024-09-30T06:49:35.088755Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2e4343d01f809eac5512ae0274efa2dabf8af6feeb92ebc0c971420202de1046, slot: 6532 +2024-09-30T06:49:35.095794Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6532 +2024-09-30T06:49:35.095810Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6532 +2024-09-30T06:49:35.108611Z INFO fork_choice_control::block_processor: Validating block with slot: 6533 +2024-09-30T06:49:35.109560Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x61b73c9eddb9ec2fcfca0477119c1ed193b6b896e376573d42335311f95108b4, slot: 6533 +2024-09-30T06:49:35.116005Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6533 +2024-09-30T06:49:35.116020Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6533 +2024-09-30T06:49:35.128962Z INFO fork_choice_control::block_processor: Validating block with slot: 6534 +2024-09-30T06:49:35.130589Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd7cdf5af7e913587bb6286c6f35bcb7e53edc9947663cc690851faa8649eadfa, slot: 6534 +2024-09-30T06:49:35.138356Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6534 +2024-09-30T06:49:35.138375Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6534 +2024-09-30T06:49:35.151701Z INFO fork_choice_control::block_processor: Validating block with slot: 6535 +2024-09-30T06:49:35.154013Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x57363ff50df11d1d9c759bad7ce64284b844bf07ce24aae7dedb11912fb9ed8b, slot: 6535 +2024-09-30T06:49:35.162714Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6535 +2024-09-30T06:49:35.162728Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6535 +2024-09-30T06:49:35.176304Z INFO fork_choice_control::block_processor: Validating block with slot: 6536 +2024-09-30T06:49:35.177673Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe8ec1ef36e140db24080c88857104df58615315a0430c842bb6490a89b62ad06, slot: 6536 +2024-09-30T06:49:35.184341Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6536 +2024-09-30T06:49:35.184355Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6536 +2024-09-30T06:49:35.198043Z INFO fork_choice_control::block_processor: Validating block with slot: 6537 +2024-09-30T06:49:35.199139Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x75d9fe69e31935396b40fab73cb6c74d5629ca7fd7ef50f84cafc0fa5584ad88, slot: 6537 +2024-09-30T06:49:35.205662Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6537 +2024-09-30T06:49:35.205685Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6537 +2024-09-30T06:49:35.219360Z INFO fork_choice_control::block_processor: Validating block with slot: 6538 +2024-09-30T06:49:35.220336Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6e2df881099d89bc540d8d890bdab970a74081fecbb6453f8495e1726c133cf8, slot: 6538 +2024-09-30T06:49:35.226422Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6538 +2024-09-30T06:49:35.226449Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6538 +2024-09-30T06:49:35.240392Z INFO fork_choice_control::block_processor: Validating block with slot: 6539 +2024-09-30T06:49:35.241365Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbab99878f423d0002140f60972bfbb6213c3e77ea9e63cf50dc79a395999a3b7, slot: 6539 +2024-09-30T06:49:35.247529Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6539 +2024-09-30T06:49:35.247543Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6539 +2024-09-30T06:49:35.261633Z INFO fork_choice_control::block_processor: Validating block with slot: 6540 +2024-09-30T06:49:35.263288Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfaa475a1ae8906c38a079a82926158b6584c1c15cde6c8b1d0909dc2dbd01569, slot: 6540 +2024-09-30T06:49:35.271445Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6540 +2024-09-30T06:49:35.271462Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6540 +2024-09-30T06:49:35.285792Z INFO fork_choice_control::block_processor: Validating block with slot: 6541 +2024-09-30T06:49:35.287600Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x34e0bcb68035179017b342cde2ccfc0061b144a05ddb30ff4e76aee516472623, slot: 6541 +2024-09-30T06:49:35.295226Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6541 +2024-09-30T06:49:35.295238Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6541 +2024-09-30T06:49:35.310064Z INFO fork_choice_control::block_processor: Validating block with slot: 6542 +2024-09-30T06:49:35.311580Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x70feeccf4da49c039ac1c6ae169bdd6bc72175e5a835126a7090234da2907661, slot: 6542 +2024-09-30T06:49:35.319041Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6542 +2024-09-30T06:49:35.319066Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6542 +2024-09-30T06:49:35.333761Z INFO fork_choice_control::block_processor: Validating block with slot: 6543 +2024-09-30T06:49:35.335192Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xef33bc74c6e78209e8de11a6caf65c373d599f3fa038a824ce3bd161d3a57aad, slot: 6543 +2024-09-30T06:49:35.341993Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6543 +2024-09-30T06:49:35.342007Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6543 +2024-09-30T06:49:35.357146Z INFO fork_choice_control::block_processor: Validating block with slot: 6544 +2024-09-30T06:49:35.358132Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x19fd7d9dc8500a05537eebc1b795dfb096a8ca79f74b978e64919f8cb8030cbb, slot: 6544 +2024-09-30T06:49:35.363832Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6544 +2024-09-30T06:49:35.363844Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6544 +2024-09-30T06:49:35.379064Z INFO fork_choice_control::block_processor: Validating block with slot: 6545 +2024-09-30T06:49:35.380027Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa69a37f303e0f3c0aeafd900ecf30d2a6fc15723210618d83af3085fa02a315d, slot: 6545 +2024-09-30T06:49:35.385665Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6545 +2024-09-30T06:49:35.385689Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6545 +2024-09-30T06:49:35.400825Z INFO fork_choice_control::block_processor: Validating block with slot: 6546 +2024-09-30T06:49:35.401819Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3be447134eb369a50c9f0a817ade6d7b25b875e3781c26d43dbc70351babe539, slot: 6546 +2024-09-30T06:49:35.407796Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6546 +2024-09-30T06:49:35.407811Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6546 +2024-09-30T06:49:35.423472Z INFO fork_choice_control::block_processor: Validating block with slot: 6547 +2024-09-30T06:49:35.424731Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xed66d86cfb9fe29804e4cd15c3bc770afd0a083738f13baf5b8652b2550947ac, slot: 6547 +2024-09-30T06:49:35.431288Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6547 +2024-09-30T06:49:35.431302Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6547 +2024-09-30T06:49:35.447150Z INFO fork_choice_control::block_processor: Validating block with slot: 6548 +2024-09-30T06:49:35.448139Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x23190d75b59a0b87ac320c6a97dc8ca09f63d08feeb4134df3e2ecd04e3937ea, slot: 6548 +2024-09-30T06:49:35.454852Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6548 +2024-09-30T06:49:35.454873Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6548 +2024-09-30T06:49:35.470865Z INFO fork_choice_control::block_processor: Validating block with slot: 6549 +2024-09-30T06:49:35.472108Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbbbfe8a566edcb37f493041ba6567861983999e75a1a0f2a3168938ef6414542, slot: 6549 +2024-09-30T06:49:35.478295Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6549 +2024-09-30T06:49:35.478313Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6549 +2024-09-30T06:49:35.494593Z INFO fork_choice_control::block_processor: Validating block with slot: 6550 +2024-09-30T06:49:35.495858Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbf104d2e59748abf4300c6d903c48e935450e2a9d0552264cc20b5b6940e71f8, slot: 6550 +2024-09-30T06:49:35.503554Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6550 +2024-09-30T06:49:35.503581Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6550 +2024-09-30T06:49:35.520103Z INFO fork_choice_control::block_processor: Validating block with slot: 6552 +2024-09-30T06:49:35.522191Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x278cc6c02c23449862e916e78e2a10976b6e4805e8d43844fe220bbede19888d, slot: 6552 +2024-09-30T06:49:35.533681Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6552 +2024-09-30T06:49:35.533705Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6552 +2024-09-30T06:49:35.606535Z INFO fork_choice_control::block_processor: Validating block with slot: 6553 +2024-09-30T06:49:35.606653Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 203, root: 0x8dffbedc8547f6b189472459b3e46059f1d1e74f5c35f0e79034cfedfcb42354, head slot: 6552, head root: 0x278cc6c02c23449862e916e78e2a10976b6e4805e8d43844fe220bbede19888d) +2024-09-30T06:49:35.608665Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1c80383b38004f36d876e20b90e72166e89e1e56ebe006c038bfc904b168a5a3, slot: 6553 +2024-09-30T06:49:35.617549Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6553 +2024-09-30T06:49:35.617572Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6553 +2024-09-30T06:49:35.635228Z INFO fork_choice_control::block_processor: Validating block with slot: 6554 +2024-09-30T06:49:35.636646Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xde5812344a0f5366b21c05f958c6d99b0cecf6cc5acf30d562cf3b9c87df5bc3, slot: 6554 +2024-09-30T06:49:35.644184Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6554 +2024-09-30T06:49:35.644196Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6554 +2024-09-30T06:49:35.661549Z INFO fork_choice_control::block_processor: Validating block with slot: 6555 +2024-09-30T06:49:35.662957Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x421b4dc520c371a7fcfec60b77a39a40f5f600064ccdae7497b8c3b1f0669154, slot: 6555 +2024-09-30T06:49:35.670937Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6555 +2024-09-30T06:49:35.670958Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6555 +2024-09-30T06:49:35.688654Z INFO fork_choice_control::block_processor: Validating block with slot: 6556 +2024-09-30T06:49:35.690051Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8b82c4e91ffdb03a88f0ff278252254fccada933855d6e959d229a3e0cd93218, slot: 6556 +2024-09-30T06:49:35.698025Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6556 +2024-09-30T06:49:35.698041Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6556 +2024-09-30T06:49:35.716288Z INFO fork_choice_control::block_processor: Validating block with slot: 6557 +2024-09-30T06:49:35.717404Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfda51aab6bc5ce4eefeb2827b643ae8dc65cb1ce0b78bd90e9fdaca8543a081d, slot: 6557 +2024-09-30T06:49:35.725648Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6557 +2024-09-30T06:49:35.725665Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6557 +2024-09-30T06:49:35.736184Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 6496 +2024-09-30T06:49:35.744093Z INFO fork_choice_control::block_processor: Validating block with slot: 6558 +2024-09-30T06:49:35.747016Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6217cb42cde0d3669147a3d893971c8add095c6557965755a6d50dea96333f4c, slot: 6558 +2024-09-30T06:49:35.756178Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6558 +2024-09-30T06:49:35.756198Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6558 +2024-09-30T06:49:35.774646Z INFO fork_choice_control::block_processor: Validating block with slot: 6559 +2024-09-30T06:49:35.775638Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb9ba2a43f1a4dc3c214ca20002aeebc17738fa7171dad792fecabe7b2e86945c, slot: 6559 +2024-09-30T06:49:35.781701Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6559 +2024-09-30T06:49:35.781720Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6559 +2024-09-30T06:49:35.800151Z INFO fork_choice_control::block_processor: Validating block with slot: 6560 +2024-09-30T06:49:35.801989Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x04d0411d90dfdb5cecb7d4853cab69dff1dd0b2a80a360d541a974e710fda32e, slot: 6560 +2024-09-30T06:49:35.814359Z INFO runtime::runtime: saving current chain before exit… +2024-09-30T06:49:35.908565Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6560 +2024-09-30T06:49:35.908592Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6560 +2024-09-30T06:49:35.970051Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 6496 +2024-09-30T06:49:36.136152Z INFO fork_choice_control::mutator: chain saved (finalized blocks: 1, unfinalized blocks: 59) +2024-09-30T08:10:46.581219Z INFO logging: Tracing initialized successfully. +2024-09-30T08:10:46.583598Z INFO grandine: Grandine firing up... +2024-09-30T08:10:46.689570Z INFO grandine: starting beacon node +2024-09-30T08:10:46.690618Z INFO grandine::grandine_config: network: mainnet +2024-09-30T08:10:46.690637Z INFO grandine::grandine_config: data directory: "/Users/mercynaps/.grandine/mainnet" +2024-09-30T08:10:46.690650Z INFO grandine::grandine_config: Eth2 database upper limit: 256.0 GiB +2024-09-30T08:10:46.690782Z INFO grandine::grandine_config: Eth1 database upper limit: 16.0 GiB +2024-09-30T08:10:46.691822Z INFO grandine::grandine_config: Eth1 RPC URLs: [] +2024-09-30T08:10:46.693330Z INFO grandine::grandine_config: graffiti: [0x4772616e64696e652f302e342e312d3138613435663700000000000000000000] +2024-09-30T08:10:46.693363Z INFO grandine::grandine_config: HTTP API address: 127.0.0.1:5052 +2024-09-30T08:10:46.693371Z INFO grandine::grandine_config: validator API disabled +2024-09-30T08:10:46.693379Z INFO grandine::grandine_config: archival interval: 32 epochs +2024-09-30T08:10:46.693550Z INFO grandine::grandine_config: slasher enabled: false +2024-09-30T08:10:46.693810Z INFO grandine::grandine_config: client version: Grandine/0.4.1-18a45f7/aarch64-macos +2024-09-30T08:10:46.693970Z INFO grandine::grandine_config: suggested fee recipient: 0xe7cf…1f1b +2024-09-30T08:10:46.693982Z INFO grandine::grandine_config: back sync enabled: false +2024-09-30T08:10:46.747652Z INFO database: database: /Users/mercynaps/.grandine/mainnet/beacon/eth1_cache with name eth1 +2024-09-30T08:10:48.356119Z INFO database: database: /Users/mercynaps/.grandine/mainnet/beacon/beacon_fork_choice with name beacon_fork_choice +2024-09-30T08:10:48.497088Z INFO fork_choice_control::storage: loaded state at slot 6496 +2024-09-30T08:10:50.659193Z INFO fork_choice_store::state_cache_processor: Creating new StateCacheProcessor with lock timeout of 1.5s +2024-09-30T08:10:50.791912Z INFO fork_choice_control::block_processor: Validating block with slot: 6497 +2024-09-30T08:10:50.795992Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x18a782d4b464d98cc873dd0b3f12ae7d51a67926462af8083e31a6d8fa6981a6, slot: 6497 +2024-09-30T08:10:50.951182Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6497 +2024-09-30T08:10:50.951209Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6497 +2024-09-30T08:10:50.964098Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:10:50.965867Z INFO fork_choice_control::block_processor: Validating block with slot: 6499 +2024-09-30T08:10:50.968443Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x600e6ecf0770977287941b404ae23536a4a3ebfb8480fc7556c744533895e5f4, slot: 6499 +2024-09-30T08:10:50.977778Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6499 +2024-09-30T08:10:50.977800Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6499 +2024-09-30T08:10:50.989922Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:10:50.990156Z INFO fork_choice_control::block_processor: Validating block with slot: 6500 +2024-09-30T08:10:50.991262Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc7824fd7a451a95ed28a19084a445f2bc264d2f2da79cfd398e293f9c1870609, slot: 6500 +2024-09-30T08:10:50.994057Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6500 +2024-09-30T08:10:50.994073Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6500 +2024-09-30T08:10:51.006746Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:10:51.007005Z INFO fork_choice_control::block_processor: Validating block with slot: 6501 +2024-09-30T08:10:51.009681Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x79ddbc6e14da1cda20bcbaf99e0f666627280f62e6ed4d2ed02797a9919ca0dd, slot: 6501 +2024-09-30T08:10:51.017443Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6501 +2024-09-30T08:10:51.017469Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6501 +2024-09-30T08:10:51.031059Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:10:51.031337Z INFO fork_choice_control::block_processor: Validating block with slot: 6502 +2024-09-30T08:10:51.032699Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x202410905b4d9649bb066c19c593e17bb071ebeba3b986d458ef275b255c1cac, slot: 6502 +2024-09-30T08:10:51.035918Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6502 +2024-09-30T08:10:51.035931Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6502 +2024-09-30T08:10:51.048180Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:10:51.048394Z INFO fork_choice_control::block_processor: Validating block with slot: 6503 +2024-09-30T08:10:51.049516Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x472ef41416dcc518c4b0f5792b24a47251a11c5869331df0ad44c9f50308a7f8, slot: 6503 +2024-09-30T08:10:51.052528Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6503 +2024-09-30T08:10:51.052542Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6503 +2024-09-30T08:10:51.065260Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:10:51.065481Z INFO fork_choice_control::block_processor: Validating block with slot: 6504 +2024-09-30T08:10:51.066455Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4b7126e20efc4cb34f58188e7540f07a94ca53c8c6a6ec27ff6ae93e2b8c5f32, slot: 6504 +2024-09-30T08:10:51.068967Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6504 +2024-09-30T08:10:51.068976Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6504 +2024-09-30T08:10:51.082097Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:10:51.082323Z INFO fork_choice_control::block_processor: Validating block with slot: 6505 +2024-09-30T08:10:51.083525Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd9d38dbda62448688c1cf6c654098888df606f0f70668dff93ede3ed68268959, slot: 6505 +2024-09-30T08:10:51.086176Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6505 +2024-09-30T08:10:51.086195Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6505 +2024-09-30T08:10:51.098822Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:10:51.099057Z INFO fork_choice_control::block_processor: Validating block with slot: 6506 +2024-09-30T08:10:51.100272Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x99786fa32381617c3d0c5874032a9806005f2aadaa5f00da0c6ed65a77d95879, slot: 6506 +2024-09-30T08:10:51.103193Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6506 +2024-09-30T08:10:51.103209Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6506 +2024-09-30T08:10:51.116015Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:10:51.116254Z INFO fork_choice_control::block_processor: Validating block with slot: 6507 +2024-09-30T08:10:51.117509Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x355734d18be463eb6bd1c9e24b0b7e5fbc7f7cba042342928d13fc265db0884a, slot: 6507 +2024-09-30T08:10:51.120597Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6507 +2024-09-30T08:10:51.120618Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6507 +2024-09-30T08:10:51.133627Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:10:51.133934Z INFO fork_choice_control::block_processor: Validating block with slot: 6508 +2024-09-30T08:10:51.137703Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8d9ed3d03e42481308963282195c1c5854ac8f53f4af7992fca6269812d8582a, slot: 6508 +2024-09-30T08:10:51.145372Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6508 +2024-09-30T08:10:51.145384Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6508 +2024-09-30T08:10:51.162515Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:10:51.162774Z INFO fork_choice_control::block_processor: Validating block with slot: 6509 +2024-09-30T08:10:51.164449Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x381f73a24c9c21d8dab59dea3638afe7e0980de38f7bb19f0db55053825f16ef, slot: 6509 +2024-09-30T08:10:51.168174Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6509 +2024-09-30T08:10:51.168186Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6509 +2024-09-30T08:10:51.183072Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:10:51.183328Z INFO fork_choice_control::block_processor: Validating block with slot: 6510 +2024-09-30T08:10:51.184424Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaa68e76e96ce38185455434cf5740a3bcfb1baf3d766b2033a8d00ed6cad5523, slot: 6510 +2024-09-30T08:10:51.187199Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6510 +2024-09-30T08:10:51.187219Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6510 +2024-09-30T08:10:51.203484Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:10:51.204058Z INFO fork_choice_control::block_processor: Validating block with slot: 6511 +2024-09-30T08:10:51.205348Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x76ebd8138199770b0065d021b71d0673ac31adfebb752efcfface7a37a27e309, slot: 6511 +2024-09-30T08:10:51.208381Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6511 +2024-09-30T08:10:51.208395Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6511 +2024-09-30T08:10:51.223653Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:10:51.223906Z INFO fork_choice_control::block_processor: Validating block with slot: 6512 +2024-09-30T08:10:51.224883Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3d58bb3b693cbc3c45b914c235502ec6407aa3907bdb4694ad27add8e442490b, slot: 6512 +2024-09-30T08:10:51.227426Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6512 +2024-09-30T08:10:51.227438Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6512 +2024-09-30T08:10:51.242848Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:10:51.243094Z INFO fork_choice_control::block_processor: Validating block with slot: 6513 +2024-09-30T08:10:51.244448Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xefb3481c684c39894c94c43bf72ac36f839a069cc53a150ec9935391bd779238, slot: 6513 +2024-09-30T08:10:51.247640Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6513 +2024-09-30T08:10:51.247650Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6513 +2024-09-30T08:10:51.263370Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:10:51.263646Z INFO fork_choice_control::block_processor: Validating block with slot: 6514 +2024-09-30T08:10:51.265421Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd62be35cf3b8b11cc7ffd021baa33efc6b9b9230975d954bf870c87eae03f978, slot: 6514 +2024-09-30T08:10:51.269385Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6514 +2024-09-30T08:10:51.269402Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6514 +2024-09-30T08:10:51.285472Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:10:51.285722Z INFO fork_choice_control::block_processor: Validating block with slot: 6515 +2024-09-30T08:10:51.286780Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb5c18d27c0cde4f8da625e35b2b11515fc0dc15534170a0594cef1627a14fa95, slot: 6515 +2024-09-30T08:10:51.289372Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6515 +2024-09-30T08:10:51.289385Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6515 +2024-09-30T08:10:51.306072Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:10:51.306312Z INFO fork_choice_control::block_processor: Validating block with slot: 6516 +2024-09-30T08:10:51.307283Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf7e988d3fc6fe4d4ea1ca2acf23e6a410e3c30d3d046ffa11359fdc6c478ce8b, slot: 6516 +2024-09-30T08:10:51.309834Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6516 +2024-09-30T08:10:51.309846Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6516 +2024-09-30T08:10:51.325691Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:10:51.325932Z INFO fork_choice_control::block_processor: Validating block with slot: 6517 +2024-09-30T08:10:51.327140Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8c9fee965865731113f59ac833e6b83aed3d43a51e68fbd2bba3991574e640be, slot: 6517 +2024-09-30T08:10:51.330107Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6517 +2024-09-30T08:10:51.330119Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6517 +2024-09-30T08:10:51.345927Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:10:51.346165Z INFO fork_choice_control::block_processor: Validating block with slot: 6518 +2024-09-30T08:10:51.347238Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa4c3db28e226cb990e7e38d58c82c9a936c6818850230e1b8f94f9074d35db01, slot: 6518 +2024-09-30T08:10:51.349899Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6518 +2024-09-30T08:10:51.349911Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6518 +2024-09-30T08:10:51.366235Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:10:51.366490Z INFO fork_choice_control::block_processor: Validating block with slot: 6519 +2024-09-30T08:10:51.369114Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5fe106104fa990e93e38578bca6a488ed12ebe87d5bb8aae9e23c2c8fc509964, slot: 6519 +2024-09-30T08:10:51.374597Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6519 +2024-09-30T08:10:51.374616Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6519 +2024-09-30T08:10:51.391560Z INFO fork_choice_control::block_processor: Validating block with slot: 6520 +2024-09-30T08:10:51.393209Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x09b2bcae86ade36198b6862fc79c5bd71f89af173cfb4ce751c055a44d660014, slot: 6520 +2024-09-30T08:10:51.396835Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6520 +2024-09-30T08:10:51.396846Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6520 +2024-09-30T08:10:51.413680Z INFO fork_choice_control::block_processor: Validating block with slot: 6521 +2024-09-30T08:10:51.414664Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1e44711d90dbed3084a0cb2873692a8a024a2599a5a95c612dcac221522d757a, slot: 6521 +2024-09-30T08:10:51.417110Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6521 +2024-09-30T08:10:51.417120Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6521 +2024-09-30T08:10:51.434310Z INFO fork_choice_control::block_processor: Validating block with slot: 6522 +2024-09-30T08:10:51.435384Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x07203abd4ad4e3ab64b8b221595672729ec1f659276ba3830dae76aa4cd36b45, slot: 6522 +2024-09-30T08:10:51.438205Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6522 +2024-09-30T08:10:51.438228Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6522 +2024-09-30T08:10:51.456257Z INFO fork_choice_control::block_processor: Validating block with slot: 6523 +2024-09-30T08:10:51.459398Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x014e91adc721610700db673f76ae19ef8f36f51abbde7f8d716ae94f50fb06c7, slot: 6523 +2024-09-30T08:10:51.465769Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6523 +2024-09-30T08:10:51.465780Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6523 +2024-09-30T08:10:51.483946Z INFO fork_choice_control::block_processor: Validating block with slot: 6524 +2024-09-30T08:10:51.486291Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2c608a453ca9010a367cb2967fc75ec41b5617997f8c11810cc93cdfef9a89c1, slot: 6524 +2024-09-30T08:10:51.491097Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6524 +2024-09-30T08:10:51.491110Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6524 +2024-09-30T08:10:51.509077Z INFO fork_choice_control::block_processor: Validating block with slot: 6525 +2024-09-30T08:10:51.510158Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5eaa4f7bfcc1e95547b55490aaaf5d768902f8afcb51e2f644835fa96e36f9d4, slot: 6525 +2024-09-30T08:10:51.512829Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6525 +2024-09-30T08:10:51.512841Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6525 +2024-09-30T08:10:51.530931Z INFO fork_choice_control::block_processor: Validating block with slot: 6526 +2024-09-30T08:10:51.532158Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4a2873f10fafb5ccd8d2324f9fea824d37a32627f5f924a469e209676e66939b, slot: 6526 +2024-09-30T08:10:51.535056Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6526 +2024-09-30T08:10:51.535065Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6526 +2024-09-30T08:10:51.553323Z INFO fork_choice_control::block_processor: Validating block with slot: 6529 +2024-09-30T08:10:51.555635Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbe745cf628c1e9c35684dc85afab706e15e5f0b77832028d009692037d11d138, slot: 6529 +2024-09-30T08:10:51.750267Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6529 +2024-09-30T08:10:51.750291Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6529 +2024-09-30T08:10:51.761962Z INFO fork_choice_control::block_processor: Validating block with slot: 6530 +2024-09-30T08:10:51.764589Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x38311a98d183ce9138ec72ea47df0478f489bdcee3a43a186591a8d6c4370069, slot: 6530 +2024-09-30T08:10:51.769914Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6530 +2024-09-30T08:10:51.769929Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6530 +2024-09-30T08:10:51.782106Z INFO fork_choice_control::block_processor: Validating block with slot: 6531 +2024-09-30T08:10:51.783510Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1cd5def9aea9d21a9d36fd4eb748b4ededbf09ffdac67f27e1cc9e2a93bee2fc, slot: 6531 +2024-09-30T08:10:51.786801Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6531 +2024-09-30T08:10:51.786817Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6531 +2024-09-30T08:10:51.799071Z INFO fork_choice_control::block_processor: Validating block with slot: 6532 +2024-09-30T08:10:51.800176Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2e4343d01f809eac5512ae0274efa2dabf8af6feeb92ebc0c971420202de1046, slot: 6532 +2024-09-30T08:10:51.802908Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6532 +2024-09-30T08:10:51.802923Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6532 +2024-09-30T08:10:51.815548Z INFO fork_choice_control::block_processor: Validating block with slot: 6533 +2024-09-30T08:10:51.816502Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x61b73c9eddb9ec2fcfca0477119c1ed193b6b896e376573d42335311f95108b4, slot: 6533 +2024-09-30T08:10:51.818938Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6533 +2024-09-30T08:10:51.818948Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6533 +2024-09-30T08:10:51.831631Z INFO fork_choice_control::block_processor: Validating block with slot: 6534 +2024-09-30T08:10:51.833272Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd7cdf5af7e913587bb6286c6f35bcb7e53edc9947663cc690851faa8649eadfa, slot: 6534 +2024-09-30T08:10:51.836921Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6534 +2024-09-30T08:10:51.836934Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6534 +2024-09-30T08:10:51.849689Z INFO fork_choice_control::block_processor: Validating block with slot: 6535 +2024-09-30T08:10:51.851840Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x57363ff50df11d1d9c759bad7ce64284b844bf07ce24aae7dedb11912fb9ed8b, slot: 6535 +2024-09-30T08:10:51.856570Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6535 +2024-09-30T08:10:51.856590Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6535 +2024-09-30T08:10:51.869716Z INFO fork_choice_control::block_processor: Validating block with slot: 6536 +2024-09-30T08:10:51.871100Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe8ec1ef36e140db24080c88857104df58615315a0430c842bb6490a89b62ad06, slot: 6536 +2024-09-30T08:10:51.874253Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6536 +2024-09-30T08:10:51.874263Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6536 +2024-09-30T08:10:51.887961Z INFO fork_choice_control::block_processor: Validating block with slot: 6537 +2024-09-30T08:10:51.889043Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x75d9fe69e31935396b40fab73cb6c74d5629ca7fd7ef50f84cafc0fa5584ad88, slot: 6537 +2024-09-30T08:10:51.891678Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6537 +2024-09-30T08:10:51.891688Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6537 +2024-09-30T08:10:51.905379Z INFO fork_choice_control::block_processor: Validating block with slot: 6538 +2024-09-30T08:10:51.906329Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6e2df881099d89bc540d8d890bdab970a74081fecbb6453f8495e1726c133cf8, slot: 6538 +2024-09-30T08:10:51.908727Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6538 +2024-09-30T08:10:51.908736Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6538 +2024-09-30T08:10:51.922580Z INFO fork_choice_control::block_processor: Validating block with slot: 6539 +2024-09-30T08:10:51.923537Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbab99878f423d0002140f60972bfbb6213c3e77ea9e63cf50dc79a395999a3b7, slot: 6539 +2024-09-30T08:10:51.925962Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6539 +2024-09-30T08:10:51.925971Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6539 +2024-09-30T08:10:51.939890Z INFO fork_choice_control::block_processor: Validating block with slot: 6540 +2024-09-30T08:10:51.941507Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfaa475a1ae8906c38a079a82926158b6584c1c15cde6c8b1d0909dc2dbd01569, slot: 6540 +2024-09-30T08:10:51.945094Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6540 +2024-09-30T08:10:51.945104Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6540 +2024-09-30T08:10:51.959467Z INFO fork_choice_control::block_processor: Validating block with slot: 6541 +2024-09-30T08:10:51.961220Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x34e0bcb68035179017b342cde2ccfc0061b144a05ddb30ff4e76aee516472623, slot: 6541 +2024-09-30T08:10:51.965018Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6541 +2024-09-30T08:10:51.965027Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6541 +2024-09-30T08:10:51.979450Z INFO fork_choice_control::block_processor: Validating block with slot: 6542 +2024-09-30T08:10:51.980957Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x70feeccf4da49c039ac1c6ae169bdd6bc72175e5a835126a7090234da2907661, slot: 6542 +2024-09-30T08:10:51.984515Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6542 +2024-09-30T08:10:51.984532Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6542 +2024-09-30T08:10:51.999374Z INFO fork_choice_control::block_processor: Validating block with slot: 6543 +2024-09-30T08:10:52.000716Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xef33bc74c6e78209e8de11a6caf65c373d599f3fa038a824ce3bd161d3a57aad, slot: 6543 +2024-09-30T08:10:52.003938Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6543 +2024-09-30T08:10:52.003955Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6543 +2024-09-30T08:10:52.018640Z INFO fork_choice_control::block_processor: Validating block with slot: 6544 +2024-09-30T08:10:52.019627Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x19fd7d9dc8500a05537eebc1b795dfb096a8ca79f74b978e64919f8cb8030cbb, slot: 6544 +2024-09-30T08:10:52.022123Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6544 +2024-09-30T08:10:52.022139Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6544 +2024-09-30T08:10:52.037233Z INFO fork_choice_control::block_processor: Validating block with slot: 6545 +2024-09-30T08:10:52.038205Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa69a37f303e0f3c0aeafd900ecf30d2a6fc15723210618d83af3085fa02a315d, slot: 6545 +2024-09-30T08:10:52.040611Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6545 +2024-09-30T08:10:52.040621Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6545 +2024-09-30T08:10:52.056176Z INFO fork_choice_control::block_processor: Validating block with slot: 6546 +2024-09-30T08:10:52.057131Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3be447134eb369a50c9f0a817ade6d7b25b875e3781c26d43dbc70351babe539, slot: 6546 +2024-09-30T08:10:52.059524Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6546 +2024-09-30T08:10:52.059533Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6546 +2024-09-30T08:10:52.075014Z INFO fork_choice_control::block_processor: Validating block with slot: 6547 +2024-09-30T08:10:52.076223Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xed66d86cfb9fe29804e4cd15c3bc770afd0a083738f13baf5b8652b2550947ac, slot: 6547 +2024-09-30T08:10:52.079050Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6547 +2024-09-30T08:10:52.079063Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6547 +2024-09-30T08:10:52.094963Z INFO fork_choice_control::block_processor: Validating block with slot: 6548 +2024-09-30T08:10:52.095914Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x23190d75b59a0b87ac320c6a97dc8ca09f63d08feeb4134df3e2ecd04e3937ea, slot: 6548 +2024-09-30T08:10:52.098299Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6548 +2024-09-30T08:10:52.098308Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6548 +2024-09-30T08:10:52.114146Z INFO fork_choice_control::block_processor: Validating block with slot: 6549 +2024-09-30T08:10:52.115355Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbbbfe8a566edcb37f493041ba6567861983999e75a1a0f2a3168938ef6414542, slot: 6549 +2024-09-30T08:10:52.118212Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6549 +2024-09-30T08:10:52.118222Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6549 +2024-09-30T08:10:52.133939Z INFO fork_choice_control::block_processor: Validating block with slot: 6550 +2024-09-30T08:10:52.135146Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbf104d2e59748abf4300c6d903c48e935450e2a9d0552264cc20b5b6940e71f8, slot: 6550 +2024-09-30T08:10:52.138180Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6550 +2024-09-30T08:10:52.138195Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6550 +2024-09-30T08:10:52.154582Z INFO fork_choice_control::block_processor: Validating block with slot: 6552 +2024-09-30T08:10:52.156469Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x278cc6c02c23449862e916e78e2a10976b6e4805e8d43844fe220bbede19888d, slot: 6552 +2024-09-30T08:10:52.183465Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6552 +2024-09-30T08:10:52.183484Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6552 +2024-09-30T08:10:52.201004Z INFO fork_choice_control::block_processor: Validating block with slot: 6553 +2024-09-30T08:10:52.203416Z INFO fork_choice_control::block_processor: Validating block with slot: 6554 +2024-09-30T08:10:52.205103Z INFO fork_choice_control::block_processor: Validating block with slot: 6555 +2024-09-30T08:10:52.206588Z INFO fork_choice_control::block_processor: Validating block with slot: 6556 +2024-09-30T08:10:52.208271Z INFO fork_choice_control::block_processor: Validating block with slot: 6557 +2024-09-30T08:10:52.209469Z INFO fork_choice_control::block_processor: Validating block with slot: 6558 +2024-09-30T08:10:52.210992Z INFO fork_choice_control::block_processor: Validating block with slot: 6559 +2024-09-30T08:10:52.217917Z INFO database: database: /Users/mercynaps/.grandine/mainnet/beacon/sync with name sync +2024-09-30T08:10:52.223361Z INFO database: database: /Users/mercynaps/.grandine/mainnet/validator with name proposer-configs +2024-09-30T08:10:52.259845Z INFO discv5::service: Discv5 Service started mode=Ip4 +2024-09-30T08:10:52.291232Z INFO libp2p_swarm: local_peer_id=16Uiu2HAm1MjWUF4J3qsovL8Wzccfuzy28tTQ8dmA2sazksHeR3bs +2024-09-30T08:10:52.300286Z INFO fork_choice_control::block_processor: Validating block with slot: 6553 +2024-09-30T08:10:52.302385Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1c80383b38004f36d876e20b90e72166e89e1e56ebe006c038bfc904b168a5a3, slot: 6553 +2024-09-30T08:10:52.306992Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6553 +2024-09-30T08:10:52.307011Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6553 +2024-09-30T08:10:52.323880Z INFO fork_choice_control::block_processor: Validating block with slot: 6554 +2024-09-30T08:10:52.325271Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xde5812344a0f5366b21c05f958c6d99b0cecf6cc5acf30d562cf3b9c87df5bc3, slot: 6554 +2024-09-30T08:10:52.328473Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6554 +2024-09-30T08:10:52.328483Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6554 +2024-09-30T08:10:52.345524Z INFO fork_choice_control::block_processor: Validating block with slot: 6555 +2024-09-30T08:10:52.346894Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x421b4dc520c371a7fcfec60b77a39a40f5f600064ccdae7497b8c3b1f0669154, slot: 6555 +2024-09-30T08:10:52.350029Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6555 +2024-09-30T08:10:52.350038Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6555 +2024-09-30T08:10:52.367178Z INFO fork_choice_control::block_processor: Validating block with slot: 6556 +2024-09-30T08:10:52.368551Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8b82c4e91ffdb03a88f0ff278252254fccada933855d6e959d229a3e0cd93218, slot: 6556 +2024-09-30T08:10:52.371867Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6556 +2024-09-30T08:10:52.371883Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6556 +2024-09-30T08:10:52.389339Z INFO fork_choice_control::block_processor: Validating block with slot: 6557 +2024-09-30T08:10:52.390446Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfda51aab6bc5ce4eefeb2827b643ae8dc65cb1ce0b78bd90e9fdaca8543a081d, slot: 6557 +2024-09-30T08:10:52.393204Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6557 +2024-09-30T08:10:52.393216Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6557 +2024-09-30T08:10:52.410976Z INFO fork_choice_control::block_processor: Validating block with slot: 6558 +2024-09-30T08:10:52.412519Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6217cb42cde0d3669147a3d893971c8add095c6557965755a6d50dea96333f4c, slot: 6558 +2024-09-30T08:10:52.415948Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6558 +2024-09-30T08:10:52.415958Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6558 +2024-09-30T08:10:52.433718Z INFO fork_choice_control::block_processor: Validating block with slot: 6559 +2024-09-30T08:10:52.434684Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb9ba2a43f1a4dc3c214ca20002aeebc17738fa7171dad792fecabe7b2e86945c, slot: 6559 +2024-09-30T08:10:52.437271Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6559 +2024-09-30T08:10:52.437290Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6559 +2024-09-30T08:11:02.339245Z INFO http_api::task: HTTP server listening on 127.0.0.1:5052 +2024-09-30T08:11:17.976346Z WARN discv5::service: FINDNODE request failed with partial results node_id=0x794f..74db addr=136.62.154.181:9000 error=Timeout received=6 expected=3 +2024-09-30T08:11:23.491288Z INFO fork_choice_control::block_processor: Validating block with slot: 6625 +2024-09-30T08:11:23.537463Z INFO fork_choice_control::block_processor: Validating block with slot: 6627 +2024-09-30T08:11:23.537459Z INFO fork_choice_control::block_processor: Validating block with slot: 6626 +2024-09-30T08:11:23.552285Z INFO fork_choice_control::block_processor: Validating block with slot: 6628 +2024-09-30T08:11:23.592766Z INFO fork_choice_control::block_processor: Validating block with slot: 6629 +2024-09-30T08:11:23.612830Z INFO fork_choice_control::block_processor: Validating block with slot: 6630 +2024-09-30T08:11:23.628789Z INFO fork_choice_control::block_processor: Validating block with slot: 6631 +2024-09-30T08:11:23.636017Z INFO fork_choice_control::block_processor: Validating block with slot: 6632 +2024-09-30T08:11:23.729554Z INFO fork_choice_control::block_processor: Validating block with slot: 6633 +2024-09-30T08:11:23.793462Z INFO fork_choice_control::block_processor: Validating block with slot: 6634 +2024-09-30T08:11:23.796511Z INFO fork_choice_control::block_processor: Validating block with slot: 6635 +2024-09-30T08:11:23.815277Z INFO fork_choice_control::block_processor: Validating block with slot: 6636 +2024-09-30T08:11:23.890019Z INFO fork_choice_control::block_processor: Validating block with slot: 6637 +2024-09-30T08:11:23.901019Z INFO fork_choice_control::block_processor: Validating block with slot: 6638 +2024-09-30T08:11:23.914594Z INFO fork_choice_control::block_processor: Validating block with slot: 6639 +2024-09-30T08:11:23.931705Z INFO fork_choice_control::block_processor: Validating block with slot: 6640 +2024-09-30T08:11:23.943782Z INFO fork_choice_control::block_processor: Validating block with slot: 6641 +2024-09-30T08:11:23.960201Z INFO fork_choice_control::block_processor: Validating block with slot: 6642 +2024-09-30T08:11:24.003736Z INFO fork_choice_control::block_processor: Validating block with slot: 6643 +2024-09-30T08:11:24.003740Z INFO fork_choice_control::block_processor: Validating block with slot: 6644 +2024-09-30T08:11:24.006341Z INFO fork_choice_control::block_processor: Validating block with slot: 6645 +2024-09-30T08:11:24.022451Z INFO fork_choice_control::block_processor: Validating block with slot: 6646 +2024-09-30T08:11:24.025441Z INFO fork_choice_control::block_processor: Validating block with slot: 6647 +2024-09-30T08:11:24.065209Z INFO fork_choice_control::block_processor: Validating block with slot: 6648 +2024-09-30T08:11:24.067128Z INFO fork_choice_control::block_processor: Validating block with slot: 6649 +2024-09-30T08:11:24.091575Z INFO fork_choice_control::block_processor: Validating block with slot: 6650 +2024-09-30T08:11:24.094087Z INFO fork_choice_control::block_processor: Validating block with slot: 6651 +2024-09-30T08:11:24.109423Z INFO fork_choice_control::block_processor: Validating block with slot: 6653 +2024-09-30T08:11:24.109425Z INFO fork_choice_control::block_processor: Validating block with slot: 6652 +2024-09-30T08:11:24.145265Z INFO fork_choice_control::block_processor: Validating block with slot: 6655 +2024-09-30T08:11:24.145269Z INFO fork_choice_control::block_processor: Validating block with slot: 6654 +2024-09-30T08:11:24.145266Z INFO fork_choice_control::block_processor: Validating block with slot: 6656 +2024-09-30T08:11:24.145283Z INFO fork_choice_control::block_processor: Validating block with slot: 6657 +2024-09-30T08:11:24.153723Z INFO fork_choice_control::block_processor: Validating block with slot: 6658 +2024-09-30T08:11:24.202614Z INFO fork_choice_control::block_processor: Validating block with slot: 6659 +2024-09-30T08:11:24.205175Z INFO fork_choice_control::block_processor: Validating block with slot: 6660 +2024-09-30T08:11:24.216830Z INFO fork_choice_control::block_processor: Validating block with slot: 6661 +2024-09-30T08:11:24.216844Z INFO fork_choice_control::block_processor: Validating block with slot: 6662 +2024-09-30T08:11:24.227217Z INFO fork_choice_control::block_processor: Validating block with slot: 6663 +2024-09-30T08:11:24.246086Z INFO fork_choice_control::block_processor: Validating block with slot: 6664 +2024-09-30T08:11:24.278123Z INFO fork_choice_control::block_processor: Validating block with slot: 6665 +2024-09-30T08:11:24.278154Z INFO fork_choice_control::block_processor: Validating block with slot: 6668 +2024-09-30T08:11:24.278172Z INFO fork_choice_control::block_processor: Validating block with slot: 6667 +2024-09-30T08:11:24.282242Z INFO fork_choice_control::block_processor: Validating block with slot: 6669 +2024-09-30T08:11:24.314108Z INFO fork_choice_control::block_processor: Validating block with slot: 6670 +2024-09-30T08:11:24.314135Z INFO fork_choice_control::block_processor: Validating block with slot: 6671 +2024-09-30T08:11:24.325497Z INFO fork_choice_control::block_processor: Validating block with slot: 6497 +2024-09-30T08:11:24.331351Z INFO fork_choice_control::block_processor: Validating block with slot: 6753 +2024-09-30T08:11:24.344265Z INFO fork_choice_control::block_processor: Validating block with slot: 6754 +2024-09-30T08:11:24.344269Z INFO fork_choice_control::block_processor: Validating block with slot: 6755 +2024-09-30T08:11:24.394264Z INFO fork_choice_control::block_processor: Validating block with slot: 6757 +2024-09-30T08:11:24.394262Z INFO fork_choice_control::block_processor: Validating block with slot: 6756 +2024-09-30T08:11:24.394284Z INFO fork_choice_control::block_processor: Validating block with slot: 6760 +2024-09-30T08:11:24.394317Z INFO fork_choice_control::block_processor: Validating block with slot: 6758 +2024-09-30T08:11:24.394342Z INFO fork_choice_control::block_processor: Validating block with slot: 6759 +2024-09-30T08:11:24.409548Z INFO fork_choice_control::block_processor: Validating block with slot: 6761 +2024-09-30T08:11:24.421801Z INFO fork_choice_control::block_processor: Validating block with slot: 6762 +2024-09-30T08:11:24.421809Z INFO fork_choice_control::block_processor: Validating block with slot: 6763 +2024-09-30T08:11:24.433137Z INFO fork_choice_control::block_processor: Validating block with slot: 6764 +2024-09-30T08:11:24.433140Z INFO fork_choice_control::block_processor: Validating block with slot: 6765 +2024-09-30T08:11:24.443303Z INFO fork_choice_control::block_processor: Validating block with slot: 6766 +2024-09-30T08:11:24.443312Z INFO fork_choice_control::block_processor: Validating block with slot: 6767 +2024-09-30T08:11:24.449391Z INFO fork_choice_control::block_processor: Validating block with slot: 6768 +2024-09-30T08:11:24.461406Z INFO fork_choice_control::block_processor: Validating block with slot: 6770 +2024-09-30T08:11:24.467592Z INFO fork_choice_control::block_processor: Validating block with slot: 6771 +2024-09-30T08:11:24.477864Z INFO fork_choice_control::block_processor: Validating block with slot: 6773 +2024-09-30T08:11:24.487581Z INFO fork_choice_control::block_processor: Validating block with slot: 6774 +2024-09-30T08:11:24.493877Z INFO fork_choice_control::block_processor: Validating block with slot: 6775 +2024-09-30T08:11:24.493879Z INFO fork_choice_control::block_processor: Validating block with slot: 6776 +2024-09-30T08:11:24.499807Z INFO fork_choice_control::block_processor: Validating block with slot: 6777 +2024-09-30T08:11:24.499806Z INFO fork_choice_control::block_processor: Validating block with slot: 6778 +2024-09-30T08:11:24.506136Z INFO fork_choice_control::block_processor: Validating block with slot: 6779 +2024-09-30T08:11:24.518300Z INFO fork_choice_control::block_processor: Validating block with slot: 6780 +2024-09-30T08:11:24.523194Z INFO fork_choice_control::block_processor: Validating block with slot: 6781 +2024-09-30T08:11:24.523205Z INFO fork_choice_control::block_processor: Validating block with slot: 6782 +2024-09-30T08:11:24.528358Z INFO fork_choice_control::block_processor: Validating block with slot: 6784 +2024-09-30T08:11:24.536386Z INFO fork_choice_control::block_processor: Validating block with slot: 6786 +2024-09-30T08:11:24.536387Z INFO fork_choice_control::block_processor: Validating block with slot: 6785 +2024-09-30T08:11:24.542505Z INFO fork_choice_control::block_processor: Validating block with slot: 6787 +2024-09-30T08:11:24.547277Z INFO fork_choice_control::block_processor: Validating block with slot: 6788 +2024-09-30T08:11:24.554381Z INFO fork_choice_control::block_processor: Validating block with slot: 6672 +2024-09-30T08:11:24.562867Z INFO fork_choice_control::block_processor: Validating block with slot: 6499 +2024-09-30T08:11:24.578677Z INFO fork_choice_control::block_processor: Validating block with slot: 6789 +2024-09-30T08:11:24.582173Z INFO fork_choice_control::block_processor: Validating block with slot: 6791 +2024-09-30T08:11:24.582172Z INFO fork_choice_control::block_processor: Validating block with slot: 6790 +2024-09-30T08:11:24.598908Z INFO fork_choice_control::block_processor: Validating block with slot: 6792 +2024-09-30T08:11:24.604344Z INFO fork_choice_control::block_processor: Validating block with slot: 6793 +2024-09-30T08:11:24.604347Z INFO fork_choice_control::block_processor: Validating block with slot: 6794 +2024-09-30T08:11:24.606003Z INFO fork_choice_control::block_processor: Validating block with slot: 6795 +2024-09-30T08:11:24.607852Z INFO fork_choice_control::block_processor: Validating block with slot: 6796 +2024-09-30T08:11:24.613585Z INFO fork_choice_control::block_processor: Validating block with slot: 6797 +2024-09-30T08:11:24.621967Z INFO fork_choice_control::block_processor: Validating block with slot: 6799 +2024-09-30T08:11:24.621969Z INFO fork_choice_control::block_processor: Validating block with slot: 6798 +2024-09-30T08:11:24.624512Z INFO fork_choice_control::block_processor: Validating block with slot: 6800 +2024-09-30T08:11:24.632033Z INFO fork_choice_control::block_processor: Validating block with slot: 6801 +2024-09-30T08:11:24.637476Z INFO fork_choice_control::block_processor: Validating block with slot: 6802 +2024-09-30T08:11:24.637477Z INFO fork_choice_control::block_processor: Validating block with slot: 6803 +2024-09-30T08:11:24.639876Z INFO fork_choice_control::block_processor: Validating block with slot: 6804 +2024-09-30T08:11:24.656635Z INFO fork_choice_control::block_processor: Validating block with slot: 6806 +2024-09-30T08:11:24.656639Z INFO fork_choice_control::block_processor: Validating block with slot: 6805 +2024-09-30T08:11:24.656653Z INFO fork_choice_control::block_processor: Validating block with slot: 6807 +2024-09-30T08:11:24.668991Z INFO fork_choice_control::block_processor: Validating block with slot: 6808 +2024-09-30T08:11:24.669048Z INFO fork_choice_control::block_processor: Validating block with slot: 6809 +2024-09-30T08:11:24.669171Z INFO fork_choice_control::block_processor: Validating block with slot: 6810 +2024-09-30T08:11:24.678979Z INFO fork_choice_control::block_processor: Validating block with slot: 6811 +2024-09-30T08:11:24.679246Z INFO fork_choice_control::block_processor: Validating block with slot: 6812 +2024-09-30T08:11:24.685404Z INFO fork_choice_control::block_processor: Validating block with slot: 6813 +2024-09-30T08:11:24.685434Z INFO fork_choice_control::block_processor: Validating block with slot: 6814 +2024-09-30T08:11:24.685560Z INFO fork_choice_control::block_processor: Validating block with slot: 6815 +2024-09-30T08:11:24.686332Z INFO fork_choice_control::block_processor: Validating block with slot: 6816 +2024-09-30T08:11:24.690232Z INFO fork_choice_control::block_processor: Validating block with slot: 6673 +2024-09-30T08:11:24.690684Z INFO fork_choice_control::block_processor: Validating block with slot: 6674 +2024-09-30T08:11:24.695687Z INFO fork_choice_control::block_processor: Validating block with slot: 6676 +2024-09-30T08:11:24.695741Z INFO fork_choice_control::block_processor: Validating block with slot: 6675 +2024-09-30T08:11:24.703071Z INFO fork_choice_control::block_processor: Validating block with slot: 6677 +2024-09-30T08:11:24.704161Z INFO fork_choice_control::block_processor: Validating block with slot: 6678 +2024-09-30T08:11:24.719337Z INFO fork_choice_control::block_processor: Validating block with slot: 6680 +2024-09-30T08:11:24.719340Z INFO fork_choice_control::block_processor: Validating block with slot: 6679 +2024-09-30T08:11:24.722309Z INFO fork_choice_control::block_processor: Validating block with slot: 6681 +2024-09-30T08:11:24.728870Z INFO fork_choice_control::block_processor: Validating block with slot: 6682 +2024-09-30T08:11:24.728875Z INFO fork_choice_control::block_processor: Validating block with slot: 6683 +2024-09-30T08:11:24.731823Z INFO fork_choice_control::block_processor: Validating block with slot: 6684 +2024-09-30T08:11:24.731826Z INFO fork_choice_control::block_processor: Validating block with slot: 6685 +2024-09-30T08:11:24.742989Z INFO fork_choice_control::block_processor: Validating block with slot: 6686 +2024-09-30T08:11:24.742993Z INFO fork_choice_control::block_processor: Validating block with slot: 6687 +2024-09-30T08:11:24.745420Z INFO fork_choice_control::block_processor: Validating block with slot: 6688 +2024-09-30T08:11:24.753587Z INFO fork_choice_control::block_processor: Validating block with slot: 6501 +2024-09-30T08:11:24.753608Z INFO fork_choice_control::block_processor: Validating block with slot: 6500 +2024-09-30T08:11:24.760410Z INFO fork_choice_control::block_processor: Validating block with slot: 6504 +2024-09-30T08:11:24.760419Z INFO fork_choice_control::block_processor: Validating block with slot: 6505 +2024-09-30T08:11:24.760499Z INFO fork_choice_control::block_processor: Validating block with slot: 6502 +2024-09-30T08:11:24.760506Z INFO fork_choice_control::block_processor: Validating block with slot: 6503 +2024-09-30T08:11:24.764364Z INFO fork_choice_control::block_processor: Validating block with slot: 6507 +2024-09-30T08:11:24.764374Z INFO fork_choice_control::block_processor: Validating block with slot: 6506 +2024-09-30T08:11:24.772505Z INFO fork_choice_control::block_processor: Validating block with slot: 6508 +2024-09-30T08:11:24.776621Z INFO fork_choice_control::block_processor: Validating block with slot: 6509 +2024-09-30T08:11:24.776626Z INFO fork_choice_control::block_processor: Validating block with slot: 6510 +2024-09-30T08:11:24.783833Z INFO fork_choice_control::block_processor: Validating block with slot: 6512 +2024-09-30T08:11:24.783926Z INFO fork_choice_control::block_processor: Validating block with slot: 6511 +2024-09-30T08:11:24.799362Z INFO fork_choice_control::block_processor: Validating block with slot: 6513 +2024-09-30T08:11:24.799381Z INFO fork_choice_control::block_processor: Validating block with slot: 6515 +2024-09-30T08:11:24.799425Z INFO fork_choice_control::block_processor: Validating block with slot: 6514 +2024-09-30T08:11:24.801283Z INFO fork_choice_control::block_processor: Validating block with slot: 6516 +2024-09-30T08:11:24.805698Z INFO fork_choice_control::block_processor: Validating block with slot: 6517 +2024-09-30T08:11:24.805762Z INFO fork_choice_control::block_processor: Validating block with slot: 6518 +2024-09-30T08:11:24.809691Z INFO fork_choice_control::block_processor: Validating block with slot: 6519 +2024-09-30T08:11:24.813640Z INFO fork_choice_control::block_processor: Validating block with slot: 6520 +2024-09-30T08:11:24.813676Z INFO fork_choice_control::block_processor: Validating block with slot: 6521 +2024-09-30T08:11:24.820073Z INFO fork_choice_control::block_processor: Validating block with slot: 6522 +2024-09-30T08:11:24.820083Z INFO fork_choice_control::block_processor: Validating block with slot: 6523 +2024-09-30T08:11:24.830326Z INFO fork_choice_control::block_processor: Validating block with slot: 6526 +2024-09-30T08:11:24.830327Z INFO fork_choice_control::block_processor: Validating block with slot: 6525 +2024-09-30T08:11:24.830335Z INFO fork_choice_control::block_processor: Validating block with slot: 6529 +2024-09-30T08:11:24.830339Z INFO fork_choice_control::block_processor: Validating block with slot: 6524 +2024-09-30T08:11:24.839521Z INFO fork_choice_control::block_processor: Validating block with slot: 6530 +2024-09-30T08:11:24.855943Z INFO fork_choice_control::block_processor: Validating block with slot: 6531 +2024-09-30T08:11:24.855945Z INFO fork_choice_control::block_processor: Validating block with slot: 6532 +2024-09-30T08:11:24.855969Z INFO fork_choice_control::block_processor: Validating block with slot: 6533 +2024-09-30T08:11:24.856027Z INFO fork_choice_control::block_processor: Validating block with slot: 6534 +2024-09-30T08:11:24.856097Z INFO fork_choice_control::block_processor: Validating block with slot: 6537 +2024-09-30T08:11:24.856195Z INFO fork_choice_control::block_processor: Validating block with slot: 6538 +2024-09-30T08:11:24.856408Z INFO fork_choice_control::block_processor: Validating block with slot: 6536 +2024-09-30T08:11:24.856925Z INFO fork_choice_control::block_processor: Validating block with slot: 6539 +2024-09-30T08:11:24.857130Z INFO fork_choice_control::block_processor: Validating block with slot: 6540 +2024-09-30T08:11:24.857374Z INFO fork_choice_control::block_processor: Validating block with slot: 6535 +2024-09-30T08:11:24.859435Z INFO fork_choice_control::block_processor: Validating block with slot: 6541 +2024-09-30T08:11:24.859454Z INFO fork_choice_control::block_processor: Validating block with slot: 6542 +2024-09-30T08:11:24.863310Z INFO fork_choice_control::block_processor: Validating block with slot: 6544 +2024-09-30T08:11:24.863355Z INFO fork_choice_control::block_processor: Validating block with slot: 6543 +2024-09-30T08:11:24.866270Z INFO fork_choice_control::block_processor: Validating block with slot: 6545 +2024-09-30T08:11:24.866325Z INFO fork_choice_control::block_processor: Validating block with slot: 6546 +2024-09-30T08:11:24.893835Z INFO fork_choice_control::block_processor: Validating block with slot: 6548 +2024-09-30T08:11:24.893833Z INFO fork_choice_control::block_processor: Validating block with slot: 6547 +2024-09-30T08:11:24.893838Z INFO fork_choice_control::block_processor: Validating block with slot: 6552 +2024-09-30T08:11:24.893850Z INFO fork_choice_control::block_processor: Validating block with slot: 6549 +2024-09-30T08:11:24.893863Z INFO fork_choice_control::block_processor: Validating block with slot: 6550 +2024-09-30T08:11:24.893895Z INFO fork_choice_control::block_processor: Validating block with slot: 6554 +2024-09-30T08:11:24.894032Z INFO fork_choice_control::block_processor: Validating block with slot: 6555 +2024-09-30T08:11:24.894351Z INFO fork_choice_control::block_processor: Validating block with slot: 6553 +2024-09-30T08:11:24.894809Z INFO fork_choice_control::block_processor: Validating block with slot: 6556 +2024-09-30T08:11:24.895069Z INFO fork_choice_control::block_processor: Validating block with slot: 6557 +2024-09-30T08:11:24.895081Z INFO fork_choice_control::block_processor: Validating block with slot: 6558 +2024-09-30T08:11:24.895816Z INFO fork_choice_control::block_processor: Validating block with slot: 6559 +2024-09-30T08:11:25.169915Z INFO fork_choice_control::block_processor: Validating block with slot: 6560 +2024-09-30T08:11:25.173096Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x04d0411d90dfdb5cecb7d4853cab69dff1dd0b2a80a360d541a974e710fda32e, slot: 6560 +2024-09-30T08:11:25.292590Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6560 +2024-09-30T08:11:25.292615Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6560 +2024-09-30T08:11:25.303444Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6560) +2024-09-30T08:11:27.793232Z WARN discv5::service: FINDNODE request failed with partial results node_id=0xb675..9821 addr=98.97.71.201:30420 error=Timeout received=1 expected=3 +2024-09-30T08:11:27.974990Z INFO fork_choice_control::block_processor: Validating block with slot: 6693 +2024-09-30T08:11:27.974988Z INFO fork_choice_control::block_processor: Validating block with slot: 6689 +2024-09-30T08:11:27.975048Z INFO fork_choice_control::block_processor: Validating block with slot: 6695 +2024-09-30T08:11:27.975038Z INFO fork_choice_control::block_processor: Validating block with slot: 6692 +2024-09-30T08:11:27.975076Z INFO fork_choice_control::block_processor: Validating block with slot: 6696 +2024-09-30T08:11:27.975082Z INFO fork_choice_control::block_processor: Validating block with slot: 6694 +2024-09-30T08:11:27.975153Z INFO fork_choice_control::block_processor: Validating block with slot: 6691 +2024-09-30T08:11:27.975480Z INFO fork_choice_control::block_processor: Validating block with slot: 6690 +2024-09-30T08:11:27.976141Z INFO fork_choice_control::block_processor: Validating block with slot: 6697 +2024-09-30T08:11:27.976227Z INFO fork_choice_control::block_processor: Validating block with slot: 6698 +2024-09-30T08:11:27.976318Z INFO fork_choice_control::block_processor: Validating block with slot: 6699 +2024-09-30T08:11:27.976769Z INFO fork_choice_control::block_processor: Validating block with slot: 6700 +2024-09-30T08:11:27.977211Z INFO fork_choice_control::block_processor: Validating block with slot: 6701 +2024-09-30T08:11:27.977574Z INFO fork_choice_control::block_processor: Validating block with slot: 6702 +2024-09-30T08:11:27.978219Z INFO fork_choice_control::block_processor: Validating block with slot: 6703 +2024-09-30T08:11:27.978426Z INFO fork_choice_control::block_processor: Validating block with slot: 6704 +2024-09-30T08:11:27.979166Z INFO fork_choice_control::block_processor: Validating block with slot: 6705 +2024-09-30T08:11:27.979213Z INFO fork_choice_control::block_processor: Validating block with slot: 6706 +2024-09-30T08:11:27.979364Z INFO fork_choice_control::block_processor: Validating block with slot: 6707 +2024-09-30T08:11:27.979419Z INFO fork_choice_control::block_processor: Validating block with slot: 6708 +2024-09-30T08:11:27.980184Z INFO fork_choice_control::block_processor: Validating block with slot: 6709 +2024-09-30T08:11:27.980283Z INFO fork_choice_control::block_processor: Validating block with slot: 6710 +2024-09-30T08:11:27.980379Z INFO fork_choice_control::block_processor: Validating block with slot: 6711 +2024-09-30T08:11:27.980434Z INFO fork_choice_control::block_processor: Validating block with slot: 6712 +2024-09-30T08:11:27.981121Z INFO fork_choice_control::block_processor: Validating block with slot: 6713 +2024-09-30T08:11:27.981324Z INFO fork_choice_control::block_processor: Validating block with slot: 6715 +2024-09-30T08:11:27.981352Z INFO fork_choice_control::block_processor: Validating block with slot: 6716 +2024-09-30T08:11:27.983089Z INFO fork_choice_control::block_processor: Validating block with slot: 6717 +2024-09-30T08:11:27.983271Z INFO fork_choice_control::block_processor: Validating block with slot: 6718 +2024-09-30T08:11:27.983523Z INFO fork_choice_control::block_processor: Validating block with slot: 6719 +2024-09-30T08:11:28.192752Z INFO fork_choice_control::block_processor: Validating block with slot: 6819 +2024-09-30T08:11:28.192765Z INFO fork_choice_control::block_processor: Validating block with slot: 6821 +2024-09-30T08:11:28.192767Z INFO fork_choice_control::block_processor: Validating block with slot: 6818 +2024-09-30T08:11:28.192799Z INFO fork_choice_control::block_processor: Validating block with slot: 6820 +2024-09-30T08:11:28.192819Z INFO fork_choice_control::block_processor: Validating block with slot: 6822 +2024-09-30T08:11:28.192826Z INFO fork_choice_control::block_processor: Validating block with slot: 6823 +2024-09-30T08:11:28.192990Z INFO fork_choice_control::block_processor: Validating block with slot: 6824 +2024-09-30T08:11:28.193868Z INFO fork_choice_control::block_processor: Validating block with slot: 6817 +2024-09-30T08:11:28.194157Z INFO fork_choice_control::block_processor: Validating block with slot: 6826 +2024-09-30T08:11:28.194416Z INFO fork_choice_control::block_processor: Validating block with slot: 6827 +2024-09-30T08:11:28.194560Z INFO fork_choice_control::block_processor: Validating block with slot: 6825 +2024-09-30T08:11:28.194625Z INFO fork_choice_control::block_processor: Validating block with slot: 6828 +2024-09-30T08:11:28.195357Z INFO fork_choice_control::block_processor: Validating block with slot: 6829 +2024-09-30T08:11:28.195692Z INFO fork_choice_control::block_processor: Validating block with slot: 6830 +2024-09-30T08:11:28.196233Z INFO fork_choice_control::block_processor: Validating block with slot: 6831 +2024-09-30T08:11:28.196265Z INFO fork_choice_control::block_processor: Validating block with slot: 6832 +2024-09-30T08:11:28.196877Z INFO fork_choice_control::block_processor: Validating block with slot: 6833 +2024-09-30T08:11:28.196909Z INFO fork_choice_control::block_processor: Validating block with slot: 6834 +2024-09-30T08:11:28.197071Z INFO fork_choice_control::block_processor: Validating block with slot: 6835 +2024-09-30T08:11:28.197478Z INFO fork_choice_control::block_processor: Validating block with slot: 6836 +2024-09-30T08:11:28.198546Z INFO fork_choice_control::block_processor: Validating block with slot: 6837 +2024-09-30T08:11:28.198547Z INFO fork_choice_control::block_processor: Validating block with slot: 6838 +2024-09-30T08:11:28.199121Z INFO fork_choice_control::block_processor: Validating block with slot: 6839 +2024-09-30T08:11:28.200145Z INFO fork_choice_control::block_processor: Validating block with slot: 6840 +2024-09-30T08:11:28.200304Z INFO fork_choice_control::block_processor: Validating block with slot: 6842 +2024-09-30T08:11:28.200428Z INFO fork_choice_control::block_processor: Validating block with slot: 6844 +2024-09-30T08:11:28.200681Z INFO fork_choice_control::block_processor: Validating block with slot: 6845 +2024-09-30T08:11:28.201241Z INFO fork_choice_control::block_processor: Validating block with slot: 6846 +2024-09-30T08:11:28.201253Z INFO fork_choice_control::block_processor: Validating block with slot: 6841 +2024-09-30T08:11:28.201367Z INFO fork_choice_control::block_processor: Validating block with slot: 6847 +2024-09-30T08:11:28.201633Z INFO fork_choice_control::block_processor: Validating block with slot: 6843 +2024-09-30T08:11:28.201878Z INFO fork_choice_control::block_processor: Validating block with slot: 6561 +2024-09-30T08:11:28.202171Z INFO fork_choice_control::block_processor: Validating block with slot: 6562 +2024-09-30T08:11:28.202445Z INFO fork_choice_control::block_processor: Validating block with slot: 6563 +2024-09-30T08:11:28.202687Z INFO fork_choice_control::block_processor: Validating block with slot: 6564 +2024-09-30T08:11:28.203244Z INFO fork_choice_control::block_processor: Validating block with slot: 6565 +2024-09-30T08:11:28.203369Z INFO fork_choice_control::block_processor: Validating block with slot: 6566 +2024-09-30T08:11:28.204824Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x538008c59da3c944e971f075ed6b8010e4c045e85f8ad7bd52616110ed81ea85, slot: 6561 +2024-09-30T08:11:28.233190Z INFO fork_choice_control::block_processor: Validating block with slot: 6567 +2024-09-30T08:11:28.233234Z INFO fork_choice_control::block_processor: Validating block with slot: 6568 +2024-09-30T08:11:28.274585Z INFO fork_choice_control::block_processor: Validating block with slot: 6569 +2024-09-30T08:11:28.274592Z INFO fork_choice_control::block_processor: Validating block with slot: 6570 +2024-09-30T08:11:28.274642Z INFO fork_choice_control::block_processor: Validating block with slot: 6572 +2024-09-30T08:11:28.274859Z INFO fork_choice_control::block_processor: Validating block with slot: 6571 +2024-09-30T08:11:28.274879Z INFO fork_choice_control::block_processor: Validating block with slot: 6573 +2024-09-30T08:11:28.276247Z INFO fork_choice_control::block_processor: Validating block with slot: 6574 +2024-09-30T08:11:28.276425Z INFO fork_choice_control::block_processor: Validating block with slot: 6575 +2024-09-30T08:11:28.279264Z INFO fork_choice_control::block_processor: Validating block with slot: 6576 +2024-09-30T08:11:28.279324Z INFO fork_choice_control::block_processor: Validating block with slot: 6581 +2024-09-30T08:11:28.279786Z INFO fork_choice_control::block_processor: Validating block with slot: 6582 +2024-09-30T08:11:28.280344Z INFO fork_choice_control::block_processor: Validating block with slot: 6583 +2024-09-30T08:11:28.280725Z INFO fork_choice_control::block_processor: Validating block with slot: 6584 +2024-09-30T08:11:28.281938Z INFO fork_choice_control::block_processor: Validating block with slot: 6585 +2024-09-30T08:11:28.282794Z INFO fork_choice_control::block_processor: Validating block with slot: 6586 +2024-09-30T08:11:28.288577Z INFO fork_choice_control::block_processor: Validating block with slot: 6587 +2024-09-30T08:11:28.290832Z INFO fork_choice_control::block_processor: Validating block with slot: 6588 +2024-09-30T08:11:28.291881Z INFO fork_choice_control::block_processor: Validating block with slot: 6590 +2024-09-30T08:11:28.292075Z INFO fork_choice_control::block_processor: Validating block with slot: 6577 +2024-09-30T08:11:28.292170Z INFO fork_choice_control::block_processor: Validating block with slot: 6578 +2024-09-30T08:11:28.292417Z INFO fork_choice_control::block_processor: Validating block with slot: 6579 +2024-09-30T08:11:28.293151Z INFO fork_choice_control::block_processor: Validating block with slot: 6589 +2024-09-30T08:11:28.293896Z INFO fork_choice_control::block_processor: Validating block with slot: 6580 +2024-09-30T08:11:28.307060Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6561 +2024-09-30T08:11:28.307123Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6561 +2024-09-30T08:11:28.319277Z INFO fork_choice_control::block_processor: Validating block with slot: 6562 +2024-09-30T08:11:28.320381Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0f2b3c6fda7a548a9a03abbde088feea4b326c750091dd38ce91ca553a11c187, slot: 6562 +2024-09-30T08:11:28.340902Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6562 +2024-09-30T08:11:28.340930Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6562 +2024-09-30T08:11:28.351947Z INFO fork_choice_control::block_processor: Validating block with slot: 6563 +2024-09-30T08:11:28.353353Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x54ccf6f086baa322b55b7272f35693ee6d1405cc08e4034c118e856aebf7566a, slot: 6563 +2024-09-30T08:11:28.378344Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6563 +2024-09-30T08:11:28.378364Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6563 +2024-09-30T08:11:28.389768Z INFO fork_choice_control::block_processor: Validating block with slot: 6564 +2024-09-30T08:11:28.390755Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x158a3da79e205fe3fb08159a2cca093d3bbf645b62daff863c1bbe48b61de8fd, slot: 6564 +2024-09-30T08:11:28.414235Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6564 +2024-09-30T08:11:28.414257Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6564 +2024-09-30T08:11:28.426741Z INFO fork_choice_control::block_processor: Validating block with slot: 6565 +2024-09-30T08:11:28.427866Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc91f158dc32407b4d9865fd2189b7218bfdb4423f952fb30645cca8ea95abdc3, slot: 6565 +2024-09-30T08:11:28.434975Z INFO fork_choice_control::block_processor: Validating block with slot: 6591 +2024-09-30T08:11:28.452014Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6565 +2024-09-30T08:11:28.452034Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6565 +2024-09-30T08:11:28.462956Z INFO fork_choice_control::block_processor: Validating block with slot: 6566 +2024-09-30T08:11:28.464210Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7d32572a386704cd55473e3cfcef5521bba07fd7beb44eea9182eb461fc73b1a, slot: 6566 +2024-09-30T08:11:28.483161Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6566 +2024-09-30T08:11:28.483182Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6566 +2024-09-30T08:11:28.494401Z INFO fork_choice_control::block_processor: Validating block with slot: 6567 +2024-09-30T08:11:28.495499Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeb872290e28b05e4fe16585e3f16101deb90b7b81caffe02c382481a032e5cb6, slot: 6567 +2024-09-30T08:11:28.512178Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6567 +2024-09-30T08:11:28.512194Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6567 +2024-09-30T08:11:28.523852Z INFO fork_choice_control::block_processor: Validating block with slot: 6568 +2024-09-30T08:11:28.524996Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0b90791a2b1f973304e1ef665af8901f2ae7200418d5b0901b350063c0e6a121, slot: 6568 +2024-09-30T08:11:28.544867Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6568 +2024-09-30T08:11:28.544882Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6568 +2024-09-30T08:11:28.556733Z INFO fork_choice_control::block_processor: Validating block with slot: 6569 +2024-09-30T08:11:28.559384Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd692cc9b5ff1eb738c6aef2673bae6a566cace8a8f1947112f265f25c0880dcb, slot: 6569 +2024-09-30T08:11:28.580276Z INFO runtime::runtime: saving current chain before exit… +2024-09-30T08:11:28.589053Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6569 +2024-09-30T08:11:28.589077Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6569 +2024-09-30T08:11:28.727311Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 6496 +2024-09-30T08:11:28.890846Z INFO fork_choice_control::mutator: chain saved (finalized blocks: 1, unfinalized blocks: 68) +2024-09-30T08:45:32.778674Z INFO logging: Tracing initialized successfully. +2024-09-30T08:45:32.781426Z INFO grandine: Grandine firing up... +2024-09-30T08:45:32.889144Z INFO grandine: starting beacon node +2024-09-30T08:45:32.890039Z INFO grandine::grandine_config: network: mainnet +2024-09-30T08:45:32.890061Z INFO grandine::grandine_config: data directory: "/Users/mercynaps/.grandine/mainnet" +2024-09-30T08:45:32.890074Z INFO grandine::grandine_config: Eth2 database upper limit: 256.0 GiB +2024-09-30T08:45:32.890177Z INFO grandine::grandine_config: Eth1 database upper limit: 16.0 GiB +2024-09-30T08:45:32.891166Z INFO grandine::grandine_config: Eth1 RPC URLs: [] +2024-09-30T08:45:32.892547Z INFO grandine::grandine_config: graffiti: [0x4772616e64696e652f302e342e312d3138613435663700000000000000000000] +2024-09-30T08:45:32.892576Z INFO grandine::grandine_config: HTTP API address: 127.0.0.1:5052 +2024-09-30T08:45:32.892585Z INFO grandine::grandine_config: validator API disabled +2024-09-30T08:45:32.892593Z INFO grandine::grandine_config: archival interval: 32 epochs +2024-09-30T08:45:32.892836Z INFO grandine::grandine_config: slasher enabled: false +2024-09-30T08:45:32.893102Z INFO grandine::grandine_config: client version: Grandine/0.4.1-18a45f7/aarch64-macos +2024-09-30T08:45:32.893205Z INFO grandine::grandine_config: suggested fee recipient: 0xe7cf…1f1b +2024-09-30T08:45:32.893221Z INFO grandine::grandine_config: back sync enabled: false +2024-09-30T08:45:32.937224Z INFO database: database: /Users/mercynaps/.grandine/mainnet/beacon/eth1_cache with name eth1 +2024-09-30T08:45:34.512993Z INFO database: database: /Users/mercynaps/.grandine/mainnet/beacon/beacon_fork_choice with name beacon_fork_choice +2024-09-30T08:45:34.653081Z INFO fork_choice_control::storage: loaded state at slot 6496 +2024-09-30T08:45:36.820687Z INFO fork_choice_store::state_cache_processor: Creating new StateCacheProcessor with lock timeout of 1.5s +2024-09-30T08:45:36.952685Z INFO fork_choice_control::block_processor: Validating block with slot: 6497 +2024-09-30T08:45:36.956551Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x18a782d4b464d98cc873dd0b3f12ae7d51a67926462af8083e31a6d8fa6981a6, slot: 6497 +2024-09-30T08:45:37.113274Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6497 +2024-09-30T08:45:37.113304Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6497 +2024-09-30T08:45:37.127168Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:45:37.129259Z INFO fork_choice_control::block_processor: Validating block with slot: 6499 +2024-09-30T08:45:37.131820Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x600e6ecf0770977287941b404ae23536a4a3ebfb8480fc7556c744533895e5f4, slot: 6499 +2024-09-30T08:45:37.140972Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6499 +2024-09-30T08:45:37.140983Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6499 +2024-09-30T08:45:37.152720Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:45:37.152948Z INFO fork_choice_control::block_processor: Validating block with slot: 6500 +2024-09-30T08:45:37.154025Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc7824fd7a451a95ed28a19084a445f2bc264d2f2da79cfd398e293f9c1870609, slot: 6500 +2024-09-30T08:45:37.156696Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6500 +2024-09-30T08:45:37.156706Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6500 +2024-09-30T08:45:37.168845Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:45:37.169127Z INFO fork_choice_control::block_processor: Validating block with slot: 6501 +2024-09-30T08:45:37.171719Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x79ddbc6e14da1cda20bcbaf99e0f666627280f62e6ed4d2ed02797a9919ca0dd, slot: 6501 +2024-09-30T08:45:37.177210Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6501 +2024-09-30T08:45:37.177249Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6501 +2024-09-30T08:45:37.189396Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:45:37.189631Z INFO fork_choice_control::block_processor: Validating block with slot: 6502 +2024-09-30T08:45:37.190966Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x202410905b4d9649bb066c19c593e17bb071ebeba3b986d458ef275b255c1cac, slot: 6502 +2024-09-30T08:45:37.194318Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6502 +2024-09-30T08:45:37.194340Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6502 +2024-09-30T08:45:37.206574Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:45:37.206788Z INFO fork_choice_control::block_processor: Validating block with slot: 6503 +2024-09-30T08:45:37.207881Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x472ef41416dcc518c4b0f5792b24a47251a11c5869331df0ad44c9f50308a7f8, slot: 6503 +2024-09-30T08:45:37.210680Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6503 +2024-09-30T08:45:37.210697Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6503 +2024-09-30T08:45:37.222991Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:45:37.223201Z INFO fork_choice_control::block_processor: Validating block with slot: 6504 +2024-09-30T08:45:37.224135Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4b7126e20efc4cb34f58188e7540f07a94ca53c8c6a6ec27ff6ae93e2b8c5f32, slot: 6504 +2024-09-30T08:45:37.226677Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6504 +2024-09-30T08:45:37.226694Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6504 +2024-09-30T08:45:37.239203Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:45:37.239419Z INFO fork_choice_control::block_processor: Validating block with slot: 6505 +2024-09-30T08:45:37.240479Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd9d38dbda62448688c1cf6c654098888df606f0f70668dff93ede3ed68268959, slot: 6505 +2024-09-30T08:45:37.243227Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6505 +2024-09-30T08:45:37.243248Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6505 +2024-09-30T08:45:37.255955Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:45:37.256196Z INFO fork_choice_control::block_processor: Validating block with slot: 6506 +2024-09-30T08:45:37.257399Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x99786fa32381617c3d0c5874032a9806005f2aadaa5f00da0c6ed65a77d95879, slot: 6506 +2024-09-30T08:45:37.260509Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6506 +2024-09-30T08:45:37.260529Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6506 +2024-09-30T08:45:37.273368Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:45:37.273602Z INFO fork_choice_control::block_processor: Validating block with slot: 6507 +2024-09-30T08:45:37.274855Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x355734d18be463eb6bd1c9e24b0b7e5fbc7f7cba042342928d13fc265db0884a, slot: 6507 +2024-09-30T08:45:37.277963Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6507 +2024-09-30T08:45:37.277985Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6507 +2024-09-30T08:45:37.291064Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:45:37.291363Z INFO fork_choice_control::block_processor: Validating block with slot: 6508 +2024-09-30T08:45:37.295192Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8d9ed3d03e42481308963282195c1c5854ac8f53f4af7992fca6269812d8582a, slot: 6508 +2024-09-30T08:45:37.302918Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6508 +2024-09-30T08:45:37.302928Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6508 +2024-09-30T08:45:37.317103Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:45:37.317353Z INFO fork_choice_control::block_processor: Validating block with slot: 6509 +2024-09-30T08:45:37.318986Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x381f73a24c9c21d8dab59dea3638afe7e0980de38f7bb19f0db55053825f16ef, slot: 6509 +2024-09-30T08:45:37.322626Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6509 +2024-09-30T08:45:37.322636Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6509 +2024-09-30T08:45:37.337156Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:45:37.337378Z INFO fork_choice_control::block_processor: Validating block with slot: 6510 +2024-09-30T08:45:37.338451Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaa68e76e96ce38185455434cf5740a3bcfb1baf3d766b2033a8d00ed6cad5523, slot: 6510 +2024-09-30T08:45:37.341100Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6510 +2024-09-30T08:45:37.341109Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6510 +2024-09-30T08:45:37.355833Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:45:37.356140Z INFO fork_choice_control::block_processor: Validating block with slot: 6511 +2024-09-30T08:45:37.357376Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x76ebd8138199770b0065d021b71d0673ac31adfebb752efcfface7a37a27e309, slot: 6511 +2024-09-30T08:45:37.360445Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6511 +2024-09-30T08:45:37.360468Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6511 +2024-09-30T08:45:37.375086Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:45:37.375339Z INFO fork_choice_control::block_processor: Validating block with slot: 6512 +2024-09-30T08:45:37.376320Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3d58bb3b693cbc3c45b914c235502ec6407aa3907bdb4694ad27add8e442490b, slot: 6512 +2024-09-30T08:45:37.378918Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6512 +2024-09-30T08:45:37.378941Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6512 +2024-09-30T08:45:37.393521Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:45:37.393771Z INFO fork_choice_control::block_processor: Validating block with slot: 6513 +2024-09-30T08:45:37.395176Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xefb3481c684c39894c94c43bf72ac36f839a069cc53a150ec9935391bd779238, slot: 6513 +2024-09-30T08:45:37.398342Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6513 +2024-09-30T08:45:37.398352Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6513 +2024-09-30T08:45:37.413585Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:45:37.413867Z INFO fork_choice_control::block_processor: Validating block with slot: 6514 +2024-09-30T08:45:37.415641Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd62be35cf3b8b11cc7ffd021baa33efc6b9b9230975d954bf870c87eae03f978, slot: 6514 +2024-09-30T08:45:37.419455Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6514 +2024-09-30T08:45:37.419465Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6514 +2024-09-30T08:45:37.434943Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:45:37.435166Z INFO fork_choice_control::block_processor: Validating block with slot: 6515 +2024-09-30T08:45:37.436102Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb5c18d27c0cde4f8da625e35b2b11515fc0dc15534170a0594cef1627a14fa95, slot: 6515 +2024-09-30T08:45:37.438507Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6515 +2024-09-30T08:45:37.438516Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6515 +2024-09-30T08:45:37.454173Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:45:37.454381Z INFO fork_choice_control::block_processor: Validating block with slot: 6516 +2024-09-30T08:45:37.455316Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf7e988d3fc6fe4d4ea1ca2acf23e6a410e3c30d3d046ffa11359fdc6c478ce8b, slot: 6516 +2024-09-30T08:45:37.457775Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6516 +2024-09-30T08:45:37.457787Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6516 +2024-09-30T08:45:37.473576Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:45:37.473857Z INFO fork_choice_control::block_processor: Validating block with slot: 6517 +2024-09-30T08:45:37.475097Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8c9fee965865731113f59ac833e6b83aed3d43a51e68fbd2bba3991574e640be, slot: 6517 +2024-09-30T08:45:37.478233Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6517 +2024-09-30T08:45:37.478253Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6517 +2024-09-30T08:45:37.494122Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:45:37.494371Z INFO fork_choice_control::block_processor: Validating block with slot: 6518 +2024-09-30T08:45:37.495478Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa4c3db28e226cb990e7e38d58c82c9a936c6818850230e1b8f94f9074d35db01, slot: 6518 +2024-09-30T08:45:37.498123Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6518 +2024-09-30T08:45:37.498135Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6518 +2024-09-30T08:45:37.514332Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6496) +2024-09-30T08:45:37.514591Z INFO fork_choice_control::block_processor: Validating block with slot: 6519 +2024-09-30T08:45:37.517165Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5fe106104fa990e93e38578bca6a488ed12ebe87d5bb8aae9e23c2c8fc509964, slot: 6519 +2024-09-30T08:45:37.522452Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6519 +2024-09-30T08:45:37.522462Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6519 +2024-09-30T08:45:37.540551Z INFO fork_choice_control::block_processor: Validating block with slot: 6520 +2024-09-30T08:45:37.542454Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x09b2bcae86ade36198b6862fc79c5bd71f89af173cfb4ce751c055a44d660014, slot: 6520 +2024-09-30T08:45:37.546397Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6520 +2024-09-30T08:45:37.546412Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6520 +2024-09-30T08:45:37.564798Z INFO fork_choice_control::block_processor: Validating block with slot: 6521 +2024-09-30T08:45:37.565873Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1e44711d90dbed3084a0cb2873692a8a024a2599a5a95c612dcac221522d757a, slot: 6521 +2024-09-30T08:45:37.568375Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6521 +2024-09-30T08:45:37.568386Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6521 +2024-09-30T08:45:37.585508Z INFO fork_choice_control::block_processor: Validating block with slot: 6522 +2024-09-30T08:45:37.586583Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x07203abd4ad4e3ab64b8b221595672729ec1f659276ba3830dae76aa4cd36b45, slot: 6522 +2024-09-30T08:45:37.589225Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6522 +2024-09-30T08:45:37.589236Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6522 +2024-09-30T08:45:37.606570Z INFO fork_choice_control::block_processor: Validating block with slot: 6523 +2024-09-30T08:45:37.609846Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x014e91adc721610700db673f76ae19ef8f36f51abbde7f8d716ae94f50fb06c7, slot: 6523 +2024-09-30T08:45:37.616322Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6523 +2024-09-30T08:45:37.616338Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6523 +2024-09-30T08:45:37.634227Z INFO fork_choice_control::block_processor: Validating block with slot: 6524 +2024-09-30T08:45:37.636520Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2c608a453ca9010a367cb2967fc75ec41b5617997f8c11810cc93cdfef9a89c1, slot: 6524 +2024-09-30T08:45:37.641218Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6524 +2024-09-30T08:45:37.641228Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6524 +2024-09-30T08:45:37.659362Z INFO fork_choice_control::block_processor: Validating block with slot: 6525 +2024-09-30T08:45:37.660478Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5eaa4f7bfcc1e95547b55490aaaf5d768902f8afcb51e2f644835fa96e36f9d4, slot: 6525 +2024-09-30T08:45:37.663222Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6525 +2024-09-30T08:45:37.663235Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6525 +2024-09-30T08:45:37.681814Z INFO fork_choice_control::block_processor: Validating block with slot: 6526 +2024-09-30T08:45:37.683050Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4a2873f10fafb5ccd8d2324f9fea824d37a32627f5f924a469e209676e66939b, slot: 6526 +2024-09-30T08:45:37.685974Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6526 +2024-09-30T08:45:37.685984Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6526 +2024-09-30T08:45:37.704668Z INFO fork_choice_control::block_processor: Validating block with slot: 6529 +2024-09-30T08:45:37.706961Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbe745cf628c1e9c35684dc85afab706e15e5f0b77832028d009692037d11d138, slot: 6529 +2024-09-30T08:45:37.905358Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6529 +2024-09-30T08:45:37.905379Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6529 +2024-09-30T08:45:37.917339Z INFO fork_choice_control::block_processor: Validating block with slot: 6530 +2024-09-30T08:45:37.919946Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x38311a98d183ce9138ec72ea47df0478f489bdcee3a43a186591a8d6c4370069, slot: 6530 +2024-09-30T08:45:37.925266Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6530 +2024-09-30T08:45:37.925281Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6530 +2024-09-30T08:45:37.937434Z INFO fork_choice_control::block_processor: Validating block with slot: 6531 +2024-09-30T08:45:37.938797Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1cd5def9aea9d21a9d36fd4eb748b4ededbf09ffdac67f27e1cc9e2a93bee2fc, slot: 6531 +2024-09-30T08:45:37.942156Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6531 +2024-09-30T08:45:37.942169Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6531 +2024-09-30T08:45:37.954638Z INFO fork_choice_control::block_processor: Validating block with slot: 6532 +2024-09-30T08:45:37.955738Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2e4343d01f809eac5512ae0274efa2dabf8af6feeb92ebc0c971420202de1046, slot: 6532 +2024-09-30T08:45:37.958534Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6532 +2024-09-30T08:45:37.958556Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6532 +2024-09-30T08:45:37.971053Z INFO fork_choice_control::block_processor: Validating block with slot: 6533 +2024-09-30T08:45:37.972011Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x61b73c9eddb9ec2fcfca0477119c1ed193b6b896e376573d42335311f95108b4, slot: 6533 +2024-09-30T08:45:37.974457Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6533 +2024-09-30T08:45:37.974467Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6533 +2024-09-30T08:45:37.988062Z INFO fork_choice_control::block_processor: Validating block with slot: 6534 +2024-09-30T08:45:37.989732Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd7cdf5af7e913587bb6286c6f35bcb7e53edc9947663cc690851faa8649eadfa, slot: 6534 +2024-09-30T08:45:37.993522Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6534 +2024-09-30T08:45:37.993542Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6534 +2024-09-30T08:45:38.006187Z INFO fork_choice_control::block_processor: Validating block with slot: 6535 +2024-09-30T08:45:38.008379Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x57363ff50df11d1d9c759bad7ce64284b844bf07ce24aae7dedb11912fb9ed8b, slot: 6535 +2024-09-30T08:45:38.013167Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6535 +2024-09-30T08:45:38.013189Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6535 +2024-09-30T08:45:38.026648Z INFO fork_choice_control::block_processor: Validating block with slot: 6536 +2024-09-30T08:45:38.028052Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe8ec1ef36e140db24080c88857104df58615315a0430c842bb6490a89b62ad06, slot: 6536 +2024-09-30T08:45:38.031248Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6536 +2024-09-30T08:45:38.031259Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6536 +2024-09-30T08:45:38.045122Z INFO fork_choice_control::block_processor: Validating block with slot: 6537 +2024-09-30T08:45:38.046281Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x75d9fe69e31935396b40fab73cb6c74d5629ca7fd7ef50f84cafc0fa5584ad88, slot: 6537 +2024-09-30T08:45:38.049234Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6537 +2024-09-30T08:45:38.049251Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6537 +2024-09-30T08:45:38.065653Z INFO fork_choice_control::block_processor: Validating block with slot: 6538 +2024-09-30T08:45:38.066636Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6e2df881099d89bc540d8d890bdab970a74081fecbb6453f8495e1726c133cf8, slot: 6538 +2024-09-30T08:45:38.069216Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6538 +2024-09-30T08:45:38.069234Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6538 +2024-09-30T08:45:38.084768Z INFO fork_choice_control::block_processor: Validating block with slot: 6539 +2024-09-30T08:45:38.085745Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbab99878f423d0002140f60972bfbb6213c3e77ea9e63cf50dc79a395999a3b7, slot: 6539 +2024-09-30T08:45:38.088368Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6539 +2024-09-30T08:45:38.088382Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6539 +2024-09-30T08:45:38.103055Z INFO fork_choice_control::block_processor: Validating block with slot: 6540 +2024-09-30T08:45:38.104710Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfaa475a1ae8906c38a079a82926158b6584c1c15cde6c8b1d0909dc2dbd01569, slot: 6540 +2024-09-30T08:45:38.108382Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6540 +2024-09-30T08:45:38.108395Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6540 +2024-09-30T08:45:38.122584Z INFO fork_choice_control::block_processor: Validating block with slot: 6541 +2024-09-30T08:45:38.124341Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x34e0bcb68035179017b342cde2ccfc0061b144a05ddb30ff4e76aee516472623, slot: 6541 +2024-09-30T08:45:38.128423Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6541 +2024-09-30T08:45:38.128445Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6541 +2024-09-30T08:45:38.143054Z INFO fork_choice_control::block_processor: Validating block with slot: 6542 +2024-09-30T08:45:38.144654Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x70feeccf4da49c039ac1c6ae169bdd6bc72175e5a835126a7090234da2907661, slot: 6542 +2024-09-30T08:45:38.148061Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6542 +2024-09-30T08:45:38.148075Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6542 +2024-09-30T08:45:38.162924Z INFO fork_choice_control::block_processor: Validating block with slot: 6543 +2024-09-30T08:45:38.164272Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xef33bc74c6e78209e8de11a6caf65c373d599f3fa038a824ce3bd161d3a57aad, slot: 6543 +2024-09-30T08:45:38.167431Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6543 +2024-09-30T08:45:38.167441Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6543 +2024-09-30T08:45:38.182768Z INFO fork_choice_control::block_processor: Validating block with slot: 6544 +2024-09-30T08:45:38.183719Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x19fd7d9dc8500a05537eebc1b795dfb096a8ca79f74b978e64919f8cb8030cbb, slot: 6544 +2024-09-30T08:45:38.186211Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6544 +2024-09-30T08:45:38.186223Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6544 +2024-09-30T08:45:38.202258Z INFO fork_choice_control::block_processor: Validating block with slot: 6545 +2024-09-30T08:45:38.203204Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa69a37f303e0f3c0aeafd900ecf30d2a6fc15723210618d83af3085fa02a315d, slot: 6545 +2024-09-30T08:45:38.205623Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6545 +2024-09-30T08:45:38.205633Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6545 +2024-09-30T08:45:38.221068Z INFO fork_choice_control::block_processor: Validating block with slot: 6546 +2024-09-30T08:45:38.222021Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3be447134eb369a50c9f0a817ade6d7b25b875e3781c26d43dbc70351babe539, slot: 6546 +2024-09-30T08:45:38.224453Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6546 +2024-09-30T08:45:38.224466Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6546 +2024-09-30T08:45:38.239747Z INFO fork_choice_control::block_processor: Validating block with slot: 6547 +2024-09-30T08:45:38.240959Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xed66d86cfb9fe29804e4cd15c3bc770afd0a083738f13baf5b8652b2550947ac, slot: 6547 +2024-09-30T08:45:38.244066Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6547 +2024-09-30T08:45:38.244089Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6547 +2024-09-30T08:45:38.259731Z INFO fork_choice_control::block_processor: Validating block with slot: 6548 +2024-09-30T08:45:38.260712Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x23190d75b59a0b87ac320c6a97dc8ca09f63d08feeb4134df3e2ecd04e3937ea, slot: 6548 +2024-09-30T08:45:38.263168Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6548 +2024-09-30T08:45:38.263179Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6548 +2024-09-30T08:45:38.279255Z INFO fork_choice_control::block_processor: Validating block with slot: 6549 +2024-09-30T08:45:38.280490Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbbbfe8a566edcb37f493041ba6567861983999e75a1a0f2a3168938ef6414542, slot: 6549 +2024-09-30T08:45:38.283415Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6549 +2024-09-30T08:45:38.283425Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6549 +2024-09-30T08:45:38.299955Z INFO fork_choice_control::block_processor: Validating block with slot: 6550 +2024-09-30T08:45:38.301168Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbf104d2e59748abf4300c6d903c48e935450e2a9d0552264cc20b5b6940e71f8, slot: 6550 +2024-09-30T08:45:38.304096Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6550 +2024-09-30T08:45:38.304107Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6550 +2024-09-30T08:45:38.320794Z INFO fork_choice_control::block_processor: Validating block with slot: 6552 +2024-09-30T08:45:38.322691Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x278cc6c02c23449862e916e78e2a10976b6e4805e8d43844fe220bbede19888d, slot: 6552 +2024-09-30T08:45:38.349871Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6552 +2024-09-30T08:45:38.349890Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6552 +2024-09-30T08:45:38.367391Z INFO fork_choice_control::block_processor: Validating block with slot: 6553 +2024-09-30T08:45:38.369537Z INFO fork_choice_control::block_processor: Validating block with slot: 6554 +2024-09-30T08:45:38.370933Z INFO fork_choice_control::block_processor: Validating block with slot: 6555 +2024-09-30T08:45:38.372328Z INFO fork_choice_control::block_processor: Validating block with slot: 6556 +2024-09-30T08:45:38.373897Z INFO fork_choice_control::block_processor: Validating block with slot: 6557 +2024-09-30T08:45:38.375078Z INFO fork_choice_control::block_processor: Validating block with slot: 6558 +2024-09-30T08:45:38.376688Z INFO fork_choice_control::block_processor: Validating block with slot: 6559 +2024-09-30T08:45:38.377741Z INFO fork_choice_control::block_processor: Validating block with slot: 6560 +2024-09-30T08:45:38.379586Z INFO fork_choice_control::block_processor: Validating block with slot: 6561 +2024-09-30T08:45:38.380837Z INFO fork_choice_control::block_processor: Validating block with slot: 6562 +2024-09-30T08:45:38.381950Z INFO fork_choice_control::block_processor: Validating block with slot: 6563 +2024-09-30T08:45:38.383323Z INFO fork_choice_control::block_processor: Validating block with slot: 6564 +2024-09-30T08:45:38.384294Z INFO fork_choice_control::block_processor: Validating block with slot: 6565 +2024-09-30T08:45:38.385404Z INFO fork_choice_control::block_processor: Validating block with slot: 6566 +2024-09-30T08:45:38.386690Z INFO fork_choice_control::block_processor: Validating block with slot: 6567 +2024-09-30T08:45:38.387756Z INFO fork_choice_control::block_processor: Validating block with slot: 6568 +2024-09-30T08:45:38.392121Z INFO database: database: /Users/mercynaps/.grandine/mainnet/beacon/sync with name sync +2024-09-30T08:45:38.396970Z INFO database: database: /Users/mercynaps/.grandine/mainnet/validator with name proposer-configs +2024-09-30T08:45:38.443035Z INFO discv5::service: Discv5 Service started mode=Ip4 +2024-09-30T08:45:38.475259Z INFO fork_choice_control::block_processor: Validating block with slot: 6553 +2024-09-30T08:45:38.477407Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1c80383b38004f36d876e20b90e72166e89e1e56ebe006c038bfc904b168a5a3, slot: 6553 +2024-09-30T08:45:38.480264Z INFO libp2p_swarm: local_peer_id=16Uiu2HAm1MjWUF4J3qsovL8Wzccfuzy28tTQ8dmA2sazksHeR3bs +2024-09-30T08:45:38.482094Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6553 +2024-09-30T08:45:38.482105Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6553 +2024-09-30T08:45:38.499693Z INFO fork_choice_control::block_processor: Validating block with slot: 6554 +2024-09-30T08:45:38.501103Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xde5812344a0f5366b21c05f958c6d99b0cecf6cc5acf30d562cf3b9c87df5bc3, slot: 6554 +2024-09-30T08:45:38.504455Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6554 +2024-09-30T08:45:38.504467Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6554 +2024-09-30T08:45:38.521575Z INFO fork_choice_control::block_processor: Validating block with slot: 6555 +2024-09-30T08:45:38.522958Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x421b4dc520c371a7fcfec60b77a39a40f5f600064ccdae7497b8c3b1f0669154, slot: 6555 +2024-09-30T08:45:38.526291Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6555 +2024-09-30T08:45:38.526309Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6555 +2024-09-30T08:45:38.543639Z INFO fork_choice_control::block_processor: Validating block with slot: 6556 +2024-09-30T08:45:38.545061Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8b82c4e91ffdb03a88f0ff278252254fccada933855d6e959d229a3e0cd93218, slot: 6556 +2024-09-30T08:45:38.548261Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6556 +2024-09-30T08:45:38.548271Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6556 +2024-09-30T08:45:38.566090Z INFO fork_choice_control::block_processor: Validating block with slot: 6557 +2024-09-30T08:45:38.567192Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfda51aab6bc5ce4eefeb2827b643ae8dc65cb1ce0b78bd90e9fdaca8543a081d, slot: 6557 +2024-09-30T08:45:38.569892Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6557 +2024-09-30T08:45:38.569901Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6557 +2024-09-30T08:45:38.587620Z INFO fork_choice_control::block_processor: Validating block with slot: 6558 +2024-09-30T08:45:38.589156Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6217cb42cde0d3669147a3d893971c8add095c6557965755a6d50dea96333f4c, slot: 6558 +2024-09-30T08:45:38.592769Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6558 +2024-09-30T08:45:38.592787Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6558 +2024-09-30T08:45:38.611369Z INFO fork_choice_control::block_processor: Validating block with slot: 6559 +2024-09-30T08:45:38.612359Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb9ba2a43f1a4dc3c214ca20002aeebc17738fa7171dad792fecabe7b2e86945c, slot: 6559 +2024-09-30T08:45:38.614786Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6559 +2024-09-30T08:45:38.614796Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6559 +2024-09-30T08:45:38.632943Z INFO fork_choice_control::block_processor: Validating block with slot: 6560 +2024-09-30T08:45:38.634739Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x04d0411d90dfdb5cecb7d4853cab69dff1dd0b2a80a360d541a974e710fda32e, slot: 6560 +2024-09-30T08:45:38.684352Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6560 +2024-09-30T08:45:38.684374Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6560 +2024-09-30T08:45:38.695737Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6560) +2024-09-30T08:45:38.695841Z INFO fork_choice_control::block_processor: Validating block with slot: 6561 +2024-09-30T08:45:38.697060Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x538008c59da3c944e971f075ed6b8010e4c045e85f8ad7bd52616110ed81ea85, slot: 6561 +2024-09-30T08:45:38.766522Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6561 +2024-09-30T08:45:38.766544Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6561 +2024-09-30T08:45:38.776973Z INFO fork_choice_control::block_processor: Validating block with slot: 6562 +2024-09-30T08:45:38.778124Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0f2b3c6fda7a548a9a03abbde088feea4b326c750091dd38ce91ca553a11c187, slot: 6562 +2024-09-30T08:45:38.780856Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6562 +2024-09-30T08:45:38.780867Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6562 +2024-09-30T08:45:38.791347Z INFO fork_choice_control::block_processor: Validating block with slot: 6563 +2024-09-30T08:45:38.792747Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x54ccf6f086baa322b55b7272f35693ee6d1405cc08e4034c118e856aebf7566a, slot: 6563 +2024-09-30T08:45:38.796095Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6563 +2024-09-30T08:45:38.796112Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6563 +2024-09-30T08:45:38.807031Z INFO fork_choice_control::block_processor: Validating block with slot: 6564 +2024-09-30T08:45:38.808017Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x158a3da79e205fe3fb08159a2cca093d3bbf645b62daff863c1bbe48b61de8fd, slot: 6564 +2024-09-30T08:45:38.810911Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6564 +2024-09-30T08:45:38.810932Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6564 +2024-09-30T08:45:38.822226Z INFO fork_choice_control::block_processor: Validating block with slot: 6565 +2024-09-30T08:45:38.823415Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc91f158dc32407b4d9865fd2189b7218bfdb4423f952fb30645cca8ea95abdc3, slot: 6565 +2024-09-30T08:45:38.826314Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6565 +2024-09-30T08:45:38.826332Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6565 +2024-09-30T08:45:38.837647Z INFO fork_choice_control::block_processor: Validating block with slot: 6566 +2024-09-30T08:45:38.838904Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7d32572a386704cd55473e3cfcef5521bba07fd7beb44eea9182eb461fc73b1a, slot: 6566 +2024-09-30T08:45:38.841983Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6566 +2024-09-30T08:45:38.841997Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6566 +2024-09-30T08:45:38.853778Z INFO fork_choice_control::block_processor: Validating block with slot: 6567 +2024-09-30T08:45:38.854870Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeb872290e28b05e4fe16585e3f16101deb90b7b81caffe02c382481a032e5cb6, slot: 6567 +2024-09-30T08:45:38.857551Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6567 +2024-09-30T08:45:38.857561Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6567 +2024-09-30T08:45:38.870777Z INFO fork_choice_control::block_processor: Validating block with slot: 6568 +2024-09-30T08:45:38.871886Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0b90791a2b1f973304e1ef665af8901f2ae7200418d5b0901b350063c0e6a121, slot: 6568 +2024-09-30T08:45:38.874684Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6568 +2024-09-30T08:45:38.874693Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6568 +2024-09-30T08:45:48.526601Z INFO http_api::task: HTTP server listening on 127.0.0.1:5052 +2024-09-30T08:45:52.526349Z WARN discv5::service: FINDNODE request failed with partial results node_id=0x3f26..1ff2 addr=64.130.50.188:30303 error=Timeout received=11 expected=3 +2024-09-30T08:45:52.655394Z INFO fork_choice_control::block_processor: Validating block with slot: 6697 +2024-09-30T08:45:52.655434Z INFO fork_choice_control::block_processor: Validating block with slot: 6698 +2024-09-30T08:45:52.677830Z INFO fork_choice_control::block_processor: Validating block with slot: 6699 +2024-09-30T08:45:52.729139Z INFO fork_choice_control::block_processor: Validating block with slot: 6700 +2024-09-30T08:45:52.729144Z INFO fork_choice_control::block_processor: Validating block with slot: 6701 +2024-09-30T08:45:52.740506Z INFO fork_choice_control::block_processor: Validating block with slot: 6702 +2024-09-30T08:45:52.868602Z INFO fork_choice_control::block_processor: Validating block with slot: 6703 +2024-09-30T08:45:52.868614Z INFO fork_choice_control::block_processor: Validating block with slot: 6704 +2024-09-30T08:45:52.868653Z INFO fork_choice_control::block_processor: Validating block with slot: 6707 +2024-09-30T08:45:52.868697Z INFO fork_choice_control::block_processor: Validating block with slot: 6706 +2024-09-30T08:45:52.868717Z INFO fork_choice_control::block_processor: Validating block with slot: 6705 +2024-09-30T08:45:52.967183Z INFO fork_choice_control::block_processor: Validating block with slot: 6708 +2024-09-30T08:45:52.991434Z INFO fork_choice_control::block_processor: Validating block with slot: 6709 +2024-09-30T08:45:52.991440Z INFO fork_choice_control::block_processor: Validating block with slot: 6710 +2024-09-30T08:45:53.005148Z INFO fork_choice_control::block_processor: Validating block with slot: 6711 +2024-09-30T08:45:53.009612Z INFO fork_choice_control::block_processor: Validating block with slot: 6712 +2024-09-30T08:45:53.025875Z INFO fork_choice_control::block_processor: Validating block with slot: 6713 +2024-09-30T08:45:53.037490Z INFO fork_choice_control::block_processor: Validating block with slot: 6715 +2024-09-30T08:45:53.068427Z INFO fork_choice_control::block_processor: Validating block with slot: 6717 +2024-09-30T08:45:53.068436Z INFO fork_choice_control::block_processor: Validating block with slot: 6716 +2024-09-30T08:45:53.094518Z INFO fork_choice_control::block_processor: Validating block with slot: 6718 +2024-09-30T08:45:53.095782Z INFO fork_choice_control::block_processor: Validating block with slot: 6719 +2024-09-30T08:45:53.103866Z INFO fork_choice_control::block_processor: Validating block with slot: 6720 +2024-09-30T08:45:53.158059Z INFO fork_choice_control::block_processor: Validating block with slot: 6721 +2024-09-30T08:45:53.183634Z INFO fork_choice_control::block_processor: Validating block with slot: 6723 +2024-09-30T08:45:53.183631Z INFO fork_choice_control::block_processor: Validating block with slot: 6722 +2024-09-30T08:45:53.209871Z INFO fork_choice_control::block_processor: Validating block with slot: 6725 +2024-09-30T08:45:53.209874Z INFO fork_choice_control::block_processor: Validating block with slot: 6724 +2024-09-30T08:45:53.257413Z INFO fork_choice_control::block_processor: Validating block with slot: 6726 +2024-09-30T08:45:53.289001Z INFO fork_choice_control::block_processor: Validating block with slot: 6728 +2024-09-30T08:45:53.289005Z INFO fork_choice_control::block_processor: Validating block with slot: 6727 +2024-09-30T08:45:53.306350Z INFO fork_choice_control::block_processor: Validating block with slot: 6729 +2024-09-30T08:45:53.306367Z INFO fork_choice_control::block_processor: Validating block with slot: 6730 +2024-09-30T08:45:53.310844Z INFO fork_choice_control::block_processor: Validating block with slot: 6731 +2024-09-30T08:45:53.325914Z INFO fork_choice_control::block_processor: Validating block with slot: 6733 +2024-09-30T08:45:53.325917Z INFO fork_choice_control::block_processor: Validating block with slot: 6732 +2024-09-30T08:45:53.337029Z INFO fork_choice_control::block_processor: Validating block with slot: 6734 +2024-09-30T08:45:53.366098Z INFO fork_choice_control::block_processor: Validating block with slot: 6736 +2024-09-30T08:45:53.381188Z INFO fork_choice_control::block_processor: Validating block with slot: 6737 +2024-09-30T08:45:53.388266Z INFO fork_choice_control::block_processor: Validating block with slot: 6738 +2024-09-30T08:45:53.432192Z INFO fork_choice_control::block_processor: Validating block with slot: 6739 +2024-09-30T08:45:53.432189Z INFO fork_choice_control::block_processor: Validating block with slot: 6740 +2024-09-30T08:45:53.478828Z INFO fork_choice_control::block_processor: Validating block with slot: 6741 +2024-09-30T08:45:53.478830Z INFO fork_choice_control::block_processor: Validating block with slot: 6633 +2024-09-30T08:45:53.478830Z INFO fork_choice_control::block_processor: Validating block with slot: 6742 +2024-09-30T08:45:53.478841Z INFO fork_choice_control::block_processor: Validating block with slot: 6569 +2024-09-30T08:45:53.481722Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd692cc9b5ff1eb738c6aef2673bae6a566cace8a8f1947112f265f25c0880dcb, slot: 6569 +2024-09-30T08:45:53.504460Z INFO fork_choice_control::block_processor: Validating block with slot: 6744 +2024-09-30T08:45:53.504485Z INFO fork_choice_control::block_processor: Validating block with slot: 6745 +2024-09-30T08:45:53.504626Z INFO fork_choice_control::block_processor: Validating block with slot: 6743 +2024-09-30T08:45:53.552775Z INFO fork_choice_control::block_processor: Validating block with slot: 6747 +2024-09-30T08:45:53.552780Z INFO fork_choice_control::block_processor: Validating block with slot: 6748 +2024-09-30T08:45:53.552792Z INFO fork_choice_control::block_processor: Validating block with slot: 6749 +2024-09-30T08:45:53.552807Z INFO fork_choice_control::block_processor: Validating block with slot: 6750 +2024-09-30T08:45:53.552812Z INFO fork_choice_control::block_processor: Validating block with slot: 6751 +2024-09-30T08:45:53.553901Z INFO fork_choice_control::block_processor: Validating block with slot: 6746 +2024-09-30T08:45:53.555066Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6569 +2024-09-30T08:45:53.555083Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6569 +2024-09-30T08:45:53.557548Z INFO fork_choice_control::block_processor: Validating block with slot: 6754 +2024-09-30T08:45:53.557570Z INFO fork_choice_control::block_processor: Validating block with slot: 6753 +2024-09-30T08:45:53.569471Z INFO fork_choice_control::block_processor: Validating block with slot: 6755 +2024-09-30T08:45:53.592669Z INFO fork_choice_control::block_processor: Validating block with slot: 6757 +2024-09-30T08:45:53.592672Z INFO fork_choice_control::block_processor: Validating block with slot: 6756 +2024-09-30T08:45:53.599221Z INFO fork_choice_control::block_processor: Validating block with slot: 6758 +2024-09-30T08:45:53.609678Z INFO fork_choice_control::block_processor: Validating block with slot: 6634 +2024-09-30T08:45:53.609682Z INFO fork_choice_control::block_processor: Validating block with slot: 6759 +2024-09-30T08:45:53.609725Z INFO fork_choice_control::block_processor: Validating block with slot: 6760 +2024-09-30T08:45:53.614060Z INFO fork_choice_control::block_processor: Validating block with slot: 6635 +2024-09-30T08:45:53.614062Z INFO fork_choice_control::block_processor: Validating block with slot: 6636 +2024-09-30T08:45:53.622290Z INFO fork_choice_control::block_processor: Validating block with slot: 6637 +2024-09-30T08:45:53.627899Z INFO fork_choice_control::block_processor: Validating block with slot: 6638 +2024-09-30T08:45:53.637151Z INFO fork_choice_control::block_processor: Validating block with slot: 6639 +2024-09-30T08:45:53.637156Z INFO fork_choice_control::block_processor: Validating block with slot: 6640 +2024-09-30T08:45:53.644872Z INFO fork_choice_control::block_processor: Validating block with slot: 6641 +2024-09-30T08:45:53.644876Z INFO fork_choice_control::block_processor: Validating block with slot: 6642 +2024-09-30T08:45:53.651072Z INFO fork_choice_control::block_processor: Validating block with slot: 6643 +2024-09-30T08:45:53.672390Z INFO fork_choice_control::block_processor: Validating block with slot: 6645 +2024-09-30T08:45:53.672404Z INFO fork_choice_control::block_processor: Validating block with slot: 6646 +2024-09-30T08:45:53.672434Z INFO fork_choice_control::block_processor: Validating block with slot: 6644 +2024-09-30T08:45:53.672488Z INFO fork_choice_control::block_processor: Validating block with slot: 6647 +2024-09-30T08:45:53.723256Z INFO fork_choice_control::block_processor: Validating block with slot: 6650 +2024-09-30T08:45:53.723252Z INFO fork_choice_control::block_processor: Validating block with slot: 6648 +2024-09-30T08:45:53.723292Z INFO fork_choice_control::block_processor: Validating block with slot: 6649 +2024-09-30T08:45:53.723307Z INFO fork_choice_control::block_processor: Validating block with slot: 6655 +2024-09-30T08:45:53.723371Z INFO fork_choice_control::block_processor: Validating block with slot: 6653 +2024-09-30T08:45:53.723388Z INFO fork_choice_control::block_processor: Validating block with slot: 6652 +2024-09-30T08:45:53.723539Z INFO fork_choice_control::block_processor: Validating block with slot: 6651 +2024-09-30T08:45:53.723866Z INFO fork_choice_control::block_processor: Validating block with slot: 6654 +2024-09-30T08:45:53.724322Z INFO fork_choice_control::block_processor: Validating block with slot: 6656 +2024-09-30T08:45:53.724396Z INFO fork_choice_control::block_processor: Validating block with slot: 6657 +2024-09-30T08:45:53.741538Z INFO fork_choice_control::block_processor: Validating block with slot: 6659 +2024-09-30T08:45:53.741541Z INFO fork_choice_control::block_processor: Validating block with slot: 6658 +2024-09-30T08:45:53.749789Z INFO fork_choice_control::block_processor: Validating block with slot: 6661 +2024-09-30T08:45:53.749792Z INFO fork_choice_control::block_processor: Validating block with slot: 6660 +2024-09-30T08:45:53.749799Z INFO fork_choice_control::block_processor: Validating block with slot: 6662 +2024-09-30T08:45:53.752620Z INFO fork_choice_control::block_processor: Validating block with slot: 6663 +2024-09-30T08:45:53.763533Z INFO fork_choice_control::block_processor: Validating block with slot: 6664 +2024-09-30T08:45:53.769693Z INFO fork_choice_control::block_processor: Validating block with slot: 6665 +2024-09-30T08:45:53.769696Z INFO fork_choice_control::block_processor: Validating block with slot: 6667 +2024-09-30T08:45:53.771333Z INFO fork_choice_control::block_processor: Validating block with slot: 6668 +2024-09-30T08:45:53.787579Z INFO fork_choice_control::block_processor: Validating block with slot: 6669 +2024-09-30T08:45:53.787581Z INFO fork_choice_control::block_processor: Validating block with slot: 6670 +2024-09-30T08:45:53.790540Z INFO fork_choice_control::block_processor: Validating block with slot: 6671 +2024-09-30T08:45:53.790592Z INFO fork_choice_control::block_processor: Validating block with slot: 6672 +2024-09-30T08:45:53.795636Z INFO fork_choice_control::block_processor: Validating block with slot: 6673 +2024-09-30T08:45:53.798682Z INFO fork_choice_control::block_processor: Validating block with slot: 6674 +2024-09-30T08:45:53.798696Z INFO fork_choice_control::block_processor: Validating block with slot: 6675 +2024-09-30T08:45:53.807992Z INFO fork_choice_control::block_processor: Validating block with slot: 6676 +2024-09-30T08:45:53.808028Z INFO fork_choice_control::block_processor: Validating block with slot: 6677 +2024-09-30T08:45:53.810541Z INFO fork_choice_control::block_processor: Validating block with slot: 6679 +2024-09-30T08:45:53.810813Z INFO fork_choice_control::block_processor: Validating block with slot: 6678 +2024-09-30T08:45:53.813318Z INFO fork_choice_control::block_processor: Validating block with slot: 6680 +2024-09-30T08:45:53.905774Z INFO fork_choice_control::block_processor: Validating block with slot: 6681 +2024-09-30T08:45:54.008170Z INFO fork_choice_control::block_processor: Validating block with slot: 6683 +2024-09-30T08:45:54.008176Z INFO fork_choice_control::block_processor: Validating block with slot: 6682 +2024-09-30T08:45:54.008185Z INFO fork_choice_control::block_processor: Validating block with slot: 6688 +2024-09-30T08:45:54.008189Z INFO fork_choice_control::block_processor: Validating block with slot: 6687 +2024-09-30T08:45:54.008205Z INFO fork_choice_control::block_processor: Validating block with slot: 6685 +2024-09-30T08:45:54.008253Z INFO fork_choice_control::block_processor: Validating block with slot: 6684 +2024-09-30T08:45:54.008341Z INFO fork_choice_control::block_processor: Validating block with slot: 6686 +2024-09-30T08:45:54.009153Z INFO fork_choice_control::block_processor: Validating block with slot: 6689 +2024-09-30T08:45:54.009199Z INFO fork_choice_control::block_processor: Validating block with slot: 6690 +2024-09-30T08:45:54.009710Z INFO fork_choice_control::block_processor: Validating block with slot: 6691 +2024-09-30T08:45:54.010026Z INFO fork_choice_control::block_processor: Validating block with slot: 6570 +2024-09-30T08:45:54.010401Z INFO fork_choice_control::block_processor: Validating block with slot: 6571 +2024-09-30T08:45:54.010412Z INFO fork_choice_control::block_processor: Validating block with slot: 6572 +2024-09-30T08:45:54.010504Z INFO fork_choice_control::block_processor: Validating block with slot: 6573 +2024-09-30T08:45:54.011369Z INFO fork_choice_control::block_processor: Validating block with slot: 6574 +2024-09-30T08:45:54.011580Z INFO fork_choice_control::block_processor: Validating block with slot: 6575 +2024-09-30T08:45:54.011756Z INFO fork_choice_control::block_processor: Validating block with slot: 6576 +2024-09-30T08:45:54.011960Z INFO fork_choice_control::block_processor: Validating block with slot: 6577 +2024-09-30T08:45:54.012548Z INFO fork_choice_control::block_processor: Validating block with slot: 6578 +2024-09-30T08:45:54.012754Z INFO fork_choice_control::block_processor: Validating block with slot: 6579 +2024-09-30T08:45:54.012798Z INFO fork_choice_control::block_processor: Validating block with slot: 6580 +2024-09-30T08:45:54.012908Z INFO fork_choice_control::block_processor: Validating block with slot: 6581 +2024-09-30T08:45:54.012912Z INFO fork_choice_control::block_processor: Validating block with slot: 6582 +2024-09-30T08:45:54.013080Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4d2e256a9b753c3b10f69bc3f117b8623c17972611820cecd09aa15f90dc549a, slot: 6570 +2024-09-30T08:45:54.013850Z INFO fork_choice_control::block_processor: Validating block with slot: 6583 +2024-09-30T08:45:54.013872Z INFO fork_choice_control::block_processor: Validating block with slot: 6584 +2024-09-30T08:45:54.014915Z INFO fork_choice_control::block_processor: Validating block with slot: 6585 +2024-09-30T08:45:54.015950Z INFO fork_choice_control::block_processor: Validating block with slot: 6586 +2024-09-30T08:45:54.015966Z INFO fork_choice_control::block_processor: Validating block with slot: 6692 +2024-09-30T08:45:54.016074Z INFO fork_choice_control::block_processor: Validating block with slot: 6587 +2024-09-30T08:45:54.016361Z INFO fork_choice_control::block_processor: Validating block with slot: 6588 +2024-09-30T08:45:54.016385Z INFO fork_choice_control::block_processor: Validating block with slot: 6693 +2024-09-30T08:45:54.017185Z INFO fork_choice_control::block_processor: Validating block with slot: 6694 +2024-09-30T08:45:54.017599Z INFO fork_choice_control::block_processor: Validating block with slot: 6695 +2024-09-30T08:45:54.018210Z INFO fork_choice_control::block_processor: Validating block with slot: 6696 +2024-09-30T08:45:54.019687Z INFO fork_choice_control::block_processor: Validating block with slot: 6589 +2024-09-30T08:45:54.020113Z INFO fork_choice_control::block_processor: Validating block with slot: 6593 +2024-09-30T08:45:54.021127Z INFO fork_choice_control::block_processor: Validating block with slot: 6594 +2024-09-30T08:45:54.021327Z INFO fork_choice_control::block_processor: Validating block with slot: 6595 +2024-09-30T08:45:54.022065Z INFO fork_choice_control::block_processor: Validating block with slot: 6596 +2024-09-30T08:45:54.022878Z INFO fork_choice_control::block_processor: Validating block with slot: 6597 +2024-09-30T08:45:54.023507Z INFO fork_choice_control::block_processor: Validating block with slot: 6590 +2024-09-30T08:45:54.024096Z INFO fork_choice_control::block_processor: Validating block with slot: 6598 +2024-09-30T08:45:54.024134Z INFO fork_choice_control::block_processor: Validating block with slot: 6599 +2024-09-30T08:45:54.026393Z INFO fork_choice_control::block_processor: Validating block with slot: 6600 +2024-09-30T08:45:54.026441Z INFO fork_choice_control::block_processor: Validating block with slot: 6603 +2024-09-30T08:45:54.027087Z INFO fork_choice_control::block_processor: Validating block with slot: 6591 +2024-09-30T08:45:54.027121Z INFO fork_choice_control::block_processor: Validating block with slot: 6604 +2024-09-30T08:45:54.027385Z INFO fork_choice_control::block_processor: Validating block with slot: 6605 +2024-09-30T08:45:54.027755Z INFO fork_choice_control::block_processor: Validating block with slot: 6607 +2024-09-30T08:45:54.028888Z INFO fork_choice_control::block_processor: Validating block with slot: 6608 +2024-09-30T08:45:54.030134Z INFO fork_choice_control::block_processor: Validating block with slot: 6592 +2024-09-30T08:45:54.030149Z INFO fork_choice_control::block_processor: Validating block with slot: 6609 +2024-09-30T08:45:54.032919Z INFO fork_choice_control::block_processor: Validating block with slot: 6610 +2024-09-30T08:45:54.033147Z INFO fork_choice_control::block_processor: Validating block with slot: 6612 +2024-09-30T08:45:54.033614Z INFO fork_choice_control::block_processor: Validating block with slot: 6613 +2024-09-30T08:45:54.033866Z INFO fork_choice_control::block_processor: Validating block with slot: 6614 +2024-09-30T08:45:54.034004Z INFO fork_choice_control::block_processor: Validating block with slot: 6601 +2024-09-30T08:45:54.034086Z INFO fork_choice_control::block_processor: Validating block with slot: 6615 +2024-09-30T08:45:54.034463Z INFO fork_choice_control::block_processor: Validating block with slot: 6616 +2024-09-30T08:45:54.035024Z INFO fork_choice_control::block_processor: Validating block with slot: 6617 +2024-09-30T08:45:54.035977Z INFO fork_choice_control::block_processor: Validating block with slot: 6618 +2024-09-30T08:45:54.036267Z INFO fork_choice_control::block_processor: Validating block with slot: 6611 +2024-09-30T08:45:54.036505Z INFO fork_choice_control::block_processor: Validating block with slot: 6602 +2024-09-30T08:45:54.051504Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6570 +2024-09-30T08:45:54.051524Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6570 +2024-09-30T08:45:54.057745Z INFO fork_choice_control::block_processor: Validating block with slot: 6619 +2024-09-30T08:45:54.057772Z INFO fork_choice_control::block_processor: Validating block with slot: 6620 +2024-09-30T08:45:54.057886Z INFO fork_choice_control::block_processor: Validating block with slot: 6621 +2024-09-30T08:45:54.058065Z INFO fork_choice_control::block_processor: Validating block with slot: 6622 +2024-09-30T08:45:54.059425Z INFO fork_choice_control::block_processor: Validating block with slot: 6623 +2024-09-30T08:45:54.060094Z INFO fork_choice_control::block_processor: Validating block with slot: 6624 +2024-09-30T08:45:54.060500Z INFO fork_choice_control::block_processor: Validating block with slot: 6625 +2024-09-30T08:45:54.063069Z INFO fork_choice_control::block_processor: Validating block with slot: 6626 +2024-09-30T08:45:54.063298Z INFO fork_choice_control::block_processor: Validating block with slot: 6631 +2024-09-30T08:45:54.063950Z INFO fork_choice_control::block_processor: Validating block with slot: 6632 +2024-09-30T08:45:54.064139Z INFO fork_choice_control::block_processor: Validating block with slot: 6629 +2024-09-30T08:45:54.064666Z INFO fork_choice_control::block_processor: Validating block with slot: 6627 +2024-09-30T08:45:54.064973Z INFO fork_choice_control::block_processor: Validating block with slot: 6628 +2024-09-30T08:45:54.065097Z INFO fork_choice_control::block_processor: Validating block with slot: 6630 +2024-09-30T08:45:54.069003Z INFO fork_choice_control::block_processor: Validating block with slot: 6571 +2024-09-30T08:45:54.071416Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xccee3a13cf6bbdca65ec57cc11bc3d05a7dc5fa5be4283fda8fdb49251cd234f, slot: 6571 +2024-09-30T08:45:54.093619Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6571 +2024-09-30T08:45:54.093641Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6571 +2024-09-30T08:45:54.106031Z INFO fork_choice_control::block_processor: Validating block with slot: 6572 +2024-09-30T08:45:54.107335Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9eb47b039e3ed82cdf40affb52a4c13385e1aac56cba873eeb16d0e965b1cf68, slot: 6572 +2024-09-30T08:45:54.127813Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6572 +2024-09-30T08:45:54.127832Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6572 +2024-09-30T08:45:54.140492Z INFO fork_choice_control::block_processor: Validating block with slot: 6573 +2024-09-30T08:45:54.141612Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x814116d3f00872aa004d7a09fe23deffec00a8ee56dfa7f8279307e81530e1d5, slot: 6573 +2024-09-30T08:45:54.159862Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6573 +2024-09-30T08:45:54.159881Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6573 +2024-09-30T08:45:54.172385Z INFO fork_choice_control::block_processor: Validating block with slot: 6574 +2024-09-30T08:45:54.173514Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3bc3cba35636ec9387ce6e1ab81e4824f3292fd7bff2e2b79d61999c46014599, slot: 6574 +2024-09-30T08:45:54.193572Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6574 +2024-09-30T08:45:54.193591Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6574 +2024-09-30T08:45:54.206515Z INFO fork_choice_control::block_processor: Validating block with slot: 6575 +2024-09-30T08:45:54.207797Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb772a2438acf93fafca60e81c83776f9b3fe6a086ba9843404c92645b1400bb7, slot: 6575 +2024-09-30T08:45:54.227532Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6575 +2024-09-30T08:45:54.227552Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6575 +2024-09-30T08:45:54.240636Z INFO fork_choice_control::block_processor: Validating block with slot: 6576 +2024-09-30T08:45:54.241847Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xced703eedc09327e62127ce2d664907638e3b356252aa46bf202ad6e9fdac7e1, slot: 6576 +2024-09-30T08:45:54.261551Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6576 +2024-09-30T08:45:54.261571Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6576 +2024-09-30T08:45:54.274934Z INFO fork_choice_control::block_processor: Validating block with slot: 6577 +2024-09-30T08:45:54.275905Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x12bf74c55d0737d13c5256fbe31b075a194143383563fae96c9406c8217b0258, slot: 6577 +2024-09-30T08:45:54.294860Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6577 +2024-09-30T08:45:54.294880Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6577 +2024-09-30T08:45:54.308727Z INFO fork_choice_control::block_processor: Validating block with slot: 6578 +2024-09-30T08:45:54.310093Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x88419d0c5e808b052d3e0a206c9dda1d7480c408b30af554644168f4fabe995e, slot: 6578 +2024-09-30T08:45:54.329702Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6578 +2024-09-30T08:45:54.329721Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6578 +2024-09-30T08:45:54.343558Z INFO fork_choice_control::block_processor: Validating block with slot: 6579 +2024-09-30T08:45:54.347081Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x07656894e551b9069fd55af8924275ba98e866c56d0c6b9d741e12279c53f667, slot: 6579 +2024-09-30T08:45:54.371688Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6579 +2024-09-30T08:45:54.371702Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6579 +2024-09-30T08:45:54.386064Z INFO fork_choice_control::block_processor: Validating block with slot: 6580 +2024-09-30T08:45:54.387160Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x03ca7b81803052a629fa93bd8146661b3a78ba73eaa8f0b72a10060664dfc798, slot: 6580 +2024-09-30T08:45:54.407364Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6580 +2024-09-30T08:45:54.407403Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6580 +2024-09-30T08:45:54.421757Z INFO fork_choice_control::block_processor: Validating block with slot: 6581 +2024-09-30T08:45:54.425261Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf526c773c2cafb2f8cea8c57bc2354a141736aaa7d4561ec8d74b5de3ad1f0fe, slot: 6581 +2024-09-30T08:45:54.455397Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6581 +2024-09-30T08:45:54.455413Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6581 +2024-09-30T08:45:54.470385Z INFO fork_choice_control::block_processor: Validating block with slot: 6582 +2024-09-30T08:45:54.471345Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1096a54619cc19ff23521ad7e54f58e291dbf88bf73b59ccf761e5cda50aedad, slot: 6582 +2024-09-30T08:45:54.490947Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6582 +2024-09-30T08:45:54.490970Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6582 +2024-09-30T08:45:54.506772Z INFO fork_choice_control::block_processor: Validating block with slot: 6583 +2024-09-30T08:45:54.510184Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdfb408ba9240686dff9628ac79cfe62487bbb85b6ab069a3f9a6aea6d85acd78, slot: 6583 +2024-09-30T08:45:54.537404Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6583 +2024-09-30T08:45:54.537424Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6583 +2024-09-30T08:45:54.553409Z INFO fork_choice_control::block_processor: Validating block with slot: 6584 +2024-09-30T08:45:54.554646Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x480d5c1ddda2d5b2a02c1d82ba030f63cab8f8f2571419e43a57d6bbbc91b823, slot: 6584 +2024-09-30T08:45:54.573481Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6584 +2024-09-30T08:45:54.573501Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6584 +2024-09-30T08:45:54.594656Z INFO fork_choice_control::block_processor: Validating block with slot: 6585 +2024-09-30T08:45:54.594660Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 204, root: 0x4a2873f10fafb5ccd8d2324f9fea824d37a32627f5f924a469e209676e66939b, head slot: 6584, head root: 0x480d5c1ddda2d5b2a02c1d82ba030f63cab8f8f2571419e43a57d6bbbc91b823) +2024-09-30T08:45:54.595631Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3ae33615a823f0d5000ac8f12338c6a3eb584b981030dc1d0e0555abf4a8c5d8, slot: 6585 +2024-09-30T08:45:54.612763Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6585 +2024-09-30T08:45:54.612787Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6585 +2024-09-30T08:45:54.629301Z INFO fork_choice_control::block_processor: Validating block with slot: 6586 +2024-09-30T08:45:54.630408Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x99319e994fa140f3966a2b290887cc1d7ec7f380625592cc4c2a0272eb0bb6a4, slot: 6586 +2024-09-30T08:45:54.648123Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6586 +2024-09-30T08:45:54.648137Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6586 +2024-09-30T08:45:54.664524Z INFO fork_choice_control::block_processor: Validating block with slot: 6587 +2024-09-30T08:45:54.667914Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x28a3c314ff5566c460baee6ebd0e2795104208c46af67557a84cb78aab23698b, slot: 6587 +2024-09-30T08:45:54.702624Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6587 +2024-09-30T08:45:54.702643Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6587 +2024-09-30T08:45:54.719670Z INFO fork_choice_control::block_processor: Validating block with slot: 6588 +2024-09-30T08:45:54.720645Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcb467e812feec6318d6f0baa7e3ed031ebc19c18eabd41e33bb704a69fb963b8, slot: 6588 +2024-09-30T08:45:54.740073Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6588 +2024-09-30T08:45:54.740094Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6588 +2024-09-30T08:45:54.757247Z INFO fork_choice_control::block_processor: Validating block with slot: 6589 +2024-09-30T08:45:54.758632Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe7f7315d830b48df769939ea331afbbba96d44df21804ed7100505ffba8dfbbb, slot: 6589 +2024-09-30T08:45:54.778359Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6589 +2024-09-30T08:45:54.778378Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6589 +2024-09-30T08:45:54.795862Z INFO fork_choice_control::block_processor: Validating block with slot: 6590 +2024-09-30T08:45:54.796955Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x06dc7b9b9f0a94c61f24d9e2f29e8586bfb0bc3ec1091bf35d378dd9360da73b, slot: 6590 +2024-09-30T08:45:54.816511Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6590 +2024-09-30T08:45:54.816524Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6590 +2024-09-30T08:45:54.834269Z INFO fork_choice_control::block_processor: Validating block with slot: 6591 +2024-09-30T08:45:54.835237Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6fa7b053ddd8ece9159f65ad47ed692843e4b2ce07d24eef869d314e3b2a1559, slot: 6591 +2024-09-30T08:45:54.853614Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6591 +2024-09-30T08:45:54.853626Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6591 +2024-09-30T08:45:54.871396Z INFO fork_choice_control::block_processor: Validating block with slot: 6592 +2024-09-30T08:45:54.872516Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x10796e9acbe17a530f3614d65b8ccb3cd3a9dbb88802ad1f80caca37475f027e, slot: 6592 +2024-09-30T08:45:54.970083Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6592 +2024-09-30T08:45:54.970109Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6592 +2024-09-30T08:45:54.981685Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6592) +2024-09-30T08:45:54.981841Z INFO fork_choice_control::block_processor: Validating block with slot: 6593 +2024-09-30T08:45:54.982798Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x21ab4d34b24b3f4851a3c3b7abdce2bed5ca974a9f424bf9e39e0f57c5d73ea2, slot: 6593 +2024-09-30T08:45:55.058473Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6593 +2024-09-30T08:45:55.058493Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6593 +2024-09-30T08:45:55.070420Z INFO fork_choice_control::block_processor: Validating block with slot: 6594 +2024-09-30T08:45:55.071381Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x17081e06696b8b4d4dd59a63c26ac53d7a3cede23feee696d5dad74d960f1699, slot: 6594 +2024-09-30T08:45:55.080664Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6594 +2024-09-30T08:45:55.080686Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6594 +2024-09-30T08:45:55.092998Z INFO fork_choice_control::block_processor: Validating block with slot: 6595 +2024-09-30T08:45:55.094239Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc2b9b9965b901d7fe8d51d58ca3fd5f1ae52e187e99e6e36c9125fc0558fae3e, slot: 6595 +2024-09-30T08:45:55.104570Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6595 +2024-09-30T08:45:55.104583Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6595 +2024-09-30T08:45:55.116794Z INFO fork_choice_control::block_processor: Validating block with slot: 6596 +2024-09-30T08:45:55.118859Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x51cda06adb232fd0ab28b6307eb1df569f7dfacedfd1bee2f4b2b9032fd23001, slot: 6596 +2024-09-30T08:45:55.132863Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6596 +2024-09-30T08:45:55.132883Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6596 +2024-09-30T08:45:55.145759Z INFO fork_choice_control::block_processor: Validating block with slot: 6597 +2024-09-30T08:45:55.146992Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x23cccadf77d2effdeefdbbf11ae16f68a17162efb6035d312750fe31483a4476, slot: 6597 +2024-09-30T08:45:55.156062Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6597 +2024-09-30T08:45:55.156081Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6597 +2024-09-30T08:45:55.168581Z INFO fork_choice_control::block_processor: Validating block with slot: 6598 +2024-09-30T08:45:55.171043Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xda7fe969e508a1a96c36c5fcd024caf501a089eb1dc756c47f4949115476a360, slot: 6598 +2024-09-30T08:45:55.183228Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6598 +2024-09-30T08:45:55.183248Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6598 +2024-09-30T08:45:55.196547Z INFO fork_choice_control::block_processor: Validating block with slot: 6599 +2024-09-30T08:45:55.197920Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbeffe1226062a76c038f7a2b6b434630dd357157e579f01041d319acde4e714b, slot: 6599 +2024-09-30T08:45:55.209400Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6599 +2024-09-30T08:45:55.209423Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6599 +2024-09-30T08:45:55.222838Z INFO fork_choice_control::block_processor: Validating block with slot: 6600 +2024-09-30T08:45:55.224244Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xba86e5e3bb2a771175d72fe7278ee6de1f8fd23724c1b4c763c9e308c645d725, slot: 6600 +2024-09-30T08:45:55.235865Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6600 +2024-09-30T08:45:55.235884Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6600 +2024-09-30T08:45:55.249825Z INFO fork_choice_control::block_processor: Validating block with slot: 6601 +2024-09-30T08:45:55.250851Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x03c193acb162d3d6d4c1ff9c043a92176bc6fe4e2a49f2f002eeac348d59d68d, slot: 6601 +2024-09-30T08:45:55.264979Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6601 +2024-09-30T08:45:55.265000Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6601 +2024-09-30T08:45:55.279535Z INFO fork_choice_control::block_processor: Validating block with slot: 6602 +2024-09-30T08:45:55.280658Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8b89a953d62d22d0aa7b6e0e615132cfe15190ee0b14e1bd65a04694c57c32a6, slot: 6602 +2024-09-30T08:45:55.288803Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6602 +2024-09-30T08:45:55.288817Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6602 +2024-09-30T08:45:55.302775Z INFO fork_choice_control::block_processor: Validating block with slot: 6603 +2024-09-30T08:45:55.303763Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x816d399217c7f965c1594369c09f2b07808cc8eba3accd93a0ee58ff1880725c, slot: 6603 +2024-09-30T08:45:55.313309Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6603 +2024-09-30T08:45:55.313326Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6603 +2024-09-30T08:45:55.327432Z INFO fork_choice_control::block_processor: Validating block with slot: 6604 +2024-09-30T08:45:55.328398Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2e296c9f55b82e01eac0527ec91405932b82c7379a06957cc6bf5fa4d0ca7279, slot: 6604 +2024-09-30T08:45:55.337185Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6604 +2024-09-30T08:45:55.337203Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6604 +2024-09-30T08:45:55.351621Z INFO fork_choice_control::block_processor: Validating block with slot: 6605 +2024-09-30T08:45:55.353134Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x82b28fe656e976a3c591a2abcf508a80352da8ec78765c8f96e4c561f9365253, slot: 6605 +2024-09-30T08:45:55.363949Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6605 +2024-09-30T08:45:55.363968Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6605 +2024-09-30T08:45:55.378694Z INFO fork_choice_control::block_processor: Validating block with slot: 6607 +2024-09-30T08:45:55.381965Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6a688040f3d8d0a384c34dd13efb4fea5c96b9cb479914836cd9e3ab3693a25f, slot: 6607 +2024-09-30T08:45:55.400169Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6607 +2024-09-30T08:45:55.400185Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6607 +2024-09-30T08:45:55.415226Z INFO fork_choice_control::block_processor: Validating block with slot: 6608 +2024-09-30T08:45:55.417128Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7042603817580f1e8f02dadeee3a5a4665f9ad7cc94fb7672f6b598c783272a6, slot: 6608 +2024-09-30T08:45:55.428806Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6608 +2024-09-30T08:45:55.428823Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6608 +2024-09-30T08:45:55.444515Z INFO fork_choice_control::block_processor: Validating block with slot: 6609 +2024-09-30T08:45:55.445886Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x24ce38bbd0dbcf3aeadfb5c1c4d55fbe3b82a3d6b024c5b94c3d649260a923dd, slot: 6609 +2024-09-30T08:45:55.454456Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6609 +2024-09-30T08:45:55.454468Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6609 +2024-09-30T08:45:55.470154Z INFO fork_choice_control::block_processor: Validating block with slot: 6610 +2024-09-30T08:45:55.471116Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x27bfe4bc9c8e853fbfffe3d0ee89fcf09c6d08035f3d948764875ca974df2e57, slot: 6610 +2024-09-30T08:45:55.479341Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6610 +2024-09-30T08:45:55.479361Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6610 +2024-09-30T08:45:55.495319Z INFO fork_choice_control::block_processor: Validating block with slot: 6611 +2024-09-30T08:45:55.496836Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xab1df68a1ec2c8d69ed8e9d1e58d00fe284ccfa963c63b5f0af07a18d9cb737b, slot: 6611 +2024-09-30T08:45:55.506597Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6611 +2024-09-30T08:45:55.506617Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6611 +2024-09-30T08:45:55.522543Z INFO fork_choice_control::block_processor: Validating block with slot: 6612 +2024-09-30T08:45:55.523541Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2a4556ca0406079324b8eea27c99073c169f2b5a6088d30335472956eee6098b, slot: 6612 +2024-09-30T08:45:55.531976Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6612 +2024-09-30T08:45:55.531992Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6612 +2024-09-30T08:45:55.548589Z INFO fork_choice_control::block_processor: Validating block with slot: 6613 +2024-09-30T08:45:55.549549Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6a58daccf8c469e4fc72ec36a1cf5ea1b667a5740e8f878e2b1aeb2ed21dc5b5, slot: 6613 +2024-09-30T08:45:55.558294Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6613 +2024-09-30T08:45:55.558315Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6613 +2024-09-30T08:45:55.574690Z INFO fork_choice_control::block_processor: Validating block with slot: 6614 +2024-09-30T08:45:55.576602Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9580d1a2a2c29a8f506394a5e45bae11f6e53d9cd5e179a490e125fb4defae4b, slot: 6614 +2024-09-30T08:45:55.587165Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6614 +2024-09-30T08:45:55.587178Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6614 +2024-09-30T08:45:55.597851Z INFO fork_choice_control::block_processor: Validating block with slot: 6825 +2024-09-30T08:45:55.603956Z INFO fork_choice_control::block_processor: Validating block with slot: 6615 +2024-09-30T08:45:55.604897Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3a494ace92410bbf1d8c9546e8c16d51db669dcc55c6ead8b6abc62ad2b6e8f4, slot: 6615 +2024-09-30T08:45:55.611333Z INFO fork_choice_control::block_processor: Validating block with slot: 6826 +2024-09-30T08:45:55.611349Z INFO fork_choice_control::block_processor: Validating block with slot: 6827 +2024-09-30T08:45:55.615971Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6615 +2024-09-30T08:45:55.615982Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6615 +2024-09-30T08:45:55.619046Z INFO fork_choice_control::block_processor: Validating block with slot: 6828 +2024-09-30T08:45:55.619065Z INFO fork_choice_control::block_processor: Validating block with slot: 6829 +2024-09-30T08:45:55.639376Z INFO fork_choice_control::block_processor: Validating block with slot: 6616 +2024-09-30T08:45:55.639381Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 205, root: 0x04d0411d90dfdb5cecb7d4853cab69dff1dd0b2a80a360d541a974e710fda32e, head slot: 6615, head root: 0x3a494ace92410bbf1d8c9546e8c16d51db669dcc55c6ead8b6abc62ad2b6e8f4) +2024-09-30T08:45:55.640523Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x58eee10c026013d5d985e96da9315576ab522e76c97b0744a71bbf3c9b786310, slot: 6616 +2024-09-30T08:45:55.652472Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6616 +2024-09-30T08:45:55.652494Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6616 +2024-09-30T08:45:55.670182Z INFO fork_choice_control::block_processor: Validating block with slot: 6617 +2024-09-30T08:45:55.671379Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x71b42c72892e1d2100224323194a7b968bd05cf13c55c1821f3ba9379ebb0f73, slot: 6617 +2024-09-30T08:45:55.682376Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6617 +2024-09-30T08:45:55.682395Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6617 +2024-09-30T08:45:55.700154Z INFO fork_choice_control::block_processor: Validating block with slot: 6618 +2024-09-30T08:45:55.701418Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5012668f55af9e4e5427648a2fc61541629a8e621773a985aa77b143291bf5ee, slot: 6618 +2024-09-30T08:45:55.712069Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6618 +2024-09-30T08:45:55.712089Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6618 +2024-09-30T08:45:55.730621Z INFO fork_choice_control::block_processor: Validating block with slot: 6619 +2024-09-30T08:45:55.732446Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb18c23c2d1769e295fd0051d18021a7098fc85b73e7588c218f596cb800e5124, slot: 6619 +2024-09-30T08:45:55.744719Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6619 +2024-09-30T08:45:55.744745Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6619 +2024-09-30T08:45:55.757707Z INFO fork_choice_control::block_processor: Validating block with slot: 6830 +2024-09-30T08:45:55.763035Z INFO fork_choice_control::block_processor: Validating block with slot: 6620 +2024-09-30T08:45:55.765062Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x768348c424fef4526912576735e97bca0f6fd64564a59ed9b4cc4fd6c5796aa8, slot: 6620 +2024-09-30T08:45:55.769064Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 6560 +2024-09-30T08:45:55.781411Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6620 +2024-09-30T08:45:55.781431Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6620 +2024-09-30T08:45:55.783579Z INFO fork_choice_control::block_processor: Validating block with slot: 6831 +2024-09-30T08:45:55.783595Z INFO fork_choice_control::block_processor: Validating block with slot: 6834 +2024-09-30T08:45:55.783605Z INFO fork_choice_control::block_processor: Validating block with slot: 6832 +2024-09-30T08:45:55.783614Z INFO fork_choice_control::block_processor: Validating block with slot: 6833 +2024-09-30T08:45:55.783629Z INFO fork_choice_control::block_processor: Validating block with slot: 6835 +2024-09-30T08:45:55.783651Z INFO fork_choice_control::block_processor: Validating block with slot: 6836 +2024-09-30T08:45:55.784551Z INFO fork_choice_control::block_processor: Validating block with slot: 6837 +2024-09-30T08:45:55.785654Z INFO fork_choice_control::block_processor: Validating block with slot: 6838 +2024-09-30T08:45:55.785924Z INFO fork_choice_control::block_processor: Validating block with slot: 6839 +2024-09-30T08:45:55.785992Z INFO fork_choice_control::block_processor: Validating block with slot: 6841 +2024-09-30T08:45:55.786186Z INFO fork_choice_control::block_processor: Validating block with slot: 6842 +2024-09-30T08:45:55.786505Z INFO fork_choice_control::block_processor: Validating block with slot: 6843 +2024-09-30T08:45:55.786934Z INFO fork_choice_control::block_processor: Validating block with slot: 6844 +2024-09-30T08:45:55.787870Z INFO fork_choice_control::block_processor: Validating block with slot: 6845 +2024-09-30T08:45:55.788925Z INFO fork_choice_control::block_processor: Validating block with slot: 6840 +2024-09-30T08:45:55.799996Z INFO fork_choice_control::block_processor: Validating block with slot: 6621 +2024-09-30T08:45:55.801393Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x84eb94a53280bcd1756cf80477408bb5aaf7f7f6a7d3ca0675752c05015a1b76, slot: 6621 +2024-09-30T08:45:55.812599Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6621 +2024-09-30T08:45:55.812620Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6621 +2024-09-30T08:45:55.827164Z INFO fork_choice_control::block_processor: Validating block with slot: 6846 +2024-09-30T08:45:55.827172Z INFO fork_choice_control::block_processor: Validating block with slot: 6847 +2024-09-30T08:45:55.827336Z INFO fork_choice_control::block_processor: Validating block with slot: 6848 +2024-09-30T08:45:55.831464Z INFO fork_choice_control::block_processor: Validating block with slot: 6622 +2024-09-30T08:45:55.833707Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x505b8eb16a47835374d7156d0f870f60975aa07da45b71d17545a5dea56682b4, slot: 6622 +2024-09-30T08:45:55.846523Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6622 +2024-09-30T08:45:55.846548Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6622 +2024-09-30T08:45:55.865901Z INFO fork_choice_control::block_processor: Validating block with slot: 6623 +2024-09-30T08:45:55.867020Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb535ac0674833e24b856b31fbc44cf15c1bd3b89e5ef961d297568be28205480, slot: 6623 +2024-09-30T08:45:55.877074Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6623 +2024-09-30T08:45:55.877093Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6623 +2024-09-30T08:45:55.896025Z INFO fork_choice_control::block_processor: Validating block with slot: 6624 +2024-09-30T08:45:55.897021Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x17fdc10d0335fec3f681e399ce2cdd3257a0aee415e1eb82bbcce88d9e8aa577, slot: 6624 +2024-09-30T08:45:55.914464Z INFO fork_choice_control::block_processor: Validating block with slot: 6849 +2024-09-30T08:45:55.914496Z INFO fork_choice_control::block_processor: Validating block with slot: 6851 +2024-09-30T08:45:55.914493Z INFO fork_choice_control::block_processor: Validating block with slot: 6850 +2024-09-30T08:45:56.000186Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6624 +2024-09-30T08:45:56.000210Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6624 +2024-09-30T08:45:56.003888Z INFO fork_choice_control::block_processor: Validating block with slot: 6852 +2024-09-30T08:45:56.009571Z INFO fork_choice_control::block_processor: Validating block with slot: 6853 +2024-09-30T08:45:56.011220Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6624) +2024-09-30T08:45:56.011341Z INFO fork_choice_control::block_processor: Validating block with slot: 6625 +2024-09-30T08:45:56.013282Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7299340430530296acba1376bf99ef6c5bd408689c8ebc000c9a5d5934eaf955, slot: 6625 +2024-09-30T08:45:56.066002Z INFO fork_choice_control::block_processor: Validating block with slot: 6854 +2024-09-30T08:45:56.066050Z INFO fork_choice_control::block_processor: Validating block with slot: 6855 +2024-09-30T08:45:56.066116Z INFO fork_choice_control::block_processor: Validating block with slot: 6856 +2024-09-30T08:45:56.067260Z INFO fork_choice_control::block_processor: Validating block with slot: 6858 +2024-09-30T08:45:56.068765Z INFO fork_choice_control::block_processor: Validating block with slot: 6862 +2024-09-30T08:45:56.068778Z INFO fork_choice_control::block_processor: Validating block with slot: 6860 +2024-09-30T08:45:56.069867Z INFO fork_choice_control::block_processor: Validating block with slot: 6863 +2024-09-30T08:45:56.075589Z INFO fork_choice_control::block_processor: Validating block with slot: 6864 +2024-09-30T08:45:56.076573Z INFO fork_choice_control::block_processor: Validating block with slot: 6869 +2024-09-30T08:45:56.077651Z INFO fork_choice_control::block_processor: Validating block with slot: 6870 +2024-09-30T08:45:56.077787Z INFO fork_choice_control::block_processor: Validating block with slot: 6865 +2024-09-30T08:45:56.078589Z INFO fork_choice_control::block_processor: Validating block with slot: 6871 +2024-09-30T08:45:56.078870Z INFO fork_choice_control::block_processor: Validating block with slot: 6872 +2024-09-30T08:45:56.079039Z INFO fork_choice_control::block_processor: Validating block with slot: 6873 +2024-09-30T08:45:56.080195Z INFO fork_choice_control::block_processor: Validating block with slot: 6874 +2024-09-30T08:45:56.080660Z INFO fork_choice_control::block_processor: Validating block with slot: 6876 +2024-09-30T08:45:56.081737Z INFO fork_choice_control::block_processor: Validating block with slot: 6877 +2024-09-30T08:45:56.084486Z INFO fork_choice_control::block_processor: Validating block with slot: 6878 +2024-09-30T08:45:56.084519Z INFO fork_choice_control::block_processor: Validating block with slot: 6879 +2024-09-30T08:45:56.085458Z INFO fork_choice_control::block_processor: Validating block with slot: 6881 +2024-09-30T08:45:56.086810Z INFO fork_choice_control::block_processor: Validating block with slot: 6866 +2024-09-30T08:45:56.087393Z INFO fork_choice_control::block_processor: Validating block with slot: 6882 +2024-09-30T08:45:56.088458Z INFO fork_choice_control::block_processor: Validating block with slot: 6883 +2024-09-30T08:45:56.089110Z INFO fork_choice_control::block_processor: Validating block with slot: 6885 +2024-09-30T08:45:56.089533Z INFO fork_choice_control::block_processor: Validating block with slot: 6886 +2024-09-30T08:45:56.089525Z INFO fork_choice_control::block_processor: Validating block with slot: 6875 +2024-09-30T08:45:56.094992Z INFO fork_choice_control::block_processor: Validating block with slot: 6887 +2024-09-30T08:45:56.097039Z INFO fork_choice_control::block_processor: Validating block with slot: 6763 +2024-09-30T08:45:56.098118Z INFO fork_choice_control::block_processor: Validating block with slot: 6764 +2024-09-30T08:45:56.099194Z INFO fork_choice_control::block_processor: Validating block with slot: 6765 +2024-09-30T08:45:56.100136Z INFO fork_choice_control::block_processor: Validating block with slot: 6766 +2024-09-30T08:45:56.100726Z INFO fork_choice_control::block_processor: Validating block with slot: 6867 +2024-09-30T08:45:56.100906Z INFO fork_choice_control::block_processor: Validating block with slot: 6868 +2024-09-30T08:45:56.101003Z INFO fork_choice_control::block_processor: Validating block with slot: 6859 +2024-09-30T08:45:56.101065Z INFO fork_choice_control::block_processor: Validating block with slot: 6888 +2024-09-30T08:45:56.101204Z INFO fork_choice_control::block_processor: Validating block with slot: 6761 +2024-09-30T08:45:56.103627Z INFO fork_choice_control::block_processor: Validating block with slot: 6762 +2024-09-30T08:45:56.116379Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6625 +2024-09-30T08:45:56.116429Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6625 +2024-09-30T08:45:56.130725Z INFO fork_choice_control::block_processor: Validating block with slot: 6626 +2024-09-30T08:45:56.132671Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdbb1a7cce367b682faadbcc59c8e0586fb10fe218677b374ad4cde0b87174d20, slot: 6626 +2024-09-30T08:45:56.144359Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6626 +2024-09-30T08:45:56.144379Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6626 +2024-09-30T08:45:56.156238Z INFO fork_choice_control::block_processor: Validating block with slot: 6627 +2024-09-30T08:45:56.157559Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1c79a0c3453060f2b9f4d5df0160d5ddea3011ea6454df0651b8a1d22c538149, slot: 6627 +2024-09-30T08:45:56.166509Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6627 +2024-09-30T08:45:56.166528Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6627 +2024-09-30T08:45:56.178907Z INFO fork_choice_control::block_processor: Validating block with slot: 6628 +2024-09-30T08:45:56.180015Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x042990fe782082fbe705c96811c36990e51e62a490676e4e46c0ba5bb9b8f9f3, slot: 6628 +2024-09-30T08:45:56.187479Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6628 +2024-09-30T08:45:56.187495Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6628 +2024-09-30T08:45:56.187911Z INFO fork_choice_control::block_processor: Validating block with slot: 6767 +2024-09-30T08:45:56.187935Z INFO fork_choice_control::block_processor: Validating block with slot: 6768 +2024-09-30T08:45:56.187942Z INFO fork_choice_control::block_processor: Validating block with slot: 6771 +2024-09-30T08:45:56.187990Z INFO fork_choice_control::block_processor: Validating block with slot: 6770 +2024-09-30T08:45:56.188878Z INFO fork_choice_control::block_processor: Validating block with slot: 6773 +2024-09-30T08:45:56.189879Z INFO fork_choice_control::block_processor: Validating block with slot: 6774 +2024-09-30T08:45:56.191213Z INFO fork_choice_control::block_processor: Validating block with slot: 6775 +2024-09-30T08:45:56.191663Z INFO fork_choice_control::block_processor: Validating block with slot: 6776 +2024-09-30T08:45:56.191801Z INFO fork_choice_control::block_processor: Validating block with slot: 6777 +2024-09-30T08:45:56.192256Z INFO fork_choice_control::block_processor: Validating block with slot: 6778 +2024-09-30T08:45:56.192428Z INFO fork_choice_control::block_processor: Validating block with slot: 6779 +2024-09-30T08:45:56.192739Z INFO fork_choice_control::block_processor: Validating block with slot: 6780 +2024-09-30T08:45:56.192880Z INFO fork_choice_control::block_processor: Validating block with slot: 6781 +2024-09-30T08:45:56.193379Z INFO fork_choice_control::block_processor: Validating block with slot: 6782 +2024-09-30T08:45:56.194233Z INFO fork_choice_control::block_processor: Validating block with slot: 6784 +2024-09-30T08:45:56.194459Z INFO fork_choice_control::block_processor: Validating block with slot: 6785 +2024-09-30T08:45:56.195539Z INFO fork_choice_control::block_processor: Validating block with slot: 6786 +2024-09-30T08:45:56.195852Z INFO fork_choice_control::block_processor: Validating block with slot: 6787 +2024-09-30T08:45:56.196021Z INFO fork_choice_control::block_processor: Validating block with slot: 6788 +2024-09-30T08:45:56.196399Z INFO fork_choice_control::block_processor: Validating block with slot: 6789 +2024-09-30T08:45:56.196989Z INFO fork_choice_control::block_processor: Validating block with slot: 6790 +2024-09-30T08:45:56.197577Z INFO fork_choice_control::block_processor: Validating block with slot: 6791 +2024-09-30T08:45:56.198137Z INFO fork_choice_control::block_processor: Validating block with slot: 6792 +2024-09-30T08:45:56.198470Z INFO fork_choice_control::block_processor: Validating block with slot: 6793 +2024-09-30T08:45:56.198601Z INFO fork_choice_control::block_processor: Validating block with slot: 6794 +2024-09-30T08:45:56.199116Z INFO fork_choice_control::block_processor: Validating block with slot: 6795 +2024-09-30T08:45:56.199629Z INFO fork_choice_control::block_processor: Validating block with slot: 6796 +2024-09-30T08:45:56.199802Z INFO fork_choice_control::block_processor: Validating block with slot: 6797 +2024-09-30T08:45:56.200149Z INFO fork_choice_control::block_processor: Validating block with slot: 6798 +2024-09-30T08:45:56.200644Z INFO fork_choice_control::block_processor: Validating block with slot: 6799 +2024-09-30T08:45:56.201258Z INFO fork_choice_control::block_processor: Validating block with slot: 6800 +2024-09-30T08:45:56.201452Z INFO fork_choice_control::block_processor: Validating block with slot: 6801 +2024-09-30T08:45:56.202105Z INFO fork_choice_control::block_processor: Validating block with slot: 6802 +2024-09-30T08:45:56.202426Z INFO fork_choice_control::block_processor: Validating block with slot: 6803 +2024-09-30T08:45:56.203125Z INFO fork_choice_control::block_processor: Validating block with slot: 6804 +2024-09-30T08:45:56.203886Z INFO fork_choice_control::block_processor: Validating block with slot: 6805 +2024-09-30T08:45:56.204742Z INFO fork_choice_control::block_processor: Validating block with slot: 6806 +2024-09-30T08:45:56.204750Z INFO fork_choice_control::block_processor: Validating block with slot: 6807 +2024-09-30T08:45:56.204901Z INFO fork_choice_control::block_processor: Validating block with slot: 6808 +2024-09-30T08:45:56.205766Z INFO fork_choice_control::block_processor: Validating block with slot: 6809 +2024-09-30T08:45:56.206292Z INFO fork_choice_control::block_processor: Validating block with slot: 6810 +2024-09-30T08:45:56.206361Z INFO fork_choice_control::block_processor: Validating block with slot: 6811 +2024-09-30T08:45:56.206514Z INFO fork_choice_control::block_processor: Validating block with slot: 6889 +2024-09-30T08:45:56.207090Z INFO fork_choice_control::block_processor: Validating block with slot: 6890 +2024-09-30T08:45:56.207421Z INFO fork_choice_control::block_processor: Validating block with slot: 6891 +2024-09-30T08:45:56.207917Z INFO fork_choice_control::block_processor: Validating block with slot: 6892 +2024-09-30T08:45:56.208317Z INFO fork_choice_control::block_processor: Validating block with slot: 6893 +2024-09-30T08:45:56.208996Z INFO fork_choice_control::block_processor: Validating block with slot: 6812 +2024-09-30T08:45:56.209389Z INFO fork_choice_control::block_processor: Validating block with slot: 6813 +2024-09-30T08:45:56.209757Z INFO fork_choice_control::block_processor: Validating block with slot: 6814 +2024-09-30T08:45:56.210332Z INFO fork_choice_control::block_processor: Validating block with slot: 6815 +2024-09-30T08:45:56.210640Z INFO fork_choice_control::block_processor: Validating block with slot: 6816 +2024-09-30T08:45:56.211107Z INFO fork_choice_control::block_processor: Validating block with slot: 6817 +2024-09-30T08:45:56.211406Z INFO fork_choice_control::block_processor: Validating block with slot: 6818 +2024-09-30T08:45:56.211857Z INFO fork_choice_control::block_processor: Validating block with slot: 6819 +2024-09-30T08:45:56.212047Z INFO fork_choice_control::block_processor: Validating block with slot: 6820 +2024-09-30T08:45:56.212739Z INFO fork_choice_control::block_processor: Validating block with slot: 6821 +2024-09-30T08:45:56.213472Z INFO fork_choice_control::block_processor: Validating block with slot: 6822 +2024-09-30T08:45:56.213487Z INFO fork_choice_control::block_processor: Validating block with slot: 6823 +2024-09-30T08:45:56.213899Z INFO fork_choice_control::block_processor: Validating block with slot: 6824 +2024-09-30T08:45:56.214644Z INFO fork_choice_control::block_processor: Validating block with slot: 6629 +2024-09-30T08:45:56.216129Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2a28c7a3c99153c7648f593ed4f4abfc04d02ea723ba3d5deaa1595aa8cf29c3, slot: 6629 +2024-09-30T08:45:56.226501Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6629 +2024-09-30T08:45:56.226520Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6629 +2024-09-30T08:45:56.239040Z INFO fork_choice_control::block_processor: Validating block with slot: 6630 +2024-09-30T08:45:56.240646Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd17721287055dd71301ccfa7e0a721c74a8961124068c1d0ea3e1eb852eb136f, slot: 6630 +2024-09-30T08:45:56.248793Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6630 +2024-09-30T08:45:56.248807Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6630 +2024-09-30T08:45:56.261681Z INFO fork_choice_control::block_processor: Validating block with slot: 6895 +2024-09-30T08:45:56.261718Z INFO fork_choice_control::block_processor: Validating block with slot: 6896 +2024-09-30T08:45:56.261721Z INFO fork_choice_control::block_processor: Validating block with slot: 6894 +2024-09-30T08:45:56.261763Z INFO fork_choice_control::block_processor: Validating block with slot: 6897 +2024-09-30T08:45:56.261915Z INFO fork_choice_control::block_processor: Validating block with slot: 6898 +2024-09-30T08:45:56.262894Z INFO fork_choice_control::block_processor: Validating block with slot: 6901 +2024-09-30T08:45:56.262976Z INFO fork_choice_control::block_processor: Validating block with slot: 6902 +2024-09-30T08:45:56.264062Z INFO fork_choice_control::block_processor: Validating block with slot: 6903 +2024-09-30T08:45:56.264132Z INFO fork_choice_control::block_processor: Validating block with slot: 6904 +2024-09-30T08:45:56.265088Z INFO fork_choice_control::block_processor: Validating block with slot: 6905 +2024-09-30T08:45:56.265289Z INFO fork_choice_control::block_processor: Validating block with slot: 6906 +2024-09-30T08:45:56.265421Z INFO fork_choice_control::block_processor: Validating block with slot: 6907 +2024-09-30T08:45:56.266304Z INFO fork_choice_control::block_processor: Validating block with slot: 6908 +2024-09-30T08:45:56.266881Z INFO fork_choice_control::block_processor: Validating block with slot: 6909 +2024-09-30T08:45:56.267588Z INFO fork_choice_control::block_processor: Validating block with slot: 6910 +2024-09-30T08:45:56.267850Z INFO fork_choice_control::block_processor: Validating block with slot: 6911 +2024-09-30T08:45:56.268209Z INFO fork_choice_control::block_processor: Validating block with slot: 6899 +2024-09-30T08:45:56.268531Z INFO fork_choice_control::block_processor: Validating block with slot: 6912 +2024-09-30T08:45:56.269308Z INFO fork_choice_control::block_processor: Validating block with slot: 6913 +2024-09-30T08:45:56.269430Z INFO fork_choice_control::block_processor: Validating block with slot: 6914 +2024-09-30T08:45:56.269606Z INFO fork_choice_control::block_processor: Validating block with slot: 6915 +2024-09-30T08:45:56.270628Z INFO fork_choice_control::block_processor: Validating block with slot: 6916 +2024-09-30T08:45:56.270645Z INFO fork_choice_control::block_processor: Validating block with slot: 6917 +2024-09-30T08:45:56.271112Z INFO fork_choice_control::block_processor: Validating block with slot: 6918 +2024-09-30T08:45:56.271584Z INFO fork_choice_control::block_processor: Validating block with slot: 6920 +2024-09-30T08:45:56.271702Z INFO fork_choice_control::block_processor: Validating block with slot: 6921 +2024-09-30T08:45:56.274774Z INFO fork_choice_control::block_processor: Validating block with slot: 6631 +2024-09-30T08:45:56.276640Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x10e5b629d0fac1b4ae068d08f3fa077fabfe088da11f8f131968db6321543274, slot: 6631 +2024-09-30T08:45:56.288424Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6631 +2024-09-30T08:45:56.288439Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6631 +2024-09-30T08:45:56.303128Z INFO fork_choice_control::block_processor: Validating block with slot: 6632 +2024-09-30T08:45:56.304104Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfdd3e8eb5cf2f53795049931dd27e5e3266e1c63dc86894775e31ddd0eecbb6c, slot: 6632 +2024-09-30T08:45:56.311213Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6632 +2024-09-30T08:45:56.311232Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6632 +2024-09-30T08:45:56.321313Z INFO fork_choice_control::block_processor: Validating block with slot: 6923 +2024-09-30T08:45:56.321315Z INFO fork_choice_control::block_processor: Validating block with slot: 6922 +2024-09-30T08:45:56.321330Z INFO fork_choice_control::block_processor: Validating block with slot: 6924 +2024-09-30T08:45:56.321357Z INFO fork_choice_control::block_processor: Validating block with slot: 6926 +2024-09-30T08:45:56.321361Z INFO fork_choice_control::block_processor: Validating block with slot: 6927 +2024-09-30T08:45:56.321430Z INFO fork_choice_control::block_processor: Validating block with slot: 6928 +2024-09-30T08:45:56.321535Z INFO fork_choice_control::block_processor: Validating block with slot: 6925 +2024-09-30T08:45:56.322351Z INFO fork_choice_control::block_processor: Validating block with slot: 6929 +2024-09-30T08:45:56.322847Z INFO fork_choice_control::block_processor: Validating block with slot: 6930 +2024-09-30T08:45:56.323180Z INFO fork_choice_control::block_processor: Validating block with slot: 6931 +2024-09-30T08:45:56.323856Z INFO fork_choice_control::block_processor: Validating block with slot: 6932 +2024-09-30T08:45:56.324142Z INFO fork_choice_control::block_processor: Validating block with slot: 6933 +2024-09-30T08:45:56.324365Z INFO fork_choice_control::block_processor: Validating block with slot: 6934 +2024-09-30T08:45:56.325238Z INFO fork_choice_control::block_processor: Validating block with slot: 6935 +2024-09-30T08:45:56.325470Z INFO fork_choice_control::block_processor: Validating block with slot: 6936 +2024-09-30T08:45:56.325585Z INFO fork_choice_control::block_processor: Validating block with slot: 6939 +2024-09-30T08:45:56.325604Z INFO fork_choice_control::block_processor: Validating block with slot: 6940 +2024-09-30T08:45:56.325783Z INFO fork_choice_control::block_processor: Validating block with slot: 6941 +2024-09-30T08:45:56.326541Z INFO fork_choice_control::block_processor: Validating block with slot: 6942 +2024-09-30T08:45:56.327007Z INFO fork_choice_control::block_processor: Validating block with slot: 6943 +2024-09-30T08:45:56.327215Z INFO fork_choice_control::block_processor: Validating block with slot: 6944 +2024-09-30T08:45:56.327298Z INFO fork_choice_control::block_processor: Validating block with slot: 6938 +2024-09-30T08:45:56.327623Z INFO fork_choice_control::block_processor: Validating block with slot: 6945 +2024-09-30T08:45:56.327758Z INFO fork_choice_control::block_processor: Validating block with slot: 6946 +2024-09-30T08:45:56.327944Z INFO fork_choice_control::block_processor: Validating block with slot: 6947 +2024-09-30T08:45:56.328248Z INFO fork_choice_control::block_processor: Validating block with slot: 6948 +2024-09-30T08:45:56.328407Z INFO fork_choice_control::block_processor: Validating block with slot: 6949 +2024-09-30T08:45:56.328830Z INFO fork_choice_control::block_processor: Validating block with slot: 6950 +2024-09-30T08:45:56.328919Z INFO fork_choice_control::block_processor: Validating block with slot: 6951 +2024-09-30T08:45:56.329737Z INFO fork_choice_control::block_processor: Validating block with slot: 6633 +2024-09-30T08:45:56.335310Z INFO fork_choice_control::block_processor: Validating block with slot: 6952 +2024-09-30T08:45:56.336335Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x888d7f75eb171c00b0336169dce64a051a7a44300f4a02835585bcf7f6b746b7, slot: 6633 +2024-09-30T08:45:56.356239Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6633 +2024-09-30T08:45:56.356259Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6633 +2024-09-30T08:45:56.369631Z INFO fork_choice_control::block_processor: Validating block with slot: 6634 +2024-09-30T08:45:56.370847Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6e8f88e311a2c56e0c85f16dcb305427bbb5f3854be1c2e8ff6080b1677f97ed, slot: 6634 +2024-09-30T08:45:56.377633Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6634 +2024-09-30T08:45:56.377651Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6634 +2024-09-30T08:45:56.390912Z INFO fork_choice_control::block_processor: Validating block with slot: 6635 +2024-09-30T08:45:56.392422Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x16ae49aa52ee1c5dfe108a8198dfb5954d76f3072a913c602ee18595353fa957, slot: 6635 +2024-09-30T08:45:56.399311Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6635 +2024-09-30T08:45:56.399322Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6635 +2024-09-30T08:45:56.413173Z INFO fork_choice_control::block_processor: Validating block with slot: 6636 +2024-09-30T08:45:56.414140Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x89858714fc733231ca8ec035754e43ad6775a664f855cad9d4d5b1106fbfdf31, slot: 6636 +2024-09-30T08:45:56.419682Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6636 +2024-09-30T08:45:56.419698Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6636 +2024-09-30T08:45:56.433523Z INFO fork_choice_control::block_processor: Validating block with slot: 6637 +2024-09-30T08:45:56.435961Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcbd34ec3b70e8df06984696df00382f39c908e4a05ccafb8c75f06a6696ab271, slot: 6637 +2024-09-30T08:45:56.445463Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6637 +2024-09-30T08:45:56.445483Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6637 +2024-09-30T08:45:56.459867Z INFO fork_choice_control::block_processor: Validating block with slot: 6638 +2024-09-30T08:45:56.461510Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0471aa8abc3cf485569c5e62f89c7d78c60f2755c7dfd5fc7ca4d026415b486b, slot: 6638 +2024-09-30T08:45:56.468869Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6638 +2024-09-30T08:45:56.468882Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6638 +2024-09-30T08:45:56.483774Z INFO fork_choice_control::block_processor: Validating block with slot: 6639 +2024-09-30T08:45:56.484732Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1bd12beb5d1d9ca2b22c06244f2e62dc6c3faf534cf415e9d29ac6a5b90cced6, slot: 6639 +2024-09-30T08:45:56.491201Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6639 +2024-09-30T08:45:56.491224Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6639 +2024-09-30T08:45:56.506695Z INFO fork_choice_control::block_processor: Validating block with slot: 6640 +2024-09-30T08:45:56.507717Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2eba90ffe2ba05ae80252f48d28b0ba475f15d68ff9d42a90e31d76394261ea6, slot: 6640 +2024-09-30T08:45:56.514675Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6640 +2024-09-30T08:45:56.514698Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6640 +2024-09-30T08:45:56.531723Z INFO fork_choice_control::block_processor: Validating block with slot: 6641 +2024-09-30T08:45:56.532996Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd9a8da0eb2ce039e01b4daae43ba4253e5253688d246c28cbdc9753a6bdba471, slot: 6641 +2024-09-30T08:45:56.540753Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6641 +2024-09-30T08:45:56.540775Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6641 +2024-09-30T08:45:56.555598Z INFO fork_choice_control::block_processor: Validating block with slot: 6642 +2024-09-30T08:45:56.556891Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf788723ec5eb56f3771f460651e7875eae8635cd287ed8b4d76cad494ec1bbac, slot: 6642 +2024-09-30T08:45:56.563299Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6642 +2024-09-30T08:45:56.563315Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6642 +2024-09-30T08:45:56.579037Z INFO fork_choice_control::block_processor: Validating block with slot: 6643 +2024-09-30T08:45:56.580837Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc7da2e86ba3d31a12173ac4c5c53b31b88fb6798ed340359352b9db4f0701269, slot: 6643 +2024-09-30T08:45:56.588466Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6643 +2024-09-30T08:45:56.588480Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6643 +2024-09-30T08:45:56.603968Z INFO fork_choice_control::block_processor: Validating block with slot: 6644 +2024-09-30T08:45:56.605196Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcf6d5f2b57b8f675e9d77a6b988aecca2c5a11f3f777ea0da058d259780d94ac, slot: 6644 +2024-09-30T08:45:56.615068Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6644 +2024-09-30T08:45:56.615087Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6644 +2024-09-30T08:45:56.630968Z INFO fork_choice_control::block_processor: Validating block with slot: 6645 +2024-09-30T08:45:56.631954Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7181f019aaa33ec0bc5f9cf3dfb338616146985c37dd740c8393931c890d63d0, slot: 6645 +2024-09-30T08:45:56.638285Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6645 +2024-09-30T08:45:56.638298Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6645 +2024-09-30T08:45:56.654073Z INFO fork_choice_control::block_processor: Validating block with slot: 6646 +2024-09-30T08:45:56.655053Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf4b3008abea86808ee4b1432581febe5e2805943021a22d7e312c72456ec258a, slot: 6646 +2024-09-30T08:45:56.661494Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6646 +2024-09-30T08:45:56.661511Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6646 +2024-09-30T08:45:56.679000Z INFO fork_choice_control::block_processor: Validating block with slot: 6647 +2024-09-30T08:45:56.680131Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7a7a28bcc3ba4d1ce3383435b6d13dab4f83fba8587aed3e5f97e526a7305770, slot: 6647 +2024-09-30T08:45:56.686417Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6647 +2024-09-30T08:45:56.686436Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6647 +2024-09-30T08:45:56.707949Z INFO fork_choice_control::block_processor: Validating block with slot: 6648 +2024-09-30T08:45:56.707953Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 206, root: 0x10796e9acbe17a530f3614d65b8ccb3cd3a9dbb88802ad1f80caca37475f027e, head slot: 6647, head root: 0x7a7a28bcc3ba4d1ce3383435b6d13dab4f83fba8587aed3e5f97e526a7305770) +2024-09-30T08:45:56.710633Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa70091d1f5b762a60f75200b7a6a4ea008abdff80a1af06e9da7847c06f12ed4, slot: 6648 +2024-09-30T08:45:56.721361Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6648 +2024-09-30T08:45:56.721380Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6648 +2024-09-30T08:45:56.738042Z INFO fork_choice_control::block_processor: Validating block with slot: 6649 +2024-09-30T08:45:56.739023Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x388925ba1ba19486ae64267ba6c785d55c4572edc98e3a4ccd654ca3c8b62ff2, slot: 6649 +2024-09-30T08:45:56.745654Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6649 +2024-09-30T08:45:56.745672Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6649 +2024-09-30T08:45:56.762501Z INFO fork_choice_control::block_processor: Validating block with slot: 6650 +2024-09-30T08:45:56.764203Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x12252ad45d7f3eda23278fad560b7b037f069e2f982342263507e91b9e5b3bd2, slot: 6650 +2024-09-30T08:45:56.771591Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6650 +2024-09-30T08:45:56.771605Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6650 +2024-09-30T08:45:56.788961Z INFO fork_choice_control::block_processor: Validating block with slot: 6651 +2024-09-30T08:45:56.790428Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5c817aed8f81b814c2aff3a92946d419a59f4a3eb0360da2121d4095e8b3ef56, slot: 6651 +2024-09-30T08:45:56.797765Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6651 +2024-09-30T08:45:56.797783Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6651 +2024-09-30T08:45:56.815125Z INFO fork_choice_control::block_processor: Validating block with slot: 6652 +2024-09-30T08:45:56.816118Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe35e99c92e63dbd74339eefd9020b66ed62fe267dcc82e9c9c89a6ba2b7e081a, slot: 6652 +2024-09-30T08:45:56.822059Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6652 +2024-09-30T08:45:56.822073Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6652 +2024-09-30T08:45:56.839338Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 6592 +2024-09-30T08:45:56.840058Z INFO fork_choice_control::block_processor: Validating block with slot: 6653 +2024-09-30T08:45:56.841039Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x12c0be1b77e6259ec136464e100046165722bce4667eeb27ba98655c0c4963ce, slot: 6653 +2024-09-30T08:45:56.847256Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6653 +2024-09-30T08:45:56.847276Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6653 +2024-09-30T08:45:56.866029Z INFO fork_choice_control::block_processor: Validating block with slot: 6654 +2024-09-30T08:45:56.867435Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4aec8a5a7d188ac04e748ebe378b5a53ba8663e162769f9789478a04561be28f, slot: 6654 +2024-09-30T08:45:56.875061Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6654 +2024-09-30T08:45:56.875085Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6654 +2024-09-30T08:45:56.894136Z INFO fork_choice_control::block_processor: Validating block with slot: 6655 +2024-09-30T08:45:56.895119Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x39c24f76d837bf03754f3ae635f885d88a0603fbc0add0ac725739c9fb629e2d, slot: 6655 +2024-09-30T08:45:56.901414Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6655 +2024-09-30T08:45:56.901433Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6655 +2024-09-30T08:45:56.919437Z INFO fork_choice_control::block_processor: Validating block with slot: 6656 +2024-09-30T08:45:56.920419Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeb6625e63232994bed3b5039007915f5c1685095808b69a6c689c8655d71544f, slot: 6656 +2024-09-30T08:45:57.020049Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6656 +2024-09-30T08:45:57.020071Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6656 +2024-09-30T08:45:57.030388Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6656) +2024-09-30T08:45:57.030527Z INFO fork_choice_control::block_processor: Validating block with slot: 6657 +2024-09-30T08:45:57.031481Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x52a3efe1c1265d0c45190e9f2451d2b3480a868d904588c61c352b9817273aa8, slot: 6657 +2024-09-30T08:45:57.104680Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6657 +2024-09-30T08:45:57.104706Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6657 +2024-09-30T08:45:57.115357Z INFO fork_choice_control::block_processor: Validating block with slot: 6658 +2024-09-30T08:45:57.117267Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x08c51eae21cc76ba174597af526feade44f0e9f594b108b5d86ca26850eda42b, slot: 6658 +2024-09-30T08:45:57.127380Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6658 +2024-09-30T08:45:57.127402Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6658 +2024-09-30T08:45:57.138246Z INFO fork_choice_control::block_processor: Validating block with slot: 6659 +2024-09-30T08:45:57.140637Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaf323ee21dda32714ba7385c8109b1838d286f2029f29a440c999aa8221f9edb, slot: 6659 +2024-09-30T08:45:57.150051Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6659 +2024-09-30T08:45:57.150069Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6659 +2024-09-30T08:45:57.161489Z INFO fork_choice_control::block_processor: Validating block with slot: 6660 +2024-09-30T08:45:57.162728Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x454fc891485aa6256ca20a94e667e14fd4e3043da7dfc0d2d53af5cf878a1a05, slot: 6660 +2024-09-30T08:45:57.169451Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6660 +2024-09-30T08:45:57.169462Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6660 +2024-09-30T08:45:57.181071Z INFO fork_choice_control::block_processor: Validating block with slot: 6661 +2024-09-30T08:45:57.182037Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x705ba8587c5fc8b6106abb92d633cd392cb5732b999b91c58f725b2a0d57189e, slot: 6661 +2024-09-30T08:45:57.187938Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6661 +2024-09-30T08:45:57.188003Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6661 +2024-09-30T08:45:57.200130Z INFO fork_choice_control::block_processor: Validating block with slot: 6662 +2024-09-30T08:45:57.201527Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x78228298036c21e800e330726496b3491a1135f87238eca3749cad448a8ab551, slot: 6662 +2024-09-30T08:45:57.215675Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6662 +2024-09-30T08:45:57.215696Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6662 +2024-09-30T08:45:57.230965Z INFO fork_choice_control::block_processor: Validating block with slot: 6663 +2024-09-30T08:45:57.232233Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x49aa5487fe2d5e3dc5441e1533ed27dd73b1d60a241ce9c56eabc86fac2bd5bf, slot: 6663 +2024-09-30T08:45:57.242873Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6663 +2024-09-30T08:45:57.242926Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6663 +2024-09-30T08:45:57.258049Z INFO fork_choice_control::block_processor: Validating block with slot: 6664 +2024-09-30T08:45:57.261479Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe788494ee54d3623b6f7bbe73897a7d92d51480268a5ac0b82454ca1a12bac98, slot: 6664 +2024-09-30T08:45:57.275396Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6664 +2024-09-30T08:45:57.275421Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6664 +2024-09-30T08:45:57.288160Z INFO fork_choice_control::block_processor: Validating block with slot: 6665 +2024-09-30T08:45:57.289710Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeb0eaec78008e052098e26f48dcece5f3dea7472ce61321f26cfa8eeb62ecedb, slot: 6665 +2024-09-30T08:45:57.296590Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6665 +2024-09-30T08:45:57.296609Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6665 +2024-09-30T08:45:57.309760Z INFO fork_choice_control::block_processor: Validating block with slot: 6667 +2024-09-30T08:45:57.311407Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x203c50f072d204f47fa56a0e6518022dcba174a3af6d61cc3991aae04c166495, slot: 6667 +2024-09-30T08:45:57.320231Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6667 +2024-09-30T08:45:57.320244Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6667 +2024-09-30T08:45:57.333763Z INFO fork_choice_control::block_processor: Validating block with slot: 6668 +2024-09-30T08:45:57.334725Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd9bdf8cb12e74f04085a9e92ef95b7c9cad97e1b515cc18dc77611d116a3acfd, slot: 6668 +2024-09-30T08:45:57.340331Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6668 +2024-09-30T08:45:57.340354Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6668 +2024-09-30T08:45:57.353483Z INFO fork_choice_control::block_processor: Validating block with slot: 6669 +2024-09-30T08:45:57.355039Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf233aed18d347f714159941a19b7adfcab8979ccbd533265181a50f5ccf9ed10, slot: 6669 +2024-09-30T08:45:57.364353Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6669 +2024-09-30T08:45:57.364374Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6669 +2024-09-30T08:45:57.378191Z INFO fork_choice_control::block_processor: Validating block with slot: 6670 +2024-09-30T08:45:57.379287Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x750615b22322b9327bd35f4644b4c38da362a61aa939ee999bc885fa02112f4a, slot: 6670 +2024-09-30T08:45:57.385172Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6670 +2024-09-30T08:45:57.385184Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6670 +2024-09-30T08:45:57.399238Z INFO fork_choice_control::block_processor: Validating block with slot: 6671 +2024-09-30T08:45:57.400335Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbf2594f56e50d274feb48ba3d6469dc6c5e793598fc19c21286fefe4508a1880, slot: 6671 +2024-09-30T08:45:57.406243Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6671 +2024-09-30T08:45:57.406258Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6671 +2024-09-30T08:45:57.420441Z INFO fork_choice_control::block_processor: Validating block with slot: 6672 +2024-09-30T08:45:57.421531Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x70165b01d07a0eee7c3f5312a6a773f32fd8be080313f728f6ad0e789696c072, slot: 6672 +2024-09-30T08:45:57.427551Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6672 +2024-09-30T08:45:57.427568Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6672 +2024-09-30T08:45:57.441914Z INFO fork_choice_control::block_processor: Validating block with slot: 6673 +2024-09-30T08:45:57.443965Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd920718148d2df298410b7591abb3f1ed18f52e321aa5ce5a0cabd30d2a848df, slot: 6673 +2024-09-30T08:45:57.452184Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6673 +2024-09-30T08:45:57.452196Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6673 +2024-09-30T08:45:57.466758Z INFO fork_choice_control::block_processor: Validating block with slot: 6674 +2024-09-30T08:45:57.467714Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe2a6304498392c26377550a361272418111414975c9fa2ab4cffaca3b5d61c04, slot: 6674 +2024-09-30T08:45:57.473778Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6674 +2024-09-30T08:45:57.473798Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6674 +2024-09-30T08:45:57.488325Z INFO fork_choice_control::block_processor: Validating block with slot: 6675 +2024-09-30T08:45:57.489309Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcefb22426924ab7b16fa64d0558d3570db3056ea3816c7516fded206a59ee26b, slot: 6675 +2024-09-30T08:45:57.495301Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6675 +2024-09-30T08:45:57.495319Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6675 +2024-09-30T08:45:57.510191Z INFO fork_choice_control::block_processor: Validating block with slot: 6676 +2024-09-30T08:45:57.511282Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x299dd6387b1856d871b43972fe064d5d03ea8c6540468a37804022bedc275ea9, slot: 6676 +2024-09-30T08:45:57.517971Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6676 +2024-09-30T08:45:57.517986Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6676 +2024-09-30T08:45:57.533185Z INFO fork_choice_control::block_processor: Validating block with slot: 6677 +2024-09-30T08:45:57.536051Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x59ce14518a8ba808f09e7720dffe37c08d0dd3fb1d2b6ed9458d9a8e4de30576, slot: 6677 +2024-09-30T08:45:57.546814Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6677 +2024-09-30T08:45:57.546831Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6677 +2024-09-30T08:45:57.562658Z INFO fork_choice_control::block_processor: Validating block with slot: 6678 +2024-09-30T08:45:57.563644Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x521dac3148789a1c3b882b0bf6e37fe2820c1a0161e1cad151ec360bc080c3b6, slot: 6678 +2024-09-30T08:45:57.569719Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6678 +2024-09-30T08:45:57.569736Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6678 +2024-09-30T08:45:57.586105Z INFO fork_choice_control::block_processor: Validating block with slot: 6679 +2024-09-30T08:45:57.587328Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xecab0a0ff88303f7f805f113b966180cae8181b4b00bb577ec77803d8090bb2a, slot: 6679 +2024-09-30T08:45:57.593760Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6679 +2024-09-30T08:45:57.593781Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6679 +2024-09-30T08:45:57.615048Z INFO fork_choice_control::block_processor: Validating block with slot: 6680 +2024-09-30T08:45:57.615050Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 207, root: 0x17fdc10d0335fec3f681e399ce2cdd3257a0aee415e1eb82bbcce88d9e8aa577, head slot: 6679, head root: 0xecab0a0ff88303f7f805f113b966180cae8181b4b00bb577ec77803d8090bb2a) +2024-09-30T08:45:57.617445Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb7f3bdef9e4cef8726f96960ef1a47e1ab251952829c5bb7d412c3dd9c695659, slot: 6680 +2024-09-30T08:45:57.628433Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6680 +2024-09-30T08:45:57.628453Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6680 +2024-09-30T08:45:57.645044Z INFO fork_choice_control::block_processor: Validating block with slot: 6681 +2024-09-30T08:45:57.646180Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbd0513bb4d99b8007d6d4ab5cdf0ac9f0102582a8e4626ca4e1342b82927f74b, slot: 6681 +2024-09-30T08:45:57.652458Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6681 +2024-09-30T08:45:57.652471Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6681 +2024-09-30T08:45:57.669205Z INFO fork_choice_control::block_processor: Validating block with slot: 6682 +2024-09-30T08:45:57.671584Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x382bc75c3b7b5841b91d279e2f38352265f87672ba6119c7fef191dda4f9b76f, slot: 6682 +2024-09-30T08:45:57.682283Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6682 +2024-09-30T08:45:57.682302Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6682 +2024-09-30T08:45:57.699300Z INFO fork_choice_control::block_processor: Validating block with slot: 6683 +2024-09-30T08:45:57.700285Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x97bf65e22b270f9a69206f13a53f28e2f0ebaf1d469b4b4f6a84aa404294a3da, slot: 6683 +2024-09-30T08:45:57.706632Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6683 +2024-09-30T08:45:57.706658Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6683 +2024-09-30T08:45:57.724445Z INFO fork_choice_control::block_processor: Validating block with slot: 6684 +2024-09-30T08:45:57.725435Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe18073e703336af57403a054cca6fca158508161c99aacc1c0d55998f6402c6a, slot: 6684 +2024-09-30T08:45:57.731927Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6684 +2024-09-30T08:45:57.731942Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6684 +2024-09-30T08:45:57.744650Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 6624 +2024-09-30T08:45:57.749922Z INFO fork_choice_control::block_processor: Validating block with slot: 6685 +2024-09-30T08:45:57.750953Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7855101279751ac47a93e29991e9bde5ea19b1675a1f3400be4fd7b84c278824, slot: 6685 +2024-09-30T08:45:57.757771Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6685 +2024-09-30T08:45:57.757793Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6685 +2024-09-30T08:45:57.776145Z INFO fork_choice_control::block_processor: Validating block with slot: 6686 +2024-09-30T08:45:57.776752Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb8aa9895d9d73cc24d0634e96f80055c9b0ddfc480003675468694ddc84781fb, slot: 6686 +2024-09-30T08:45:57.780956Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6686 +2024-09-30T08:45:57.780968Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6686 +2024-09-30T08:45:57.799314Z INFO fork_choice_control::block_processor: Validating block with slot: 6687 +2024-09-30T08:45:57.801491Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x577a447970628cb685d7b7a9b4a84b6ac20f1fcaea8f08e651e637b701ae4617, slot: 6687 +2024-09-30T08:45:57.812333Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6687 +2024-09-30T08:45:57.812353Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6687 +2024-09-30T08:45:57.830911Z INFO fork_choice_control::block_processor: Validating block with slot: 6688 +2024-09-30T08:45:57.832472Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb1490cd1436fa30466e3588f1c15037416a2346d2806e51d28ddc7f7385b4f10, slot: 6688 +2024-09-30T08:45:57.933977Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6688 +2024-09-30T08:45:57.933999Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6688 +2024-09-30T08:45:57.944904Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6688) +2024-09-30T08:45:57.945139Z INFO fork_choice_control::block_processor: Validating block with slot: 6689 +2024-09-30T08:45:57.946489Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x962c80899b192d63713e242de1f5de052c7d480f60da2a10ade2e0a0b7fb0aab, slot: 6689 +2024-09-30T08:45:58.022844Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6689 +2024-09-30T08:45:58.022864Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6689 +2024-09-30T08:45:58.034438Z INFO fork_choice_control::block_processor: Validating block with slot: 6690 +2024-09-30T08:45:58.035674Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x597b20402897fbd6546f7e704b4fbb529bafb0c7cecbc3c2276f98fe6714cf7d, slot: 6690 +2024-09-30T08:45:58.043228Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6690 +2024-09-30T08:45:58.043246Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6690 +2024-09-30T08:45:58.054664Z INFO fork_choice_control::block_processor: Validating block with slot: 6691 +2024-09-30T08:45:58.057904Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8a4951b0ee23ec84b2165b8215aea8727b5553e890d3170c5fa88e57a0862e28, slot: 6691 +2024-09-30T08:45:58.069668Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6691 +2024-09-30T08:45:58.069685Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6691 +2024-09-30T08:45:58.082035Z INFO fork_choice_control::block_processor: Validating block with slot: 6692 +2024-09-30T08:45:58.083273Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x145fb3a948e46bba883cd12e27234f49bf3d0a4113791422e7eaa521a6106d07, slot: 6692 +2024-09-30T08:45:58.090355Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6692 +2024-09-30T08:45:58.090386Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6692 +2024-09-30T08:45:58.102640Z INFO fork_choice_control::block_processor: Validating block with slot: 6693 +2024-09-30T08:45:58.103876Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7c8622d13f33ab781c1735dd9cd4ace97352ca5bf1e0c99258b2eb334ec95ae7, slot: 6693 +2024-09-30T08:45:58.112562Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6693 +2024-09-30T08:45:58.112584Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6693 +2024-09-30T08:45:58.125460Z INFO fork_choice_control::block_processor: Validating block with slot: 6694 +2024-09-30T08:45:58.126721Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3fd4397cfdb61cc8ff9e17b9dfefcb521ca8fd8846dd3a69e6538338cd6a9129, slot: 6694 +2024-09-30T08:45:58.133155Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6694 +2024-09-30T08:45:58.133170Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6694 +2024-09-30T08:45:58.146302Z INFO fork_choice_control::block_processor: Validating block with slot: 6695 +2024-09-30T08:45:58.147449Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x190ca74eed50382f7ccc5f591344c7a6550663baecd5dcfc74439a0161444108, slot: 6695 +2024-09-30T08:45:58.153837Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6695 +2024-09-30T08:45:58.153851Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6695 +2024-09-30T08:45:58.166917Z INFO fork_choice_control::block_processor: Validating block with slot: 6696 +2024-09-30T08:45:58.169875Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9f945fffcc1798ed189df7c03719c8c615c42250310e17d55cce67b090527d40, slot: 6696 +2024-09-30T08:45:58.181479Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6696 +2024-09-30T08:45:58.181500Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6696 +2024-09-30T08:45:58.195037Z INFO fork_choice_control::block_processor: Validating block with slot: 6697 +2024-09-30T08:45:58.196144Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd8603cdf5dcea96b90b0f0d3020c032d6f4cf4c2accad74370f3f2fd5eca56f0, slot: 6697 +2024-09-30T08:45:58.201950Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6697 +2024-09-30T08:45:58.201962Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6697 +2024-09-30T08:45:58.215460Z INFO fork_choice_control::block_processor: Validating block with slot: 6698 +2024-09-30T08:45:58.216822Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1a4b84d54d610294d8059c0c6c57f1cbc14ddb038df7a1d9028dd633e8a7a198, slot: 6698 +2024-09-30T08:45:58.223782Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6698 +2024-09-30T08:45:58.223801Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6698 +2024-09-30T08:45:58.237485Z INFO fork_choice_control::block_processor: Validating block with slot: 6699 +2024-09-30T08:45:58.238973Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfc54006fa313b8375979570623b0f04719d580ec7403ee3e5dbcf5fa7c844196, slot: 6699 +2024-09-30T08:45:58.245689Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6699 +2024-09-30T08:45:58.245707Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6699 +2024-09-30T08:45:58.259781Z INFO fork_choice_control::block_processor: Validating block with slot: 6700 +2024-09-30T08:45:58.263308Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8952b56f37ca366e370f540606c16873815e75aa11b4721b3cda25bbb45a5599, slot: 6700 +2024-09-30T08:45:58.276499Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6700 +2024-09-30T08:45:58.276519Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6700 +2024-09-30T08:45:58.291544Z INFO fork_choice_control::block_processor: Validating block with slot: 6701 +2024-09-30T08:45:58.292900Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x703793541cb998fc1e3f13478602b560c5813170d483c738709ac4e90f76d213, slot: 6701 +2024-09-30T08:45:58.299243Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6701 +2024-09-30T08:45:58.299260Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6701 +2024-09-30T08:45:58.314079Z INFO fork_choice_control::block_processor: Validating block with slot: 6702 +2024-09-30T08:45:58.315714Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7792cd4a606d9cb5f7317fc90926ee2508ecec2a751849e350d1ccbd3e735ec1, slot: 6702 +2024-09-30T08:45:58.322851Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6702 +2024-09-30T08:45:58.322864Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6702 +2024-09-30T08:45:58.337983Z INFO fork_choice_control::block_processor: Validating block with slot: 6703 +2024-09-30T08:45:58.339540Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcdf4a22cdf430b8eb468ddda1bf068150e18c8e521ae68f1f11dc3f31f8a89e6, slot: 6703 +2024-09-30T08:45:58.347211Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6703 +2024-09-30T08:45:58.347230Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6703 +2024-09-30T08:45:58.362931Z INFO fork_choice_control::block_processor: Validating block with slot: 6704 +2024-09-30T08:45:58.363903Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc0cc902e9613ece82cfef791b094c75a6fbf7df75c375dedc899d7cce047d183, slot: 6704 +2024-09-30T08:45:58.369829Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6704 +2024-09-30T08:45:58.369841Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6704 +2024-09-30T08:45:58.385409Z INFO fork_choice_control::block_processor: Validating block with slot: 6705 +2024-09-30T08:45:58.386368Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xec08da566d2befe3ccbdcc7f94faffade37777a306cf5ae36020fced3217adb6, slot: 6705 +2024-09-30T08:45:58.392674Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6705 +2024-09-30T08:45:58.392696Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6705 +2024-09-30T08:45:58.408504Z INFO fork_choice_control::block_processor: Validating block with slot: 6706 +2024-09-30T08:45:58.409597Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfe49582917383cf101f04cb6152b9143b4afac10a16d0062fa376d553be00def, slot: 6706 +2024-09-30T08:45:58.415606Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6706 +2024-09-30T08:45:58.415619Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6706 +2024-09-30T08:45:58.431449Z INFO fork_choice_control::block_processor: Validating block with slot: 6707 +2024-09-30T08:45:58.432540Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaf25f1235ccabbf26e589a4dcafff149e3b077282d021deb92cf02db843f7d56, slot: 6707 +2024-09-30T08:45:58.438628Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6707 +2024-09-30T08:45:58.438641Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6707 +2024-09-30T08:45:58.454805Z INFO fork_choice_control::block_processor: Validating block with slot: 6708 +2024-09-30T08:45:58.457810Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x55114f6a2bbbfdba8d7fca3e425315afde6af835ca298db484ef21c9dafb4446, slot: 6708 +2024-09-30T08:45:58.468483Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6708 +2024-09-30T08:45:58.468497Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6708 +2024-09-30T08:45:58.485116Z INFO fork_choice_control::block_processor: Validating block with slot: 6709 +2024-09-30T08:45:58.486076Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x09ee243c6d7629b85c50b38dfe174a91e12c531c7820e353134e1833a759f7ed, slot: 6709 +2024-09-30T08:45:58.492363Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6709 +2024-09-30T08:45:58.492385Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6709 +2024-09-30T08:45:58.509250Z INFO fork_choice_control::block_processor: Validating block with slot: 6710 +2024-09-30T08:45:58.510345Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8e4e57c62f9c285f7d8497bfb9acb822a8ca58150c323488fba95c22ab930308, slot: 6710 +2024-09-30T08:45:58.516121Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6710 +2024-09-30T08:45:58.516133Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6710 +2024-09-30T08:45:58.533218Z INFO fork_choice_control::block_processor: Validating block with slot: 6711 +2024-09-30T08:45:58.534189Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5481fc1fdee37700c6382340c23511ea36a76980913d4267329048cd1bf5bd10, slot: 6711 +2024-09-30T08:45:58.540185Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6711 +2024-09-30T08:45:58.540208Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6711 +2024-09-30T08:45:58.562851Z INFO fork_choice_control::block_processor: Validating block with slot: 6712 +2024-09-30T08:45:58.562847Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 208, root: 0xeb6625e63232994bed3b5039007915f5c1685095808b69a6c689c8655d71544f, head slot: 6711, head root: 0x5481fc1fdee37700c6382340c23511ea36a76980913d4267329048cd1bf5bd10) +2024-09-30T08:45:58.565232Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x86f70fa850d4c0f80cd98d9518f47542c1af5be4c76d6db8d684dff8bbf1c92b, slot: 6712 +2024-09-30T08:45:58.574932Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6712 +2024-09-30T08:45:58.574956Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6712 +2024-09-30T08:45:58.592674Z INFO fork_choice_control::block_processor: Validating block with slot: 6713 +2024-09-30T08:45:58.593799Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe621d48549644a2f6609b2fbc9db1ca02d678168c708d5d3b42f9eb4fea8ffd2, slot: 6713 +2024-09-30T08:45:58.601106Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6713 +2024-09-30T08:45:58.601122Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6713 +2024-09-30T08:45:58.619503Z INFO fork_choice_control::block_processor: Validating block with slot: 6715 +2024-09-30T08:45:58.621455Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xed0bdc4bd8b23d9cef6c46121aed115e29559666b80fc89984ec3aa9a9a98773, slot: 6715 +2024-09-30T08:45:58.633067Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6715 +2024-09-30T08:45:58.633088Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6715 +2024-09-30T08:45:58.652250Z INFO fork_choice_control::block_processor: Validating block with slot: 6716 +2024-09-30T08:45:58.653798Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4f9f58446b19959df102049de3739bf313fd9e6ea7f50c8dc9aec46dfa98af9e, slot: 6716 +2024-09-30T08:45:58.664366Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6716 +2024-09-30T08:45:58.664388Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6716 +2024-09-30T08:45:58.683946Z INFO fork_choice_control::block_processor: Validating block with slot: 6717 +2024-09-30T08:45:58.684932Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8cfd9866ef72a478587e1a37d1ac549c10e649a628be35942f12eaea1dc8124e, slot: 6717 +2024-09-30T08:45:58.691749Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6717 +2024-09-30T08:45:58.691769Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6717 +2024-09-30T08:45:58.696342Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 6656 +2024-09-30T08:45:58.710940Z INFO fork_choice_control::block_processor: Validating block with slot: 6718 +2024-09-30T08:45:58.713045Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x040cb654dc6762f8e109aaca612142b01e6263cb5a309e57a5af28c5a5aaa18d, slot: 6718 +2024-09-30T08:45:58.722378Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6718 +2024-09-30T08:45:58.722396Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6718 +2024-09-30T08:45:58.741398Z INFO fork_choice_control::block_processor: Validating block with slot: 6719 +2024-09-30T08:45:58.742389Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3e8a1f2cca0ca55fe72277471881d6c68554510a04d3288e63dcd193e40712ae, slot: 6719 +2024-09-30T08:45:58.748439Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6719 +2024-09-30T08:45:58.748458Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6719 +2024-09-30T08:45:58.767949Z INFO fork_choice_control::block_processor: Validating block with slot: 6720 +2024-09-30T08:45:58.769070Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x286f2f97ee19b3ee5c3754faa46adf1b03bbd7de0544ddf2393fd413b8c18a83, slot: 6720 +2024-09-30T08:45:58.873113Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6720 +2024-09-30T08:45:58.873134Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6720 +2024-09-30T08:45:58.884173Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6720) +2024-09-30T08:45:58.884404Z INFO fork_choice_control::block_processor: Validating block with slot: 6721 +2024-09-30T08:45:58.886326Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe111d2472a93a21cc41ccae0a224766654805faaad113c97a3a655235b675ce0, slot: 6721 +2024-09-30T08:45:58.963610Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6721 +2024-09-30T08:45:58.963631Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6721 +2024-09-30T08:45:58.975098Z INFO fork_choice_control::block_processor: Validating block with slot: 6722 +2024-09-30T08:45:58.976882Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc9e326e23dc87e287e8195d6cab612a6a20355a1284d60f9a2c36f587fe0e999, slot: 6722 +2024-09-30T08:45:58.985594Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6722 +2024-09-30T08:45:58.985606Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6722 +2024-09-30T08:45:58.997487Z INFO fork_choice_control::block_processor: Validating block with slot: 6723 +2024-09-30T08:45:58.998594Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8667754b60fdea16c9ee6d255d51d2329e296d2aef18d8c8bb1a75ea4bb6132d, slot: 6723 +2024-09-30T08:45:59.005014Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6723 +2024-09-30T08:45:59.005028Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6723 +2024-09-30T08:45:59.016934Z INFO fork_choice_control::block_processor: Validating block with slot: 6724 +2024-09-30T08:45:59.018053Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeaef6a63d01f517dd1ea2b99fd290f0d791ec310eea88f821d998a31ee60baf3, slot: 6724 +2024-09-30T08:45:59.025108Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6724 +2024-09-30T08:45:59.025128Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6724 +2024-09-30T08:45:59.037033Z INFO fork_choice_control::block_processor: Validating block with slot: 6725 +2024-09-30T08:45:59.038286Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaefd50aa4731f9f39707aa9ce66277985eae32f29046e4b636f3797608f3d5ac, slot: 6725 +2024-09-30T08:45:59.045666Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6725 +2024-09-30T08:45:59.045687Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6725 +2024-09-30T08:45:59.057923Z INFO fork_choice_control::block_processor: Validating block with slot: 6726 +2024-09-30T08:45:59.061446Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4c6f6d90df87fca5c7b007d128ad7042111a39e89e66f3da8fe4a7f0f4d6f33d, slot: 6726 +2024-09-30T08:45:59.074180Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6726 +2024-09-30T08:45:59.074201Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6726 +2024-09-30T08:45:59.086846Z INFO fork_choice_control::block_processor: Validating block with slot: 6727 +2024-09-30T08:45:59.088910Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc37cf7fd81d597b6efa9cd858b1d6f944fa0bba77b1e23098116ec813d1fdfe7, slot: 6727 +2024-09-30T08:45:59.097449Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6727 +2024-09-30T08:45:59.097470Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6727 +2024-09-30T08:45:59.110678Z INFO fork_choice_control::block_processor: Validating block with slot: 6728 +2024-09-30T08:45:59.111917Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x49cbab992ad96c3cd19af1b3e2d676abc214c51bdcdbcb05cb25271b227faf2f, slot: 6728 +2024-09-30T08:45:59.117939Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6728 +2024-09-30T08:45:59.117951Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6728 +2024-09-30T08:45:59.131344Z INFO fork_choice_control::block_processor: Validating block with slot: 6729 +2024-09-30T08:45:59.132436Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa78b3ab102f873890be0c913eba65c90ba0527efd51e05a526cc8b60c9ef8605, slot: 6729 +2024-09-30T08:45:59.138445Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6729 +2024-09-30T08:45:59.138457Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6729 +2024-09-30T08:45:59.152017Z INFO fork_choice_control::block_processor: Validating block with slot: 6730 +2024-09-30T08:45:59.153124Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x51bfb2a7c0b9ef4a83eb1b4a26f55f0b6a289e62127a11b993ced1d28a0aa5d1, slot: 6730 +2024-09-30T08:45:59.159614Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6730 +2024-09-30T08:45:59.159633Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6730 +2024-09-30T08:45:59.173762Z INFO fork_choice_control::block_processor: Validating block with slot: 6731 +2024-09-30T08:45:59.175009Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x459e5878d0163ccb840c3b8790c7595c3fbadac9c73b8e3b4f991e7903e2687f, slot: 6731 +2024-09-30T08:45:59.175267Z INFO fork_choice_control::block_processor: Validating block with slot: 7081 +2024-09-30T08:45:59.182630Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6731 +2024-09-30T08:45:59.182644Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6731 +2024-09-30T08:45:59.184439Z INFO fork_choice_control::block_processor: Validating block with slot: 7082 +2024-09-30T08:45:59.184453Z INFO fork_choice_control::block_processor: Validating block with slot: 7084 +2024-09-30T08:45:59.184455Z INFO fork_choice_control::block_processor: Validating block with slot: 7083 +2024-09-30T08:45:59.184536Z INFO fork_choice_control::block_processor: Validating block with slot: 7085 +2024-09-30T08:45:59.184565Z INFO fork_choice_control::block_processor: Validating block with slot: 7086 +2024-09-30T08:45:59.184951Z INFO fork_choice_control::block_processor: Validating block with slot: 7087 +2024-09-30T08:45:59.196698Z INFO fork_choice_control::block_processor: Validating block with slot: 6732 +2024-09-30T08:45:59.198228Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4764f0a1722a79fe2a476d8a8dfccad178758bb4a02fcea0f62b6362183b73bd, slot: 6732 +2024-09-30T08:45:59.205018Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6732 +2024-09-30T08:45:59.205032Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6732 +2024-09-30T08:45:59.221917Z INFO fork_choice_control::block_processor: Validating block with slot: 6733 +2024-09-30T08:45:59.224716Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x77c01b00505a829640bd91d682d4b2ff064f5d47ad4f943d4ddc61d389047ef5, slot: 6733 +2024-09-30T08:45:59.233093Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6733 +2024-09-30T08:45:59.233225Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6733 +2024-09-30T08:45:59.249418Z INFO fork_choice_control::block_processor: Validating block with slot: 6734 +2024-09-30T08:45:59.251063Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf25a27133231c11d1067980ca2d6e60180d08355cf5ecbd40af4ef0b807a6656, slot: 6734 +2024-09-30T08:45:59.258783Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6734 +2024-09-30T08:45:59.258800Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6734 +2024-09-30T08:45:59.274087Z INFO fork_choice_control::block_processor: Validating block with slot: 6736 +2024-09-30T08:45:59.277624Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4b73032baa4afa91c9cb72e1e2ef79a14dcf33b9becc61bdc2cd2aa2e3514783, slot: 6736 +2024-09-30T08:45:59.292350Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6736 +2024-09-30T08:45:59.292369Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6736 +2024-09-30T08:45:59.307763Z INFO fork_choice_control::block_processor: Validating block with slot: 6737 +2024-09-30T08:45:59.311479Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x64c0cf2d15b43d197a53b3f47bedb4828083c156121e2525022a27dc0be26fc1, slot: 6737 +2024-09-30T08:45:59.313304Z INFO fork_choice_control::block_processor: Validating block with slot: 7088 +2024-09-30T08:45:59.325748Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6737 +2024-09-30T08:45:59.325770Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6737 +2024-09-30T08:45:59.342085Z INFO fork_choice_control::block_processor: Validating block with slot: 6738 +2024-09-30T08:45:59.343466Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9faaa2899806ecd722b1b50d0bfa114193fe9f55d6fc258eec3d1934c29edcc9, slot: 6738 +2024-09-30T08:45:59.352210Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6738 +2024-09-30T08:45:59.352225Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6738 +2024-09-30T08:45:59.360553Z INFO fork_choice_control::block_processor: Validating block with slot: 7090 +2024-09-30T08:45:59.360555Z INFO fork_choice_control::block_processor: Validating block with slot: 7089 +2024-09-30T08:45:59.360595Z INFO fork_choice_control::block_processor: Validating block with slot: 7092 +2024-09-30T08:45:59.360613Z INFO fork_choice_control::block_processor: Validating block with slot: 7091 +2024-09-30T08:45:59.360632Z INFO fork_choice_control::block_processor: Validating block with slot: 7095 +2024-09-30T08:45:59.360622Z INFO fork_choice_control::block_processor: Validating block with slot: 7094 +2024-09-30T08:45:59.361108Z INFO fork_choice_control::block_processor: Validating block with slot: 7093 +2024-09-30T08:45:59.361590Z INFO fork_choice_control::block_processor: Validating block with slot: 7096 +2024-09-30T08:45:59.361820Z INFO fork_choice_control::block_processor: Validating block with slot: 7097 +2024-09-30T08:45:59.362227Z INFO fork_choice_control::block_processor: Validating block with slot: 7098 +2024-09-30T08:45:59.362804Z INFO fork_choice_control::block_processor: Validating block with slot: 7099 +2024-09-30T08:45:59.363037Z INFO fork_choice_control::block_processor: Validating block with slot: 7100 +2024-09-30T08:45:59.363741Z INFO fork_choice_control::block_processor: Validating block with slot: 7101 +2024-09-30T08:45:59.363875Z INFO fork_choice_control::block_processor: Validating block with slot: 7102 +2024-09-30T08:45:59.363979Z INFO fork_choice_control::block_processor: Validating block with slot: 7103 +2024-09-30T08:45:59.364327Z INFO fork_choice_control::block_processor: Validating block with slot: 7104 +2024-09-30T08:45:59.369337Z INFO fork_choice_control::block_processor: Validating block with slot: 6739 +2024-09-30T08:45:59.371115Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x91d3bd044100fccfeb1cdc7e2569988afc5e3f8b19e1556dede9bbd116a8a00a, slot: 6739 +2024-09-30T08:45:59.378945Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6739 +2024-09-30T08:45:59.378967Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6739 +2024-09-30T08:45:59.396392Z INFO fork_choice_control::block_processor: Validating block with slot: 6740 +2024-09-30T08:45:59.399666Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x276e4ccb62e4bec15a7e1ce9fb62295090f7e635d3dd1893bca4ca1480c902e9, slot: 6740 +2024-09-30T08:45:59.411646Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6740 +2024-09-30T08:45:59.411669Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6740 +2024-09-30T08:45:59.428612Z INFO fork_choice_control::block_processor: Validating block with slot: 6741 +2024-09-30T08:45:59.429577Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x858575264735f5988f3b6db315967fde1e23721a175f80b92f2210a9f0b01f99, slot: 6741 +2024-09-30T08:45:59.435398Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6741 +2024-09-30T08:45:59.435412Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6741 +2024-09-30T08:45:59.452687Z INFO fork_choice_control::block_processor: Validating block with slot: 6742 +2024-09-30T08:45:59.453779Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa814a3c368e54f9f09124efeb7ebdd6821fdb04962904428afc5a855158876a3, slot: 6742 +2024-09-30T08:45:59.460042Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6742 +2024-09-30T08:45:59.460062Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6742 +2024-09-30T08:45:59.477642Z INFO fork_choice_control::block_processor: Validating block with slot: 6743 +2024-09-30T08:45:59.478635Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4bf9f076636bc52e4cf6ce498784756e189e4b41a4117308a87cdecc59230516, slot: 6743 +2024-09-30T08:45:59.484606Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6743 +2024-09-30T08:45:59.484621Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6743 +2024-09-30T08:45:59.507918Z INFO fork_choice_control::block_processor: Validating block with slot: 6744 +2024-09-30T08:45:59.507924Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 209, root: 0xb1490cd1436fa30466e3588f1c15037416a2346d2806e51d28ddc7f7385b4f10, head slot: 6743, head root: 0x4bf9f076636bc52e4cf6ce498784756e189e4b41a4117308a87cdecc59230516) +2024-09-30T08:45:59.508935Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdec2343fb1c88e7a5a2ce99dd38ad45d8df385c927f791fd29862aef923529f3, slot: 6744 +2024-09-30T08:45:59.515856Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6744 +2024-09-30T08:45:59.515879Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6744 +2024-09-30T08:45:59.534696Z INFO fork_choice_control::block_processor: Validating block with slot: 6745 +2024-09-30T08:45:59.536521Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9e192919022a787521cd8dcee0b12c3bdf27b4ddaca6a774b9c4fefabb28c42a, slot: 6745 +2024-09-30T08:45:59.545234Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6745 +2024-09-30T08:45:59.545253Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6745 +2024-09-30T08:45:59.564085Z INFO fork_choice_control::block_processor: Validating block with slot: 6746 +2024-09-30T08:45:59.565198Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x78607791ac23cb2ec9d6d988f5262ae526c53b8b86737ec8b774d96dc54bcee8, slot: 6746 +2024-09-30T08:45:59.571492Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6746 +2024-09-30T08:45:59.571507Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6746 +2024-09-30T08:45:59.590826Z INFO fork_choice_control::block_processor: Validating block with slot: 6747 +2024-09-30T08:45:59.591951Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0c0fcf3af3e5761ca66981a58121bf18fd2267c54820b09d593641ad867613f0, slot: 6747 +2024-09-30T08:45:59.598491Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6747 +2024-09-30T08:45:59.598505Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6747 +2024-09-30T08:45:59.617711Z INFO fork_choice_control::block_processor: Validating block with slot: 6748 +2024-09-30T08:45:59.619232Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x335bafaa6ff049d236da2eff74f40ba41c0e788145d41ebb41922fa3d9b7af4f, slot: 6748 +2024-09-30T08:45:59.627097Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6748 +2024-09-30T08:45:59.627115Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6748 +2024-09-30T08:45:59.640254Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 6688 +2024-09-30T08:45:59.647166Z INFO fork_choice_control::block_processor: Validating block with slot: 6749 +2024-09-30T08:45:59.648281Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb0153e5a8a9ed8e4a3142d49a692aef9a479abf3060ca499272026aa8336975e, slot: 6749 +2024-09-30T08:45:59.654515Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6749 +2024-09-30T08:45:59.654528Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6749 +2024-09-30T08:45:59.674741Z INFO fork_choice_control::block_processor: Validating block with slot: 6750 +2024-09-30T08:45:59.676720Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0ce82bcf8df8c719e9edce74aeb090bc22bb36a1439bc749223bf9e2a47f6cf0, slot: 6750 +2024-09-30T08:45:59.685490Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6750 +2024-09-30T08:45:59.685510Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6750 +2024-09-30T08:45:59.706824Z INFO fork_choice_control::block_processor: Validating block with slot: 6751 +2024-09-30T08:45:59.708036Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x23d61ca6519844685d4842bc3988cdf3aec4603160d9650b8b474317d0d1375f, slot: 6751 +2024-09-30T08:45:59.715117Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6751 +2024-09-30T08:45:59.715131Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6751 +2024-09-30T08:45:59.735146Z INFO fork_choice_control::block_processor: Validating block with slot: 6753 +2024-09-30T08:45:59.737264Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x81f7a185067fefe17d6f060b4f76fa45ada98c7398613ec81543db3fa0336914, slot: 6753 +2024-09-30T08:45:59.919281Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6753 +2024-09-30T08:45:59.919302Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6753 +2024-09-30T08:45:59.932366Z INFO fork_choice_control::block_processor: Validating block with slot: 6754 +2024-09-30T08:45:59.934035Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf0ca1a2cd920f726715b17c7d8fb721f5a98f9380ba1c4a68d8bf39cd59b3e9e, slot: 6754 +2024-09-30T08:45:59.946259Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6754 +2024-09-30T08:45:59.946279Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6754 +2024-09-30T08:45:59.959053Z INFO fork_choice_control::block_processor: Validating block with slot: 6755 +2024-09-30T08:45:59.960609Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1bd58a323d58076c7ef3a93f9eeca5e0096110aaf564d7507bfabe5629bd2f67, slot: 6755 +2024-09-30T08:45:59.969634Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6755 +2024-09-30T08:45:59.969651Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6755 +2024-09-30T08:45:59.983095Z INFO fork_choice_control::block_processor: Validating block with slot: 6756 +2024-09-30T08:45:59.985997Z INFO fork_choice_control::block_processor: Validating block with slot: 7017 +2024-09-30T08:45:59.986041Z INFO fork_choice_control::block_processor: Validating block with slot: 7019 +2024-09-30T08:45:59.986066Z INFO fork_choice_control::block_processor: Validating block with slot: 7020 +2024-09-30T08:45:59.986120Z INFO fork_choice_control::block_processor: Validating block with slot: 7018 +2024-09-30T08:45:59.987135Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe2c459bd81b9ef33ec1cc698a5e3325b77d29ebe658aa6b545e4043bf3464eed, slot: 6756 +2024-09-30T08:45:59.987228Z INFO fork_choice_control::block_processor: Validating block with slot: 7022 +2024-09-30T08:45:59.987392Z INFO fork_choice_control::block_processor: Validating block with slot: 7023 +2024-09-30T08:45:59.987824Z INFO fork_choice_control::block_processor: Validating block with slot: 7024 +2024-09-30T08:45:59.988873Z INFO fork_choice_control::block_processor: Validating block with slot: 7025 +2024-09-30T08:45:59.988896Z INFO fork_choice_control::block_processor: Validating block with slot: 7026 +2024-09-30T08:45:59.989744Z INFO fork_choice_control::block_processor: Validating block with slot: 7027 +2024-09-30T08:45:59.989973Z INFO fork_choice_control::block_processor: Validating block with slot: 7028 +2024-09-30T08:45:59.990375Z INFO fork_choice_control::block_processor: Validating block with slot: 7029 +2024-09-30T08:45:59.991188Z INFO fork_choice_control::block_processor: Validating block with slot: 7105 +2024-09-30T08:45:59.991449Z INFO fork_choice_control::block_processor: Validating block with slot: 7106 +2024-09-30T08:45:59.992322Z INFO fork_choice_control::block_processor: Validating block with slot: 7107 +2024-09-30T08:45:59.992370Z INFO fork_choice_control::block_processor: Validating block with slot: 7108 +2024-09-30T08:45:59.993382Z INFO fork_choice_control::block_processor: Validating block with slot: 7109 +2024-09-30T08:45:59.994315Z INFO fork_choice_control::block_processor: Validating block with slot: 7110 +2024-09-30T08:45:59.994841Z INFO fork_choice_control::block_processor: Validating block with slot: 7111 +2024-09-30T08:45:59.994850Z INFO fork_choice_control::block_processor: Validating block with slot: 7112 +2024-09-30T08:45:59.995624Z INFO fork_choice_control::block_processor: Validating block with slot: 7113 +2024-09-30T08:45:59.996967Z INFO fork_choice_control::block_processor: Validating block with slot: 7114 +2024-09-30T08:45:59.997434Z INFO fork_choice_control::block_processor: Validating block with slot: 7115 +2024-09-30T08:45:59.997806Z INFO fork_choice_control::block_processor: Validating block with slot: 7116 +2024-09-30T08:45:59.998475Z INFO fork_choice_control::block_processor: Validating block with slot: 7117 +2024-09-30T08:45:59.999124Z INFO fork_choice_control::block_processor: Validating block with slot: 7118 +2024-09-30T08:45:59.999197Z INFO fork_choice_control::block_processor: Validating block with slot: 7119 +2024-09-30T08:46:00.000214Z INFO fork_choice_control::block_processor: Validating block with slot: 7120 +2024-09-30T08:46:00.001361Z INFO fork_choice_control::block_processor: Validating block with slot: 7123 +2024-09-30T08:46:00.001385Z INFO fork_choice_control::block_processor: Validating block with slot: 7122 +2024-09-30T08:46:00.001536Z INFO fork_choice_control::block_processor: Validating block with slot: 7124 +2024-09-30T08:46:00.001845Z INFO fork_choice_control::block_processor: Validating block with slot: 7125 +2024-09-30T08:46:00.003138Z INFO fork_choice_control::block_processor: Validating block with slot: 7126 +2024-09-30T08:46:00.003765Z INFO fork_choice_control::block_processor: Validating block with slot: 7127 +2024-09-30T08:46:00.008380Z INFO fork_choice_control::block_processor: Validating block with slot: 7128 +2024-09-30T08:46:00.009291Z INFO fork_choice_control::block_processor: Validating block with slot: 7129 +2024-09-30T08:46:00.009333Z INFO fork_choice_control::block_processor: Validating block with slot: 7132 +2024-09-30T08:46:00.011856Z INFO fork_choice_control::block_processor: Validating block with slot: 7133 +2024-09-30T08:46:00.012875Z INFO fork_choice_control::block_processor: Validating block with slot: 7134 +2024-09-30T08:46:00.013014Z INFO fork_choice_control::block_processor: Validating block with slot: 7135 +2024-09-30T08:46:00.013468Z INFO fork_choice_control::block_processor: Validating block with slot: 7130 +2024-09-30T08:46:00.013748Z INFO fork_choice_control::block_processor: Validating block with slot: 7131 +2024-09-30T08:46:00.014031Z INFO fork_choice_control::block_processor: Validating block with slot: 7137 +2024-09-30T08:46:00.014244Z INFO fork_choice_control::block_processor: Validating block with slot: 7138 +2024-09-30T08:46:00.015700Z INFO fork_choice_control::block_processor: Validating block with slot: 7139 +2024-09-30T08:46:00.015802Z INFO fork_choice_control::block_processor: Validating block with slot: 7140 +2024-09-30T08:46:00.016815Z INFO fork_choice_control::block_processor: Validating block with slot: 7141 +2024-09-30T08:46:00.017292Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6756 +2024-09-30T08:46:00.017320Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6756 +2024-09-30T08:46:00.017899Z INFO fork_choice_control::block_processor: Validating block with slot: 7142 +2024-09-30T08:46:00.018235Z INFO fork_choice_control::block_processor: Validating block with slot: 7143 +2024-09-30T08:46:00.018383Z INFO fork_choice_control::block_processor: Validating block with slot: 7144 +2024-09-30T08:46:00.033091Z INFO fork_choice_control::block_processor: Validating block with slot: 6757 +2024-09-30T08:46:00.034922Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xed227461bee7029666d2bc2574a45323eb4fdc418eb53be52123481bbc4b6203, slot: 6757 +2024-09-30T08:46:00.045420Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6757 +2024-09-30T08:46:00.045443Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6757 +2024-09-30T08:46:00.059903Z INFO fork_choice_control::block_processor: Validating block with slot: 6758 +2024-09-30T08:46:00.061022Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3f082e5790ea1a6e32a0606626883b911ea14a7e5e6b7a4298eb1ff05ef597a7, slot: 6758 +2024-09-30T08:46:00.066901Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6758 +2024-09-30T08:46:00.066914Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6758 +2024-09-30T08:46:00.080726Z INFO fork_choice_control::block_processor: Validating block with slot: 6759 +2024-09-30T08:46:00.081925Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdb060ee29119aac26ed3e5989c99cbe4fd75e6b12e8a2b06e21e7236077dfbd2, slot: 6759 +2024-09-30T08:46:00.087890Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6759 +2024-09-30T08:46:00.087902Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6759 +2024-09-30T08:46:00.101463Z INFO fork_choice_control::block_processor: Validating block with slot: 6760 +2024-09-30T08:46:00.103542Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xee29af1e1a96bf191fd91e6266a9afb3d44078e58380e5218ab5b6a970a3fa5f, slot: 6760 +2024-09-30T08:46:00.112322Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6760 +2024-09-30T08:46:00.112344Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6760 +2024-09-30T08:46:00.126549Z INFO fork_choice_control::block_processor: Validating block with slot: 6761 +2024-09-30T08:46:00.129009Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x43d75fa0228d8c92f9e4d058074202c10491d800f88f5f703d33759e87a954ec, slot: 6761 +2024-09-30T08:46:00.138620Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6761 +2024-09-30T08:46:00.138636Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6761 +2024-09-30T08:46:00.153655Z INFO fork_choice_control::block_processor: Validating block with slot: 6762 +2024-09-30T08:46:00.155040Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd0ef3bcf3f3fe4f216523e445219b66c4129ebf26b08958076fef43f5cab3b4d, slot: 6762 +2024-09-30T08:46:00.161782Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6762 +2024-09-30T08:46:00.161800Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6762 +2024-09-30T08:46:00.177066Z INFO fork_choice_control::block_processor: Validating block with slot: 6763 +2024-09-30T08:46:00.178184Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2098e7e172f9ec6bbbdd3276c8a36a8a008de77563d5642b4724e3d206b15b7a, slot: 6763 +2024-09-30T08:46:00.184360Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6763 +2024-09-30T08:46:00.184372Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6763 +2024-09-30T08:46:00.199877Z INFO fork_choice_control::block_processor: Validating block with slot: 6764 +2024-09-30T08:46:00.201080Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9efa87e7b7a0bd6b3f5d6faa408c7a75552b661ac647a16b80f2df1612d44234, slot: 6764 +2024-09-30T08:46:00.210153Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6764 +2024-09-30T08:46:00.210178Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6764 +2024-09-30T08:46:00.226082Z INFO fork_choice_control::block_processor: Validating block with slot: 6765 +2024-09-30T08:46:00.227106Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x149bb6e2be559eebfd9547155e53c9f5771883077e2176ada0dcd9c144b2f314, slot: 6765 +2024-09-30T08:46:00.234888Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6765 +2024-09-30T08:46:00.234904Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6765 +2024-09-30T08:46:00.251714Z INFO fork_choice_control::block_processor: Validating block with slot: 6766 +2024-09-30T08:46:00.252909Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7f400499a04099e9023c15cd5281ff0c90430880fecaa10cc575b92d82e91aba, slot: 6766 +2024-09-30T08:46:00.261701Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6766 +2024-09-30T08:46:00.261723Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6766 +2024-09-30T08:46:00.278682Z INFO fork_choice_control::block_processor: Validating block with slot: 6767 +2024-09-30T08:46:00.279673Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf3ce37c3687f4f7dd699aa9697caf81d4f011b87293b76ca3ba999b7acdfe9e8, slot: 6767 +2024-09-30T08:46:00.286086Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6767 +2024-09-30T08:46:00.286101Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6767 +2024-09-30T08:46:00.302857Z INFO fork_choice_control::block_processor: Validating block with slot: 6768 +2024-09-30T08:46:00.303824Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x227721cb18697acb0ee70019f9a2e99a9a5a6cad5fc6de537c78774865f43c06, slot: 6768 +2024-09-30T08:46:00.311016Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6768 +2024-09-30T08:46:00.311048Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6768 +2024-09-30T08:46:00.327516Z INFO fork_choice_control::block_processor: Validating block with slot: 6770 +2024-09-30T08:46:00.331007Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xacf3c819a33f5b0832a2f4d4fe7ba4f358be130df4d035436c362193c6e21a92, slot: 6770 +2024-09-30T08:46:00.345444Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6770 +2024-09-30T08:46:00.345463Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6770 +2024-09-30T08:46:00.363117Z INFO fork_choice_control::block_processor: Validating block with slot: 6771 +2024-09-30T08:46:00.364470Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf62e1c8eb942ff734b84dc1307508ecf43d8240fa5488e5c621618f8fba4a653, slot: 6771 +2024-09-30T08:46:00.381166Z INFO fork_choice_control::block_processor: Validating block with slot: 7034 +2024-09-30T08:46:00.381179Z INFO fork_choice_control::block_processor: Validating block with slot: 7030 +2024-09-30T08:46:00.381191Z INFO fork_choice_control::block_processor: Validating block with slot: 7031 +2024-09-30T08:46:00.381200Z INFO fork_choice_control::block_processor: Validating block with slot: 7033 +2024-09-30T08:46:00.381284Z INFO fork_choice_control::block_processor: Validating block with slot: 7035 +2024-09-30T08:46:00.381295Z INFO fork_choice_control::block_processor: Validating block with slot: 7036 +2024-09-30T08:46:00.381612Z INFO fork_choice_control::block_processor: Validating block with slot: 7037 +2024-09-30T08:46:00.382152Z INFO fork_choice_control::block_processor: Validating block with slot: 7038 +2024-09-30T08:46:00.382481Z INFO fork_choice_control::block_processor: Validating block with slot: 7039 +2024-09-30T08:46:00.382719Z INFO fork_choice_control::block_processor: Validating block with slot: 7040 +2024-09-30T08:46:00.383373Z INFO fork_choice_control::block_processor: Validating block with slot: 7041 +2024-09-30T08:46:00.383559Z INFO fork_choice_control::block_processor: Validating block with slot: 7042 +2024-09-30T08:46:00.383797Z INFO fork_choice_control::block_processor: Validating block with slot: 7043 +2024-09-30T08:46:00.384249Z INFO fork_choice_control::block_processor: Validating block with slot: 7044 +2024-09-30T08:46:00.384889Z INFO fork_choice_control::block_processor: Validating block with slot: 7045 +2024-09-30T08:46:00.386742Z INFO fork_choice_control::block_processor: Validating block with slot: 7046 +2024-09-30T08:46:00.386857Z INFO fork_choice_control::block_processor: Validating block with slot: 7052 +2024-09-30T08:46:00.387235Z INFO fork_choice_control::block_processor: Validating block with slot: 7047 +2024-09-30T08:46:00.387432Z INFO fork_choice_control::block_processor: Validating block with slot: 7048 +2024-09-30T08:46:00.387929Z INFO fork_choice_control::block_processor: Validating block with slot: 7053 +2024-09-30T08:46:00.388021Z INFO fork_choice_control::block_processor: Validating block with slot: 7054 +2024-09-30T08:46:00.388037Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6771 +2024-09-30T08:46:00.388063Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6771 +2024-09-30T08:46:00.388556Z INFO fork_choice_control::block_processor: Validating block with slot: 7055 +2024-09-30T08:46:00.390277Z INFO fork_choice_control::block_processor: Validating block with slot: 7056 +2024-09-30T08:46:00.390315Z INFO fork_choice_control::block_processor: Validating block with slot: 7059 +2024-09-30T08:46:00.390500Z INFO fork_choice_control::block_processor: Validating block with slot: 7057 +2024-09-30T08:46:00.390827Z INFO fork_choice_control::block_processor: Validating block with slot: 7058 +2024-09-30T08:46:00.391553Z INFO fork_choice_control::block_processor: Validating block with slot: 7060 +2024-09-30T08:46:00.392960Z INFO fork_choice_control::block_processor: Validating block with slot: 7061 +2024-09-30T08:46:00.393063Z INFO fork_choice_control::block_processor: Validating block with slot: 7062 +2024-09-30T08:46:00.393898Z INFO fork_choice_control::block_processor: Validating block with slot: 7063 +2024-09-30T08:46:00.396133Z INFO fork_choice_control::block_processor: Validating block with slot: 7049 +2024-09-30T08:46:00.396838Z INFO fork_choice_control::block_processor: Validating block with slot: 7066 +2024-09-30T08:46:00.398693Z INFO fork_choice_control::block_processor: Validating block with slot: 7050 +2024-09-30T08:46:00.399786Z INFO fork_choice_control::block_processor: Validating block with slot: 7067 +2024-09-30T08:46:00.400098Z INFO fork_choice_control::block_processor: Validating block with slot: 7068 +2024-09-30T08:46:00.400668Z INFO fork_choice_control::block_processor: Validating block with slot: 7051 +2024-09-30T08:46:00.400955Z INFO fork_choice_control::block_processor: Validating block with slot: 7069 +2024-09-30T08:46:00.401082Z INFO fork_choice_control::block_processor: Validating block with slot: 7070 +2024-09-30T08:46:00.401724Z INFO fork_choice_control::block_processor: Validating block with slot: 7071 +2024-09-30T08:46:00.401968Z INFO fork_choice_control::block_processor: Validating block with slot: 7072 +2024-09-30T08:46:00.402735Z INFO fork_choice_control::block_processor: Validating block with slot: 7073 +2024-09-30T08:46:00.403419Z INFO fork_choice_control::block_processor: Validating block with slot: 7075 +2024-09-30T08:46:00.405969Z INFO fork_choice_control::block_processor: Validating block with slot: 7076 +2024-09-30T08:46:00.406723Z INFO fork_choice_control::block_processor: Validating block with slot: 7080 +2024-09-30T08:46:00.407061Z INFO fork_choice_control::block_processor: Validating block with slot: 6954 +2024-09-30T08:46:00.407797Z INFO fork_choice_control::block_processor: Validating block with slot: 6955 +2024-09-30T08:46:00.408270Z INFO fork_choice_control::block_processor: Validating block with slot: 6956 +2024-09-30T08:46:00.408504Z INFO fork_choice_control::block_processor: Validating block with slot: 7077 +2024-09-30T08:46:00.408737Z INFO fork_choice_control::block_processor: Validating block with slot: 6957 +2024-09-30T08:46:00.409346Z INFO fork_choice_control::block_processor: Validating block with slot: 6958 +2024-09-30T08:46:00.409401Z INFO fork_choice_control::block_processor: Validating block with slot: 6959 +2024-09-30T08:46:00.409809Z INFO fork_choice_control::block_processor: Validating block with slot: 6960 +2024-09-30T08:46:00.410317Z INFO fork_choice_control::block_processor: Validating block with slot: 7078 +2024-09-30T08:46:00.410564Z INFO fork_choice_control::block_processor: Validating block with slot: 6961 +2024-09-30T08:46:00.410582Z INFO fork_choice_control::block_processor: Validating block with slot: 7064 +2024-09-30T08:46:00.410616Z INFO fork_choice_control::block_processor: Validating block with slot: 6962 +2024-09-30T08:46:00.411476Z INFO fork_choice_control::block_processor: Validating block with slot: 6963 +2024-09-30T08:46:00.411540Z INFO fork_choice_control::block_processor: Validating block with slot: 6964 +2024-09-30T08:46:00.411889Z INFO fork_choice_control::block_processor: Validating block with slot: 6965 +2024-09-30T08:46:00.412696Z INFO fork_choice_control::block_processor: Validating block with slot: 6966 +2024-09-30T08:46:00.414692Z INFO fork_choice_control::block_processor: Validating block with slot: 6972 +2024-09-30T08:46:00.414683Z INFO fork_choice_control::block_processor: Validating block with slot: 6967 +2024-09-30T08:46:00.415368Z INFO fork_choice_control::block_processor: Validating block with slot: 6968 +2024-09-30T08:46:00.415383Z INFO fork_choice_control::block_processor: Validating block with slot: 6969 +2024-09-30T08:46:00.415743Z INFO fork_choice_control::block_processor: Validating block with slot: 6973 +2024-09-30T08:46:00.416040Z INFO fork_choice_control::block_processor: Validating block with slot: 6974 +2024-09-30T08:46:00.416364Z INFO fork_choice_control::block_processor: Validating block with slot: 6975 +2024-09-30T08:46:00.416706Z INFO fork_choice_control::block_processor: Validating block with slot: 6977 +2024-09-30T08:46:00.416982Z INFO fork_choice_control::block_processor: Validating block with slot: 6978 +2024-09-30T08:46:00.418989Z INFO fork_choice_control::block_processor: Validating block with slot: 6979 +2024-09-30T08:46:00.419237Z INFO fork_choice_control::block_processor: Validating block with slot: 6980 +2024-09-30T08:46:00.419858Z INFO fork_choice_control::block_processor: Validating block with slot: 6981 +2024-09-30T08:46:00.420457Z INFO fork_choice_control::block_processor: Validating block with slot: 6982 +2024-09-30T08:46:00.420922Z INFO fork_choice_control::block_processor: Validating block with slot: 6983 +2024-09-30T08:46:00.420931Z INFO fork_choice_control::block_processor: Validating block with slot: 6984 +2024-09-30T08:46:00.421936Z INFO fork_choice_control::block_processor: Validating block with slot: 6985 +2024-09-30T08:46:00.422325Z INFO fork_choice_control::block_processor: Validating block with slot: 6986 +2024-09-30T08:46:00.423955Z INFO fork_choice_control::block_processor: Validating block with slot: 6987 +2024-09-30T08:46:00.424326Z INFO fork_choice_control::block_processor: Validating block with slot: 6971 +2024-09-30T08:46:00.425529Z INFO fork_choice_control::block_processor: Validating block with slot: 6992 +2024-09-30T08:46:00.425931Z INFO fork_choice_control::block_processor: Validating block with slot: 6989 +2024-09-30T08:46:00.426132Z INFO fork_choice_control::block_processor: Validating block with slot: 6988 +2024-09-30T08:46:00.427313Z INFO fork_choice_control::block_processor: Validating block with slot: 6994 +2024-09-30T08:46:00.427311Z INFO fork_choice_control::block_processor: Validating block with slot: 6990 +2024-09-30T08:46:00.427900Z INFO fork_choice_control::block_processor: Validating block with slot: 6970 +2024-09-30T08:46:00.428157Z INFO fork_choice_control::block_processor: Validating block with slot: 7065 +2024-09-30T08:46:00.428279Z INFO fork_choice_control::block_processor: Validating block with slot: 7079 +2024-09-30T08:46:00.428477Z INFO fork_choice_control::block_processor: Validating block with slot: 6995 +2024-09-30T08:46:00.428917Z INFO fork_choice_control::block_processor: Validating block with slot: 6996 +2024-09-30T08:46:00.429230Z INFO fork_choice_control::block_processor: Validating block with slot: 6997 +2024-09-30T08:46:00.429784Z INFO fork_choice_control::block_processor: Validating block with slot: 6998 +2024-09-30T08:46:00.429930Z INFO fork_choice_control::block_processor: Validating block with slot: 6999 +2024-09-30T08:46:00.430878Z INFO fork_choice_control::block_processor: Validating block with slot: 7000 +2024-09-30T08:46:00.431034Z INFO fork_choice_control::block_processor: Validating block with slot: 7001 +2024-09-30T08:46:00.431238Z INFO fork_choice_control::block_processor: Validating block with slot: 7005 +2024-09-30T08:46:00.431457Z INFO fork_choice_control::block_processor: Validating block with slot: 6993 +2024-09-30T08:46:00.431575Z INFO fork_choice_control::block_processor: Validating block with slot: 7006 +2024-09-30T08:46:00.431738Z INFO fork_choice_control::block_processor: Validating block with slot: 7002 +2024-09-30T08:46:00.431896Z INFO fork_choice_control::block_processor: Validating block with slot: 7007 +2024-09-30T08:46:00.431938Z INFO fork_choice_control::block_processor: Validating block with slot: 7003 +2024-09-30T08:46:00.432907Z INFO fork_choice_control::block_processor: Validating block with slot: 7008 +2024-09-30T08:46:00.433004Z INFO fork_choice_control::block_processor: Validating block with slot: 7009 +2024-09-30T08:46:00.433877Z INFO fork_choice_control::block_processor: Validating block with slot: 7010 +2024-09-30T08:46:00.433876Z INFO fork_choice_control::block_processor: Validating block with slot: 7004 +2024-09-30T08:46:00.434563Z INFO fork_choice_control::block_processor: Validating block with slot: 7011 +2024-09-30T08:46:00.434698Z INFO fork_choice_control::block_processor: Validating block with slot: 7012 +2024-09-30T08:46:00.435232Z INFO fork_choice_control::block_processor: Validating block with slot: 7013 +2024-09-30T08:46:00.435376Z INFO fork_choice_control::block_processor: Validating block with slot: 7014 +2024-09-30T08:46:00.435427Z INFO fork_choice_control::block_processor: Validating block with slot: 7015 +2024-09-30T08:46:00.436856Z INFO fork_choice_control::block_processor: Validating block with slot: 6773 +2024-09-30T08:46:00.440159Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x86d0f8a2bfbea64fde4ff4f8cc7cae6c8d2cfb9be586500edb015518b7d65376, slot: 6773 +2024-09-30T08:46:00.455894Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6773 +2024-09-30T08:46:00.455920Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6773 +2024-09-30T08:46:00.473993Z INFO fork_choice_control::block_processor: Validating block with slot: 6774 +2024-09-30T08:46:00.475907Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb59149067a2c4fb36770d8659a30e1d49d267a852057dccc6ec027168e010cc4, slot: 6774 +2024-09-30T08:46:00.484146Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6774 +2024-09-30T08:46:00.484158Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6774 +2024-09-30T08:46:00.503137Z INFO fork_choice_control::block_processor: Validating block with slot: 6775 +2024-09-30T08:46:00.504487Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xda0ab491ea11d5954caa40869ce62fcd98b9d3c230d8dab22318543462c3187f, slot: 6775 +2024-09-30T08:46:00.511071Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6775 +2024-09-30T08:46:00.511090Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6775 +2024-09-30T08:46:00.582888Z INFO fork_choice_control::block_processor: Validating block with slot: 6776 +2024-09-30T08:46:00.582891Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 210, root: 0x286f2f97ee19b3ee5c3754faa46adf1b03bbd7de0544ddf2393fd413b8c18a83, head slot: 6775, head root: 0xda0ab491ea11d5954caa40869ce62fcd98b9d3c230d8dab22318543462c3187f) +2024-09-30T08:46:00.584010Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd34a7fa37e8d03431a5f1e75a65b80735a438fce04e727061fab9403f7357460, slot: 6776 +2024-09-30T08:46:00.591215Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6776 +2024-09-30T08:46:00.591235Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6776 +2024-09-30T08:46:00.609398Z INFO fork_choice_control::block_processor: Validating block with slot: 6777 +2024-09-30T08:46:00.610521Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4d0eedccb367ed98fa83a7e4a86f08fabf5d4ddf2ac67751506b6a6067a2fa6c, slot: 6777 +2024-09-30T08:46:00.615586Z INFO fork_choice_control::block_processor: Validating block with slot: 7016 +2024-09-30T08:46:00.618449Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6777 +2024-09-30T08:46:00.618468Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6777 +2024-09-30T08:46:00.637421Z INFO fork_choice_control::block_processor: Validating block with slot: 6778 +2024-09-30T08:46:00.638551Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2fbd69cc02bf8583ece09e3d439341abee721013bc4f0a874dbdaae53ba111a7, slot: 6778 +2024-09-30T08:46:00.645330Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6778 +2024-09-30T08:46:00.645351Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6778 +2024-09-30T08:46:00.663833Z INFO fork_choice_control::block_processor: Validating block with slot: 6779 +2024-09-30T08:46:00.664821Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x33e9216e4c325541afb8c15e4a030465c6e51d051dbcce1f13417251ea9453f1, slot: 6779 +2024-09-30T08:46:00.671023Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6779 +2024-09-30T08:46:00.671041Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6779 +2024-09-30T08:46:00.690215Z INFO fork_choice_control::block_processor: Validating block with slot: 6780 +2024-09-30T08:46:00.692885Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6e40aabd14b09f190e8b90db8dd2ba947ba4711f558dc467ebe544dff4460cd6, slot: 6780 +2024-09-30T08:46:00.705188Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6780 +2024-09-30T08:46:00.705207Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6780 +2024-09-30T08:46:00.716231Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 6720 +2024-09-30T08:46:00.725462Z INFO fork_choice_control::block_processor: Validating block with slot: 6781 +2024-09-30T08:46:00.726875Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc9b26ec8c500760fab74019d7fb68e1b68d977daf4492f3f6bdb09917a1a88da, slot: 6781 +2024-09-30T08:46:00.733830Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6781 +2024-09-30T08:46:00.733847Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6781 +2024-09-30T08:46:00.754308Z INFO fork_choice_control::block_processor: Validating block with slot: 6782 +2024-09-30T08:46:00.755431Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7afb8b206eae687472743adc31ade3e6985077bd4d4b267a21f8144410d8d0c1, slot: 6782 +2024-09-30T08:46:00.763665Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6782 +2024-09-30T08:46:00.763683Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6782 +2024-09-30T08:46:00.784817Z INFO fork_choice_control::block_processor: Validating block with slot: 6784 +2024-09-30T08:46:00.786662Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4da926fc019bcea048a278718a64740baf6379cdbf4ad1e048534ab602e22e57, slot: 6784 +2024-09-30T08:46:00.917588Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6784 +2024-09-30T08:46:00.917611Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6784 +2024-09-30T08:46:00.929317Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6784) +2024-09-30T08:46:00.929520Z INFO fork_choice_control::block_processor: Validating block with slot: 6785 +2024-09-30T08:46:00.931686Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1b9fe521616da176557d66e76e5d614861cdb6e0a2f59b47614115de86ce61f3, slot: 6785 +2024-09-30T08:46:01.008038Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6785 +2024-09-30T08:46:01.008059Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6785 +2024-09-30T08:46:01.019463Z INFO fork_choice_control::block_processor: Validating block with slot: 6786 +2024-09-30T08:46:01.020818Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd23c3434c94ac7af2432e1dfd2b3a6d59938f810053c41cdaf40ea53f178d387, slot: 6786 +2024-09-30T08:46:01.028545Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6786 +2024-09-30T08:46:01.028565Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6786 +2024-09-30T08:46:01.040037Z INFO fork_choice_control::block_processor: Validating block with slot: 6787 +2024-09-30T08:46:01.042242Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb91fe548488000e8258373723b358a24f7a5fb9ecb385d69b1de008632a1760c, slot: 6787 +2024-09-30T08:46:01.051811Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6787 +2024-09-30T08:46:01.051826Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6787 +2024-09-30T08:46:01.063801Z INFO fork_choice_control::block_processor: Validating block with slot: 6788 +2024-09-30T08:46:01.064772Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x79d4329eafa5fd0ecfa283b14d57fb8933b96327a35af5bee61068061c64c8ad, slot: 6788 +2024-09-30T08:46:01.071096Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6788 +2024-09-30T08:46:01.071108Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6788 +2024-09-30T08:46:01.083558Z INFO fork_choice_control::block_processor: Validating block with slot: 6789 +2024-09-30T08:46:01.084759Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7bba4704857cdd89228eef3f2e77952150ddbc4d55b2c19b3717a3adb613fb88, slot: 6789 +2024-09-30T08:46:01.091888Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6789 +2024-09-30T08:46:01.091920Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6789 +2024-09-30T08:46:01.103857Z INFO fork_choice_control::block_processor: Validating block with slot: 6790 +2024-09-30T08:46:01.104972Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4c1198bf57f5616f811df692ec63829f4f0e79e0380617cb74ffe69ea9730074, slot: 6790 +2024-09-30T08:46:01.111299Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6790 +2024-09-30T08:46:01.111317Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6790 +2024-09-30T08:46:01.123852Z INFO fork_choice_control::block_processor: Validating block with slot: 6791 +2024-09-30T08:46:01.124924Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4ee3f6309800a1dc3f44fdb3d949f41c7729ff383bd877406690715a84f99872, slot: 6791 +2024-09-30T08:46:01.131030Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6791 +2024-09-30T08:46:01.131048Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6791 +2024-09-30T08:46:01.144277Z INFO fork_choice_control::block_processor: Validating block with slot: 6792 +2024-09-30T08:46:01.147377Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xedd718814d67d102f47bb72a23829ab4c24ed3fdb58b895307e91071f13ead47, slot: 6792 +2024-09-30T08:46:01.158303Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6792 +2024-09-30T08:46:01.158325Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6792 +2024-09-30T08:46:01.171113Z INFO fork_choice_control::block_processor: Validating block with slot: 6793 +2024-09-30T08:46:01.172379Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xee2838ec6df6bdbe48a255a8f48c6a0f3884d44fe59c39b36ac9e39d15b221bb, slot: 6793 +2024-09-30T08:46:01.178772Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6793 +2024-09-30T08:46:01.178794Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6793 +2024-09-30T08:46:01.191918Z INFO fork_choice_control::block_processor: Validating block with slot: 6794 +2024-09-30T08:46:01.192889Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x18220b3491620ba6daedc864f2b6b8a5269fe0326ba834acb3237b7beba1431d, slot: 6794 +2024-09-30T08:46:01.198494Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6794 +2024-09-30T08:46:01.198506Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6794 +2024-09-30T08:46:01.211869Z INFO fork_choice_control::block_processor: Validating block with slot: 6795 +2024-09-30T08:46:01.212831Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4fa7a4118e01e2f02d79fa03cd2686ddfd309e1a2e3e67efbb2a944d4f10154c, slot: 6795 +2024-09-30T08:46:01.218864Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6795 +2024-09-30T08:46:01.218879Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6795 +2024-09-30T08:46:01.232416Z INFO fork_choice_control::block_processor: Validating block with slot: 6796 +2024-09-30T08:46:01.233372Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe0d6d82698b18679d3bff514fed73bef0f2c6ee0f8b8f4ff588f0127bf25a36d, slot: 6796 +2024-09-30T08:46:01.239071Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6796 +2024-09-30T08:46:01.239095Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6796 +2024-09-30T08:46:01.252402Z INFO fork_choice_control::block_processor: Validating block with slot: 6797 +2024-09-30T08:46:01.253770Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcfda38aedc516c7bf41ba698ddda129afacd640cd61fff7c08fbe0e1dfeecd04, slot: 6797 +2024-09-30T08:46:01.260223Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6797 +2024-09-30T08:46:01.260242Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6797 +2024-09-30T08:46:01.274659Z INFO fork_choice_control::block_processor: Validating block with slot: 6798 +2024-09-30T08:46:01.276588Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4e921a9b8abe730d49d99467d5ebfa1a1ccb68466a127b939e22bd5e4b2388ee, slot: 6798 +2024-09-30T08:46:01.284821Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6798 +2024-09-30T08:46:01.284834Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6798 +2024-09-30T08:46:01.298857Z INFO fork_choice_control::block_processor: Validating block with slot: 6799 +2024-09-30T08:46:01.300220Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0ef7aad06403ba60b0f22d515670b634e157dc35c1a70630e4d177c26104f9c1, slot: 6799 +2024-09-30T08:46:01.306711Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6799 +2024-09-30T08:46:01.306733Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6799 +2024-09-30T08:46:01.321478Z INFO fork_choice_control::block_processor: Validating block with slot: 6800 +2024-09-30T08:46:01.322624Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfbbcedf1bd5ccdcb4797ed37f48e578f8db3a5d6f54df28ca225ef333416d86e, slot: 6800 +2024-09-30T08:46:01.328725Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6800 +2024-09-30T08:46:01.328742Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6800 +2024-09-30T08:46:01.343189Z INFO fork_choice_control::block_processor: Validating block with slot: 6801 +2024-09-30T08:46:01.346187Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x57a4611962daa86dee198a8fc4b94e7726540192e7bda992d012c565c3bfa8c4, slot: 6801 +2024-09-30T08:46:01.357696Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6801 +2024-09-30T08:46:01.357717Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6801 +2024-09-30T08:46:01.373023Z INFO fork_choice_control::block_processor: Validating block with slot: 6802 +2024-09-30T08:46:01.373995Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x24967699cfa2015d6ca2e8f126352f08145ec55a9b13a203e5ce507639011a2c, slot: 6802 +2024-09-30T08:46:01.379634Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6802 +2024-09-30T08:46:01.379647Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6802 +2024-09-30T08:46:01.394941Z INFO fork_choice_control::block_processor: Validating block with slot: 6803 +2024-09-30T08:46:01.396309Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x080acb536e8d2b16e1de2ffb586ccd5a89da9c6f3e1647519aad7ee2c580331d, slot: 6803 +2024-09-30T08:46:01.402779Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6803 +2024-09-30T08:46:01.402791Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6803 +2024-09-30T08:46:01.418177Z INFO fork_choice_control::block_processor: Validating block with slot: 6804 +2024-09-30T08:46:01.419693Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc483310690aceae38b1f3e2afc83eb6ff4579272df62275883bce571b48bbfe7, slot: 6804 +2024-09-30T08:46:01.427178Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6804 +2024-09-30T08:46:01.427201Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6804 +2024-09-30T08:46:01.442865Z INFO fork_choice_control::block_processor: Validating block with slot: 6805 +2024-09-30T08:46:01.443834Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x78809e1a00725621f8e31fe7e232b67d865f18ff792028740523dbd4da6b0bf3, slot: 6805 +2024-09-30T08:46:01.449883Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6805 +2024-09-30T08:46:01.449896Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6805 +2024-09-30T08:46:01.465648Z INFO fork_choice_control::block_processor: Validating block with slot: 6806 +2024-09-30T08:46:01.467297Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x24da061609a269542a293f093f31781fa62026e8a08a74489eca18f1f2a6577b, slot: 6806 +2024-09-30T08:46:01.475719Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6806 +2024-09-30T08:46:01.475742Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6806 +2024-09-30T08:46:01.491789Z INFO fork_choice_control::block_processor: Validating block with slot: 6807 +2024-09-30T08:46:01.492758Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7876ab7db7f9cc0f7d937b1550cc47df71057b82dee3c16ac1cc3f4331e72f81, slot: 6807 +2024-09-30T08:46:01.498636Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6807 +2024-09-30T08:46:01.498650Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6807 +2024-09-30T08:46:01.519905Z INFO fork_choice_control::block_processor: Validating block with slot: 6808 +2024-09-30T08:46:01.519907Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 211, root: 0x23d61ca6519844685d4842bc3988cdf3aec4603160d9650b8b474317d0d1375f, head slot: 6807, head root: 0x7876ab7db7f9cc0f7d937b1550cc47df71057b82dee3c16ac1cc3f4331e72f81) +2024-09-30T08:46:01.521280Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8d1b034044323c6c77f128ae58825775a177b20e84c962dc8b727f90687499fd, slot: 6808 +2024-09-30T08:46:01.527866Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6808 +2024-09-30T08:46:01.527884Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6808 +2024-09-30T08:46:01.544535Z INFO fork_choice_control::block_processor: Validating block with slot: 6809 +2024-09-30T08:46:01.545772Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc634608eb9bbef7e43b7cda617c9cddd7d5e4891dd1fc25d37055fe6413c8e7d, slot: 6809 +2024-09-30T08:46:01.552145Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6809 +2024-09-30T08:46:01.552160Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6809 +2024-09-30T08:46:01.568981Z INFO fork_choice_control::block_processor: Validating block with slot: 6810 +2024-09-30T08:46:01.570634Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5d3146cc6d3f19d6d5aa5b95f3b7330ad767c86138d40c28e3d07d8957413b03, slot: 6810 +2024-09-30T08:46:01.577966Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6810 +2024-09-30T08:46:01.577986Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6810 +2024-09-30T08:46:01.595636Z INFO fork_choice_control::block_processor: Validating block with slot: 6811 +2024-09-30T08:46:01.598907Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf9e919150f817416bfbcd0c0575821df501e910fec75dbdd4166e54fd44790f3, slot: 6811 +2024-09-30T08:46:01.611498Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6811 +2024-09-30T08:46:01.611517Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6811 +2024-09-30T08:46:01.629162Z INFO fork_choice_control::block_processor: Validating block with slot: 6812 +2024-09-30T08:46:01.630812Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdc10fddea45431cf696ae43bc0880e9171baf8900d30e9272874896663c9332e, slot: 6812 +2024-09-30T08:46:01.638260Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6812 +2024-09-30T08:46:01.638272Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6812 +2024-09-30T08:46:01.656024Z INFO fork_choice_control::block_processor: Validating block with slot: 6813 +2024-09-30T08:46:01.657003Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x818e73efee17a4b9d7a38613a7badb4c338c7f0acb7af97f6a77f61d019ab792, slot: 6813 +2024-09-30T08:46:01.662979Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6813 +2024-09-30T08:46:01.662993Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6813 +2024-09-30T08:46:01.681035Z INFO fork_choice_control::block_processor: Validating block with slot: 6814 +2024-09-30T08:46:01.682436Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2d60fffae8abfd6fa772e69afa3490f2156ce96c4880a194fe317c4a86c29032, slot: 6814 +2024-09-30T08:46:01.689151Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6814 +2024-09-30T08:46:01.689176Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6814 +2024-09-30T08:46:01.707274Z INFO fork_choice_control::block_processor: Validating block with slot: 6815 +2024-09-30T08:46:01.708367Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3d2337933bb6e779b05a44a92c572523e0d494c1fc7501ddb39ea59270244a34, slot: 6815 +2024-09-30T08:46:01.714258Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6815 +2024-09-30T08:46:01.714272Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6815 +2024-09-30T08:46:01.732578Z INFO fork_choice_control::block_processor: Validating block with slot: 6816 +2024-09-30T08:46:01.733815Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9ed7df4200e813fb521242cdd589332a864d764d3c5035918566b36a39b9aa31, slot: 6816 +2024-09-30T08:46:01.833170Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6816 +2024-09-30T08:46:01.833190Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6816 +2024-09-30T08:46:01.844518Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6816) +2024-09-30T08:46:01.844638Z INFO fork_choice_control::block_processor: Validating block with slot: 6817 +2024-09-30T08:46:01.845599Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x19bea46420e77e15f04c55962f1e177f1e7dd070ca3ecf1863fad0aa29021680, slot: 6817 +2024-09-30T08:46:01.921284Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6817 +2024-09-30T08:46:01.921302Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6817 +2024-09-30T08:46:01.932313Z INFO fork_choice_control::block_processor: Validating block with slot: 6818 +2024-09-30T08:46:01.933950Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xabac47728177d15f36f1bbfdad4233ebd07f8eb1f62ae241b81681044e951e8d, slot: 6818 +2024-09-30T08:46:01.942750Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6818 +2024-09-30T08:46:01.942772Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6818 +2024-09-30T08:46:01.954107Z INFO fork_choice_control::block_processor: Validating block with slot: 6819 +2024-09-30T08:46:01.957074Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfe1f1f11a2a6fe6480a6e6c1c408096a788e6bb25bd11c6149143643bee96941, slot: 6819 +2024-09-30T08:46:01.968380Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6819 +2024-09-30T08:46:01.968397Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6819 +2024-09-30T08:46:01.980592Z INFO fork_choice_control::block_processor: Validating block with slot: 6820 +2024-09-30T08:46:01.981969Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x81e11d0a5835fa160f0874cdb0ce0fc25692407110874770e48f5f092c4fa56d, slot: 6820 +2024-09-30T08:46:01.989713Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6820 +2024-09-30T08:46:01.989736Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6820 +2024-09-30T08:46:02.004491Z INFO fork_choice_control::block_processor: Validating block with slot: 6821 +2024-09-30T08:46:02.005617Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdada904bec7c15764fd193d48366fbc2f73c98da20fb1cdef79d46a075494bbd, slot: 6821 +2024-09-30T08:46:02.012213Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6821 +2024-09-30T08:46:02.012229Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6821 +2024-09-30T08:46:02.024958Z INFO fork_choice_control::block_processor: Validating block with slot: 6822 +2024-09-30T08:46:02.026020Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x992219c03327c4b68108382d0322d212717adbd8e07d2db6141492f2871cd3c4, slot: 6822 +2024-09-30T08:46:02.032543Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6822 +2024-09-30T08:46:02.032559Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6822 +2024-09-30T08:46:02.045304Z INFO fork_choice_control::block_processor: Validating block with slot: 6823 +2024-09-30T08:46:02.046425Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3c1358206fd8fac0e6c1702e87ec75bb90410fe24ad5fe67969e83e96a2b676a, slot: 6823 +2024-09-30T08:46:02.052655Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6823 +2024-09-30T08:46:02.052668Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6823 +2024-09-30T08:46:02.066163Z INFO fork_choice_control::block_processor: Validating block with slot: 6824 +2024-09-30T08:46:02.067302Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x745cbfdee6365ee80e1dd5dcd5794fc47fa888a860f98737e4be2ce1f1b49b83, slot: 6824 +2024-09-30T08:46:02.073507Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6824 +2024-09-30T08:46:02.073527Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6824 +2024-09-30T08:46:02.086089Z INFO fork_choice_control::block_processor: Validating block with slot: 6825 +2024-09-30T08:46:02.088615Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2ef76dd9cc4585b8e738c7edcb737e9cabffa89c25d2ff3eb62a5b599ec7d5aa, slot: 6825 +2024-09-30T08:46:02.098446Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6825 +2024-09-30T08:46:02.098464Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6825 +2024-09-30T08:46:02.111932Z INFO fork_choice_control::block_processor: Validating block with slot: 6826 +2024-09-30T08:46:02.114813Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa97c19cbfa9c0b410799b4683d5427c9de5fcf03d23b207a02f28f891af636d5, slot: 6826 +2024-09-30T08:46:02.125461Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6826 +2024-09-30T08:46:02.125483Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6826 +2024-09-30T08:46:02.139481Z INFO fork_choice_control::block_processor: Validating block with slot: 6827 +2024-09-30T08:46:02.140556Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe8b42e117209c1a3ce54aefad45cd5a5884c8d87478c8532cb5476e45ccd096b, slot: 6827 +2024-09-30T08:46:02.146391Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6827 +2024-09-30T08:46:02.146406Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6827 +2024-09-30T08:46:02.160356Z INFO fork_choice_control::block_processor: Validating block with slot: 6828 +2024-09-30T08:46:02.162013Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x62ed8c4c954261d78c9b5072c7ab97fe0d53341058982019c25697f94f7b3ece, slot: 6828 +2024-09-30T08:46:02.169223Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6828 +2024-09-30T08:46:02.169234Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6828 +2024-09-30T08:46:02.183679Z INFO fork_choice_control::block_processor: Validating block with slot: 6829 +2024-09-30T08:46:02.187356Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x65f6265450625a0eb0db9f64f900ff3ae348ecad48c2b530c377d8f47af01567, slot: 6829 +2024-09-30T08:46:02.201170Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6829 +2024-09-30T08:46:02.201192Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6829 +2024-09-30T08:46:02.216413Z INFO fork_choice_control::block_processor: Validating block with slot: 6830 +2024-09-30T08:46:02.217654Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6300c38f4e22a9078bb4b79500294d0c26f1b12c58f18d5a43a33b38010dda2e, slot: 6830 +2024-09-30T08:46:02.227522Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6830 +2024-09-30T08:46:02.227544Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6830 +2024-09-30T08:46:02.242720Z INFO fork_choice_control::block_processor: Validating block with slot: 6831 +2024-09-30T08:46:02.243693Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5fc58f0bd068d6568fc3fdbef104c55b46759909fd5e96724765737367bb5c97, slot: 6831 +2024-09-30T08:46:02.249870Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6831 +2024-09-30T08:46:02.249888Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6831 +2024-09-30T08:46:02.265261Z INFO fork_choice_control::block_processor: Validating block with slot: 6832 +2024-09-30T08:46:02.266486Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x15eb494c124728f0194dd3dc8cc0e104b8b9d5897c88e227b78e8854ce8a039a, slot: 6832 +2024-09-30T08:46:02.272692Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6832 +2024-09-30T08:46:02.272713Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6832 +2024-09-30T08:46:02.287991Z INFO fork_choice_control::block_processor: Validating block with slot: 6833 +2024-09-30T08:46:02.288986Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe447d69aaea7088da5399c547b0050e708d450169b6b5c189eb1628c273a70dc, slot: 6833 +2024-09-30T08:46:02.294714Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6833 +2024-09-30T08:46:02.294736Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6833 +2024-09-30T08:46:02.310467Z INFO fork_choice_control::block_processor: Validating block with slot: 6834 +2024-09-30T08:46:02.312125Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x234cf465535d601030e8f6a6bc54bf4634c5805421479503826fcb1780bd4fc1, slot: 6834 +2024-09-30T08:46:02.319565Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6834 +2024-09-30T08:46:02.319581Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6834 +2024-09-30T08:46:02.335465Z INFO fork_choice_control::block_processor: Validating block with slot: 6835 +2024-09-30T08:46:02.339075Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6d170ddba5e5ea4d1680585fc102642504d2bfaf049bdd1a6792df9fbca812b5, slot: 6835 +2024-09-30T08:46:02.352891Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6835 +2024-09-30T08:46:02.352909Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6835 +2024-09-30T08:46:02.369398Z INFO fork_choice_control::block_processor: Validating block with slot: 6836 +2024-09-30T08:46:02.370500Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1d170ebc1cea3d06bbfa4c737d927f13df9199f7e9d3331107ec24e91d5bc978, slot: 6836 +2024-09-30T08:46:02.376969Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6836 +2024-09-30T08:46:02.376991Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6836 +2024-09-30T08:46:02.393700Z INFO fork_choice_control::block_processor: Validating block with slot: 6837 +2024-09-30T08:46:02.394799Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x38a933bbe71adcad9933c39e4b65eeeae9ade71d6acdb13ac78d1356bc24d677, slot: 6837 +2024-09-30T08:46:02.400603Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6837 +2024-09-30T08:46:02.400616Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6837 +2024-09-30T08:46:02.417816Z INFO fork_choice_control::block_processor: Validating block with slot: 6838 +2024-09-30T08:46:02.418783Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3072bdba364961031b797c02c83ac29034a4b14487a67a6377f9911a166ad4eb, slot: 6838 +2024-09-30T08:46:02.424862Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6838 +2024-09-30T08:46:02.424881Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6838 +2024-09-30T08:46:02.441993Z INFO fork_choice_control::block_processor: Validating block with slot: 6839 +2024-09-30T08:46:02.444983Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc85aa7b31e8ce8372a59544a0104f470dc473c1d87b058b7cd984d3ab9949dad, slot: 6839 +2024-09-30T08:46:02.455893Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6839 +2024-09-30T08:46:02.455916Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6839 +2024-09-30T08:46:02.479680Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 212, root: 0x4da926fc019bcea048a278718a64740baf6379cdbf4ad1e048534ab602e22e57, head slot: 6839, head root: 0xc85aa7b31e8ce8372a59544a0104f470dc473c1d87b058b7cd984d3ab9949dad) +2024-09-30T08:46:02.479691Z INFO fork_choice_control::block_processor: Validating block with slot: 6840 +2024-09-30T08:46:02.481029Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1fec4ed855b7e9276da5273f1b72117f76635dc7fba0f1e27ca0baf83c148812, slot: 6840 +2024-09-30T08:46:02.487808Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6840 +2024-09-30T08:46:02.487828Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6840 +2024-09-30T08:46:02.505592Z INFO fork_choice_control::block_processor: Validating block with slot: 6841 +2024-09-30T08:46:02.506771Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x751e28f2f54bdb0f96e62891e40a26b45bf8b9929cec352ad51dca782546d2f3, slot: 6841 +2024-09-30T08:46:02.526499Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6841 +2024-09-30T08:46:02.526549Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6841 +2024-09-30T08:46:02.548872Z INFO fork_choice_control::block_processor: Validating block with slot: 6842 +2024-09-30T08:46:02.551367Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x16d6efebe136b60a669a846de90380ca11a77d5528d85df5259fa05f87e0a1aa, slot: 6842 +2024-09-30T08:46:02.560244Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6842 +2024-09-30T08:46:02.560268Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6842 +2024-09-30T08:46:02.580119Z INFO fork_choice_control::block_processor: Validating block with slot: 6843 +2024-09-30T08:46:02.581286Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4e1ab89b0c09edf17c7fa1bac73a91952a8779e0e3e0890a5a98411e4373a2b0, slot: 6843 +2024-09-30T08:46:02.587722Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6843 +2024-09-30T08:46:02.587735Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6843 +2024-09-30T08:46:02.607002Z INFO fork_choice_control::block_processor: Validating block with slot: 6844 +2024-09-30T08:46:02.608004Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdc2dc3369170f5f3d80de332f3e1b2f082b88ce9fb3c66e0c0efc44225d41133, slot: 6844 +2024-09-30T08:46:02.614176Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 6784 +2024-09-30T08:46:02.614502Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6844 +2024-09-30T08:46:02.614513Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6844 +2024-09-30T08:46:02.634662Z INFO fork_choice_control::block_processor: Validating block with slot: 6845 +2024-09-30T08:46:02.635670Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9150ea5a7391bd3a92974348b534d8599551c65a8de77b4def8e1e4122c8ac64, slot: 6845 +2024-09-30T08:46:02.642667Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6845 +2024-09-30T08:46:02.642686Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6845 +2024-09-30T08:46:02.661757Z INFO fork_choice_control::block_processor: Validating block with slot: 6846 +2024-09-30T08:46:02.663026Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x713cbb116b95f68f1070635474de1da4283143b786cf8aee11d53f02cb07a6da, slot: 6846 +2024-09-30T08:46:02.669957Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6846 +2024-09-30T08:46:02.669972Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6846 +2024-09-30T08:46:02.690321Z INFO fork_choice_control::block_processor: Validating block with slot: 6847 +2024-09-30T08:46:02.691443Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9e357b2122a725f66db2362a32205a85cc0b88a8ea045ae438fa3d7363ac24ce, slot: 6847 +2024-09-30T08:46:02.698089Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6847 +2024-09-30T08:46:02.698102Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6847 +2024-09-30T08:46:02.718353Z INFO fork_choice_control::block_processor: Validating block with slot: 6848 +2024-09-30T08:46:02.719443Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x287adcb5b4f244bd9bc5fb924c03212e43e5a687369592c5fbabfab0a52a9046, slot: 6848 +2024-09-30T08:46:02.828014Z INFO fork_choice_control::block_processor: Validating block with slot: 7274 +2024-09-30T08:46:02.828026Z INFO fork_choice_control::block_processor: Validating block with slot: 7276 +2024-09-30T08:46:02.828050Z INFO fork_choice_control::block_processor: Validating block with slot: 7273 +2024-09-30T08:46:02.828081Z INFO fork_choice_control::block_processor: Validating block with slot: 7277 +2024-09-30T08:46:02.828187Z INFO fork_choice_control::block_processor: Validating block with slot: 7279 +2024-09-30T08:46:02.828173Z INFO fork_choice_control::block_processor: Validating block with slot: 7278 +2024-09-30T08:46:02.828309Z INFO fork_choice_control::block_processor: Validating block with slot: 7275 +2024-09-30T08:46:02.828708Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6848 +2024-09-30T08:46:02.828739Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6848 +2024-09-30T08:46:02.841744Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6848) +2024-09-30T08:46:02.841904Z INFO fork_choice_control::block_processor: Validating block with slot: 6849 +2024-09-30T08:46:02.843417Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3f2370c336b8f05e5a7b282f07be24755a4731635642985fcd9f775112ebff7a, slot: 6849 +2024-09-30T08:46:02.918275Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6849 +2024-09-30T08:46:02.918297Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6849 +2024-09-30T08:46:02.930252Z INFO fork_choice_control::block_processor: Validating block with slot: 6850 +2024-09-30T08:46:02.931217Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2e450d1195d5577fcfb019e8e8dcb484f22254c110eae010eab618c4907883ea, slot: 6850 +2024-09-30T08:46:02.938032Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6850 +2024-09-30T08:46:02.938048Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6850 +2024-09-30T08:46:02.945875Z INFO fork_choice_control::block_processor: Validating block with slot: 7280 +2024-09-30T08:46:02.950243Z INFO fork_choice_control::block_processor: Validating block with slot: 6851 +2024-09-30T08:46:02.951455Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa6bbd0cad7213af076fa1fcb62014257949c9bba05af8f69a02e1fe57773af77, slot: 6851 +2024-09-30T08:46:02.958620Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6851 +2024-09-30T08:46:02.958640Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6851 +2024-09-30T08:46:02.971039Z INFO fork_choice_control::block_processor: Validating block with slot: 6852 +2024-09-30T08:46:02.972841Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xede52855d3c2d826104ffb88f3720c0ebf3b97216f959684b250d1397c574bd9, slot: 6852 +2024-09-30T08:46:02.982395Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6852 +2024-09-30T08:46:02.982410Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6852 +2024-09-30T08:46:02.986548Z INFO fork_choice_control::block_processor: Validating block with slot: 7282 +2024-09-30T08:46:02.986566Z INFO fork_choice_control::block_processor: Validating block with slot: 7283 +2024-09-30T08:46:02.986585Z INFO fork_choice_control::block_processor: Validating block with slot: 7285 +2024-09-30T08:46:02.986706Z INFO fork_choice_control::block_processor: Validating block with slot: 7284 +2024-09-30T08:46:02.988226Z INFO fork_choice_control::block_processor: Validating block with slot: 7286 +2024-09-30T08:46:02.988370Z INFO fork_choice_control::block_processor: Validating block with slot: 7287 +2024-09-30T08:46:02.989447Z INFO fork_choice_control::block_processor: Validating block with slot: 7288 +2024-09-30T08:46:02.989883Z INFO fork_choice_control::block_processor: Validating block with slot: 7289 +2024-09-30T08:46:02.990364Z INFO fork_choice_control::block_processor: Validating block with slot: 7290 +2024-09-30T08:46:02.991094Z INFO fork_choice_control::block_processor: Validating block with slot: 7291 +2024-09-30T08:46:02.991526Z INFO fork_choice_control::block_processor: Validating block with slot: 7292 +2024-09-30T08:46:02.992088Z INFO fork_choice_control::block_processor: Validating block with slot: 7294 +2024-09-30T08:46:02.992251Z INFO fork_choice_control::block_processor: Validating block with slot: 7295 +2024-09-30T08:46:02.992871Z INFO fork_choice_control::block_processor: Validating block with slot: 7296 +2024-09-30T08:46:02.995930Z INFO fork_choice_control::block_processor: Validating block with slot: 6853 +2024-09-30T08:46:02.999380Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeeaa82cd1381f54f42776c33d8f34b0827f29a5ace621f0807da7308691b5f1f, slot: 6853 +2024-09-30T08:46:03.013034Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6853 +2024-09-30T08:46:03.013055Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6853 +2024-09-30T08:46:03.027633Z INFO fork_choice_control::block_processor: Validating block with slot: 6854 +2024-09-30T08:46:03.029266Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8e0eede31ba1e344a0d929a72397d4c1f89bd085feb746a700bff4fe5e7876fe, slot: 6854 +2024-09-30T08:46:03.036477Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6854 +2024-09-30T08:46:03.036493Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6854 +2024-09-30T08:46:03.049943Z INFO fork_choice_control::block_processor: Validating block with slot: 7297 +2024-09-30T08:46:03.049946Z INFO fork_choice_control::block_processor: Validating block with slot: 7298 +2024-09-30T08:46:03.050492Z INFO fork_choice_control::block_processor: Validating block with slot: 6855 +2024-09-30T08:46:03.053528Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf8790f997baf0c0c5a893af6c1aedea2f2d771070bf3fc6427c83814b03a4ef8, slot: 6855 +2024-09-30T08:46:03.059074Z INFO fork_choice_control::block_processor: Validating block with slot: 7299 +2024-09-30T08:46:03.059203Z INFO fork_choice_control::block_processor: Validating block with slot: 7300 +2024-09-30T08:46:03.065260Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6855 +2024-09-30T08:46:03.065275Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6855 +2024-09-30T08:46:03.079468Z INFO fork_choice_control::block_processor: Validating block with slot: 6856 +2024-09-30T08:46:03.080715Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfb239a9123d96e7337a01ead8a2e342f1df8c82a35bb07abf4116f635666fe00, slot: 6856 +2024-09-30T08:46:03.087163Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6856 +2024-09-30T08:46:03.087176Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6856 +2024-09-30T08:46:03.101687Z INFO fork_choice_control::block_processor: Validating block with slot: 6858 +2024-09-30T08:46:03.103470Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x67017df5044040c8c3e39c8d1256142b3cad2dba04bf96fc1d656b1f72dc0d1a, slot: 6858 +2024-09-30T08:46:03.108991Z INFO fork_choice_control::block_processor: Validating block with slot: 7301 +2024-09-30T08:46:03.109013Z INFO fork_choice_control::block_processor: Validating block with slot: 7304 +2024-09-30T08:46:03.109041Z INFO fork_choice_control::block_processor: Validating block with slot: 7303 +2024-09-30T08:46:03.109340Z INFO fork_choice_control::block_processor: Validating block with slot: 7305 +2024-09-30T08:46:03.109347Z INFO fork_choice_control::block_processor: Validating block with slot: 7306 +2024-09-30T08:46:03.109409Z INFO fork_choice_control::block_processor: Validating block with slot: 7307 +2024-09-30T08:46:03.110576Z INFO fork_choice_control::block_processor: Validating block with slot: 7308 +2024-09-30T08:46:03.111093Z INFO fork_choice_control::block_processor: Validating block with slot: 7309 +2024-09-30T08:46:03.111245Z INFO fork_choice_control::block_processor: Validating block with slot: 7302 +2024-09-30T08:46:03.111652Z INFO fork_choice_control::block_processor: Validating block with slot: 7311 +2024-09-30T08:46:03.111990Z INFO fork_choice_control::block_processor: Validating block with slot: 7312 +2024-09-30T08:46:03.112066Z INFO fork_choice_control::block_processor: Validating block with slot: 7310 +2024-09-30T08:46:03.116328Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6858 +2024-09-30T08:46:03.116341Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6858 +2024-09-30T08:46:03.131749Z INFO fork_choice_control::block_processor: Validating block with slot: 6859 +2024-09-30T08:46:03.135025Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x89c8d23e80d6c57d533675310af0167322b68a9c06be01ad77cb1c8085780b61, slot: 6859 +2024-09-30T08:46:03.144143Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6859 +2024-09-30T08:46:03.144162Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6859 +2024-09-30T08:46:03.150898Z INFO fork_choice_control::block_processor: Validating block with slot: 7313 +2024-09-30T08:46:03.150910Z INFO fork_choice_control::block_processor: Validating block with slot: 7314 +2024-09-30T08:46:03.150990Z INFO fork_choice_control::block_processor: Validating block with slot: 7315 +2024-09-30T08:46:03.151021Z INFO fork_choice_control::block_processor: Validating block with slot: 7316 +2024-09-30T08:46:03.151048Z INFO fork_choice_control::block_processor: Validating block with slot: 7319 +2024-09-30T08:46:03.151043Z INFO fork_choice_control::block_processor: Validating block with slot: 7318 +2024-09-30T08:46:03.151588Z INFO fork_choice_control::block_processor: Validating block with slot: 7317 +2024-09-30T08:46:03.152653Z INFO fork_choice_control::block_processor: Validating block with slot: 7320 +2024-09-30T08:46:03.152831Z INFO fork_choice_control::block_processor: Validating block with slot: 7321 +2024-09-30T08:46:03.153117Z INFO fork_choice_control::block_processor: Validating block with slot: 7322 +2024-09-30T08:46:03.153725Z INFO fork_choice_control::block_processor: Validating block with slot: 7323 +2024-09-30T08:46:03.154043Z INFO fork_choice_control::block_processor: Validating block with slot: 7324 +2024-09-30T08:46:03.154120Z INFO fork_choice_control::block_processor: Validating block with slot: 7325 +2024-09-30T08:46:03.154192Z INFO fork_choice_control::block_processor: Validating block with slot: 7326 +2024-09-30T08:46:03.154779Z INFO fork_choice_control::block_processor: Validating block with slot: 7327 +2024-09-30T08:46:03.154812Z INFO fork_choice_control::block_processor: Validating block with slot: 7331 +2024-09-30T08:46:03.154981Z INFO fork_choice_control::block_processor: Validating block with slot: 7332 +2024-09-30T08:46:03.155341Z INFO fork_choice_control::block_processor: Validating block with slot: 7328 +2024-09-30T08:46:03.155415Z INFO fork_choice_control::block_processor: Validating block with slot: 7329 +2024-09-30T08:46:03.155840Z INFO fork_choice_control::block_processor: Validating block with slot: 7333 +2024-09-30T08:46:03.162458Z INFO fork_choice_control::block_processor: Validating block with slot: 6860 +2024-09-30T08:46:03.164122Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6cf677ba9e64b204bd78c961fa2566c041ee59a4a80465069359010750aff47d, slot: 6860 +2024-09-30T08:46:03.171099Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6860 +2024-09-30T08:46:03.171113Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6860 +2024-09-30T08:46:03.186423Z INFO fork_choice_control::block_processor: Validating block with slot: 6862 +2024-09-30T08:46:03.188784Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe595de6c15d08e629e3bba3c752646ed3a247cd877e023422df56edde907bde5, slot: 6862 +2024-09-30T08:46:03.201239Z INFO fork_choice_control::block_processor: Validating block with slot: 7334 +2024-09-30T08:46:03.201250Z INFO fork_choice_control::block_processor: Validating block with slot: 7210 +2024-09-30T08:46:03.201260Z INFO fork_choice_control::block_processor: Validating block with slot: 7209 +2024-09-30T08:46:03.201288Z INFO fork_choice_control::block_processor: Validating block with slot: 7211 +2024-09-30T08:46:03.201355Z INFO fork_choice_control::block_processor: Validating block with slot: 7336 +2024-09-30T08:46:03.201372Z INFO fork_choice_control::block_processor: Validating block with slot: 7335 +2024-09-30T08:46:03.202395Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6862 +2024-09-30T08:46:03.202429Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6862 +2024-09-30T08:46:03.218586Z INFO fork_choice_control::block_processor: Validating block with slot: 6863 +2024-09-30T08:46:03.219801Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x834e49d39eae439b8348e83bb88b23edfab5c3a555c921b1272ca290efa6219b, slot: 6863 +2024-09-30T08:46:03.227685Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6863 +2024-09-30T08:46:03.227708Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6863 +2024-09-30T08:46:03.231463Z INFO fork_choice_control::block_processor: Validating block with slot: 7214 +2024-09-30T08:46:03.231462Z INFO fork_choice_control::block_processor: Validating block with slot: 7216 +2024-09-30T08:46:03.231493Z INFO fork_choice_control::block_processor: Validating block with slot: 7212 +2024-09-30T08:46:03.231495Z INFO fork_choice_control::block_processor: Validating block with slot: 7215 +2024-09-30T08:46:03.231536Z INFO fork_choice_control::block_processor: Validating block with slot: 7217 +2024-09-30T08:46:03.231853Z INFO fork_choice_control::block_processor: Validating block with slot: 7218 +2024-09-30T08:46:03.232828Z INFO fork_choice_control::block_processor: Validating block with slot: 7213 +2024-09-30T08:46:03.244568Z INFO fork_choice_control::block_processor: Validating block with slot: 6864 +2024-09-30T08:46:03.245711Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x710e8a218aad35bf9c979132a3747aa5313e1139d7884877839e9a4a655e0bb2, slot: 6864 +2024-09-30T08:46:03.251304Z INFO fork_choice_control::block_processor: Validating block with slot: 7219 +2024-09-30T08:46:03.251344Z INFO fork_choice_control::block_processor: Validating block with slot: 7220 +2024-09-30T08:46:03.252926Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6864 +2024-09-30T08:46:03.252940Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6864 +2024-09-30T08:46:03.269969Z INFO fork_choice_control::block_processor: Validating block with slot: 6865 +2024-09-30T08:46:03.271155Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x78f4614e65af9a71523908510b8322dc97f82aeb252137e514452fae55e8e95d, slot: 6865 +2024-09-30T08:46:03.277946Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6865 +2024-09-30T08:46:03.277965Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6865 +2024-09-30T08:46:03.282335Z INFO fork_choice_control::block_processor: Validating block with slot: 7221 +2024-09-30T08:46:03.282359Z INFO fork_choice_control::block_processor: Validating block with slot: 7223 +2024-09-30T08:46:03.282411Z INFO fork_choice_control::block_processor: Validating block with slot: 7222 +2024-09-30T08:46:03.295240Z INFO fork_choice_control::block_processor: Validating block with slot: 6866 +2024-09-30T08:46:03.296928Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x10cd52914e0f08de91f3a0be8207e150e488d44745e518e3066edc5169c5e217, slot: 6866 +2024-09-30T08:46:03.304531Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6866 +2024-09-30T08:46:03.304544Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6866 +2024-09-30T08:46:03.322260Z INFO fork_choice_control::block_processor: Validating block with slot: 6867 +2024-09-30T08:46:03.323477Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5008d8ff4839fcbb92109bf50db611a223a7da7be33e7eafcb6fb20916dccb60, slot: 6867 +2024-09-30T08:46:03.329733Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6867 +2024-09-30T08:46:03.329747Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6867 +2024-09-30T08:46:03.348352Z INFO fork_choice_control::block_processor: Validating block with slot: 6868 +2024-09-30T08:46:03.350175Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb5bdcd25af9738344c6fb99cdc6e45b9c01a15261df0d2128731a8613cda6fe1, slot: 6868 +2024-09-30T08:46:03.360115Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6868 +2024-09-30T08:46:03.360139Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6868 +2024-09-30T08:46:03.379182Z INFO fork_choice_control::block_processor: Validating block with slot: 6869 +2024-09-30T08:46:03.380374Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4d6af6683f6011d3e6cc1a197ebeb1279b7b9e5ff27fc826aa7549e24dc69b63, slot: 6869 +2024-09-30T08:46:03.387558Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6869 +2024-09-30T08:46:03.387574Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6869 +2024-09-30T08:46:03.406320Z INFO fork_choice_control::block_processor: Validating block with slot: 6870 +2024-09-30T08:46:03.407384Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0f8abb6a68b294f2d7faa06cb68d65116d8927f476b17cd6503a09a8b933725a, slot: 6870 +2024-09-30T08:46:03.414602Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6870 +2024-09-30T08:46:03.414617Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6870 +2024-09-30T08:46:03.433587Z INFO fork_choice_control::block_processor: Validating block with slot: 6871 +2024-09-30T08:46:03.434866Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8199730495be3b1aba71dd83f3379aa217c0439a7f14d45566927ce5000243c4, slot: 6871 +2024-09-30T08:46:03.442092Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6871 +2024-09-30T08:46:03.442112Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6871 +2024-09-30T08:46:03.466805Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 213, root: 0x9ed7df4200e813fb521242cdd589332a864d764d3c5035918566b36a39b9aa31, head slot: 6871, head root: 0x8199730495be3b1aba71dd83f3379aa217c0439a7f14d45566927ce5000243c4) +2024-09-30T08:46:03.466823Z INFO fork_choice_control::block_processor: Validating block with slot: 6872 +2024-09-30T08:46:03.468881Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdae9001c59bf29bf3da3f6d5f1254482ea4f271f5870aaea204e25245839be3e, slot: 6872 +2024-09-30T08:46:03.478866Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6872 +2024-09-30T08:46:03.478892Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6872 +2024-09-30T08:46:03.483719Z INFO fork_choice_control::block_processor: Validating block with slot: 7225 +2024-09-30T08:46:03.483751Z INFO fork_choice_control::block_processor: Validating block with slot: 7226 +2024-09-30T08:46:03.483773Z INFO fork_choice_control::block_processor: Validating block with slot: 7224 +2024-09-30T08:46:03.483824Z INFO fork_choice_control::block_processor: Validating block with slot: 7228 +2024-09-30T08:46:03.483876Z INFO fork_choice_control::block_processor: Validating block with slot: 7227 +2024-09-30T08:46:03.484050Z INFO fork_choice_control::block_processor: Validating block with slot: 7229 +2024-09-30T08:46:03.490276Z INFO fork_choice_control::block_processor: Validating block with slot: 7231 +2024-09-30T08:46:03.490694Z INFO fork_choice_control::block_processor: Validating block with slot: 7232 +2024-09-30T08:46:03.491583Z INFO fork_choice_control::block_processor: Validating block with slot: 7233 +2024-09-30T08:46:03.499519Z INFO fork_choice_control::block_processor: Validating block with slot: 7234 +2024-09-30T08:46:03.499869Z INFO fork_choice_control::block_processor: Validating block with slot: 7235 +2024-09-30T08:46:03.501376Z INFO fork_choice_control::block_processor: Validating block with slot: 7236 +2024-09-30T08:46:03.501603Z INFO fork_choice_control::block_processor: Validating block with slot: 7238 +2024-09-30T08:46:03.501904Z INFO fork_choice_control::block_processor: Validating block with slot: 7239 +2024-09-30T08:46:03.506023Z INFO fork_choice_control::block_processor: Validating block with slot: 6873 +2024-09-30T08:46:03.509018Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x55da83b4e7f73d02686458a869a575182a21be8a19b63db39eb8e644a1f62660, slot: 6873 +2024-09-30T08:46:03.517291Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6873 +2024-09-30T08:46:03.517310Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6873 +2024-09-30T08:46:03.536851Z INFO fork_choice_control::block_processor: Validating block with slot: 6874 +2024-09-30T08:46:03.538113Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5a74e47472f6fff54953d8e9932087d4b2fe1c1db3faf575a93c7db42c2a9149, slot: 6874 +2024-09-30T08:46:03.545544Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6874 +2024-09-30T08:46:03.545562Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6874 +2024-09-30T08:46:03.564771Z INFO fork_choice_control::block_processor: Validating block with slot: 6875 +2024-09-30T08:46:03.565980Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe00a5e1b928b64a9d0f74df9371eb9ddcdef65a70be8ba481777c613a8926555, slot: 6875 +2024-09-30T08:46:03.574422Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6875 +2024-09-30T08:46:03.574441Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6875 +2024-09-30T08:46:03.594801Z INFO fork_choice_control::block_processor: Validating block with slot: 6876 +2024-09-30T08:46:03.596075Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4ba79ca387a01f2b46e8f50b55fc2f4510bf973e30455865da67eeb426297c86, slot: 6876 +2024-09-30T08:46:03.603786Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6876 +2024-09-30T08:46:03.603805Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6876 +2024-09-30T08:46:03.616100Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 6816 +2024-09-30T08:46:03.625237Z INFO fork_choice_control::block_processor: Validating block with slot: 6877 +2024-09-30T08:46:03.628491Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x18c79e48a29a176ba0ffe518c7a6434597d7dc879f48e4cb6960a94d5faeab77, slot: 6877 +2024-09-30T08:46:03.643235Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6877 +2024-09-30T08:46:03.643257Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6877 +2024-09-30T08:46:03.664623Z INFO fork_choice_control::block_processor: Validating block with slot: 6878 +2024-09-30T08:46:03.665829Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3dafd67c1b49e89833637cf3b33a6fb1689b75b7f4e86f63f1f1ce5c841552ee, slot: 6878 +2024-09-30T08:46:03.673947Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6878 +2024-09-30T08:46:03.673974Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6878 +2024-09-30T08:46:03.695293Z INFO fork_choice_control::block_processor: Validating block with slot: 6879 +2024-09-30T08:46:03.696433Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd18557a1ef48921f792756181e01f63503ac33823f31b49ac99531624bf92091, slot: 6879 +2024-09-30T08:46:03.704015Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6879 +2024-09-30T08:46:03.704030Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6879 +2024-09-30T08:46:03.726531Z INFO fork_choice_control::block_processor: Validating block with slot: 6881 +2024-09-30T08:46:03.727825Z INFO fork_choice_control::block_processor: Validating block with slot: 7240 +2024-09-30T08:46:03.729702Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7c1c80d706de1d3cd4405ca2bdc0054205734d5471f8d753d816775c115939bd, slot: 6881 +2024-09-30T08:46:03.922505Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6881 +2024-09-30T08:46:03.922528Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6881 +2024-09-30T08:46:03.933737Z INFO fork_choice_control::block_processor: Validating block with slot: 6882 +2024-09-30T08:46:03.934859Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5df778739ae777f302030edcf85c34dca6fda155b9e7dc1f06a05b3bf5c87318, slot: 6882 +2024-09-30T08:46:03.943340Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6882 +2024-09-30T08:46:03.943361Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6882 +2024-09-30T08:46:03.954881Z INFO fork_choice_control::block_processor: Validating block with slot: 6883 +2024-09-30T08:46:03.956259Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x78f5313f44d7a070b1bd65b4a264736c9268a57e47d3903c594c36f6ad745e3a, slot: 6883 +2024-09-30T08:46:03.963145Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6883 +2024-09-30T08:46:03.963162Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6883 +2024-09-30T08:46:03.975522Z INFO fork_choice_control::block_processor: Validating block with slot: 6885 +2024-09-30T08:46:03.977343Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb32451df4bd8b19fe78906fa077575182d4e94fbaa6d2f6d36299ecf04e522c9, slot: 6885 +2024-09-30T08:46:03.987981Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6885 +2024-09-30T08:46:03.987997Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6885 +2024-09-30T08:46:03.999819Z INFO fork_choice_control::block_processor: Validating block with slot: 6886 +2024-09-30T08:46:04.000877Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4e7fd881a6e2f3b1c3a02faed3d844a0cf8910131fc2ffc1ca26139b2f8f5b1a, slot: 6886 +2024-09-30T08:46:04.007495Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6886 +2024-09-30T08:46:04.007513Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6886 +2024-09-30T08:46:04.020763Z INFO fork_choice_control::block_processor: Validating block with slot: 6887 +2024-09-30T08:46:04.022891Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xda55eb4da9c640a4ce018a97975892cf00a4cb1c80c51a93fee3959e3abcf985, slot: 6887 +2024-09-30T08:46:04.031269Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6887 +2024-09-30T08:46:04.031281Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6887 +2024-09-30T08:46:04.043710Z INFO fork_choice_control::block_processor: Validating block with slot: 6888 +2024-09-30T08:46:04.044957Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb4a00cd2f81811f1d41ec0a078b7aeecd13b171e0347a1569029d460bc851a70, slot: 6888 +2024-09-30T08:46:04.051627Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6888 +2024-09-30T08:46:04.051643Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6888 +2024-09-30T08:46:04.062417Z INFO fork_choice_control::block_processor: Validating block with slot: 7241 +2024-09-30T08:46:04.064645Z INFO fork_choice_control::block_processor: Validating block with slot: 6889 +2024-09-30T08:46:04.066099Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbf86449eef851d9bcda759c7b037eb0b0e4aee4104631b60d286c32aac29eca2, slot: 6889 +2024-09-30T08:46:04.074898Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6889 +2024-09-30T08:46:04.074919Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6889 +2024-09-30T08:46:04.088572Z INFO fork_choice_control::block_processor: Validating block with slot: 6890 +2024-09-30T08:46:04.090417Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x089903b2fc247eba1a1e1e0095fdbb00bc7bf5e4d155400d14f508ffcccb8390, slot: 6890 +2024-09-30T08:46:04.098214Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6890 +2024-09-30T08:46:04.098228Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6890 +2024-09-30T08:46:04.112772Z INFO fork_choice_control::block_processor: Validating block with slot: 6891 +2024-09-30T08:46:04.115091Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaf52de1d71b6928de4d4ec2e8fbf3ea302440d402237f2c4ebe9d013c3a3c4f7, slot: 6891 +2024-09-30T08:46:04.126978Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6891 +2024-09-30T08:46:04.127001Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6891 +2024-09-30T08:46:04.142151Z INFO fork_choice_control::block_processor: Validating block with slot: 6892 +2024-09-30T08:46:04.143407Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe87427db67dac160e8537b9e40e49dfb82dc2c6c8b0494bb2d614dcfaccaab68, slot: 6892 +2024-09-30T08:46:04.182983Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6892 +2024-09-30T08:46:04.183011Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6892 +2024-09-30T08:46:04.201616Z INFO fork_choice_control::block_processor: Validating block with slot: 6893 +2024-09-30T08:46:04.202884Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9c29fd6331d606eaf9b9b9fefb02c87e6ca4a5cc05de6d36c221b71842a94284, slot: 6893 +2024-09-30T08:46:04.211457Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6893 +2024-09-30T08:46:04.211481Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6893 +2024-09-30T08:46:04.226361Z INFO fork_choice_control::block_processor: Validating block with slot: 6894 +2024-09-30T08:46:04.227691Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc7fd6bdde69aac1ad3aa2c660991a3111dda2fdf9fe0fe1587c15841bc2110d3, slot: 6894 +2024-09-30T08:46:04.235163Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6894 +2024-09-30T08:46:04.235178Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6894 +2024-09-30T08:46:04.250626Z INFO fork_choice_control::block_processor: Validating block with slot: 6895 +2024-09-30T08:46:04.251987Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x779ba0d4d11aed141aa199ae7e28bcbb025ea4870e6dd617cde4abafab073394, slot: 6895 +2024-09-30T08:46:04.261090Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6895 +2024-09-30T08:46:04.261116Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6895 +2024-09-30T08:46:04.277078Z INFO fork_choice_control::block_processor: Validating block with slot: 6896 +2024-09-30T08:46:04.279640Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2f0dfbd0d21dee89c16c019daf1695682fca3880c4d242afba3e3750e5caaf88, slot: 6896 +2024-09-30T08:46:04.289660Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6896 +2024-09-30T08:46:04.289681Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6896 +2024-09-30T08:46:04.304974Z INFO fork_choice_control::block_processor: Validating block with slot: 6897 +2024-09-30T08:46:04.306234Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8948476154a31f8b6cc1da34dc165a91ca0850361db5e818a88f9dd250ba53e5, slot: 6897 +2024-09-30T08:46:04.313095Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6897 +2024-09-30T08:46:04.313117Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6897 +2024-09-30T08:46:04.328717Z INFO fork_choice_control::block_processor: Validating block with slot: 6898 +2024-09-30T08:46:04.329908Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf900c373fbc405d2f09c09bd880598af70a36b3bfb961c73907c8638622950ee, slot: 6898 +2024-09-30T08:46:04.336639Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6898 +2024-09-30T08:46:04.336653Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6898 +2024-09-30T08:46:04.351744Z INFO fork_choice_control::block_processor: Validating block with slot: 6899 +2024-09-30T08:46:04.354627Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9a01a51a6a4e8ccc230e6b9b8b27c33de01b7f1f0596ef312dd64c0c44ae831a, slot: 6899 +2024-09-30T08:46:04.366808Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6899 +2024-09-30T08:46:04.366828Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6899 +2024-09-30T08:46:04.383208Z INFO fork_choice_control::block_processor: Validating block with slot: 6901 +2024-09-30T08:46:04.385581Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xee484cbabe23cca93ff22382cf158fba3683102c3cbf9f9b4d3852313198f160, slot: 6901 +2024-09-30T08:46:04.397898Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6901 +2024-09-30T08:46:04.397922Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6901 +2024-09-30T08:46:04.414101Z INFO fork_choice_control::block_processor: Validating block with slot: 6902 +2024-09-30T08:46:04.414900Z INFO fork_choice_control::block_processor: Validating block with slot: 7243 +2024-09-30T08:46:04.414922Z INFO fork_choice_control::block_processor: Validating block with slot: 7244 +2024-09-30T08:46:04.414931Z INFO fork_choice_control::block_processor: Validating block with slot: 7242 +2024-09-30T08:46:04.414934Z INFO fork_choice_control::block_processor: Validating block with slot: 7245 +2024-09-30T08:46:04.414992Z INFO fork_choice_control::block_processor: Validating block with slot: 7246 +2024-09-30T08:46:04.415136Z INFO fork_choice_control::block_processor: Validating block with slot: 7247 +2024-09-30T08:46:04.415281Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x81161012f5901d7879039393df0e1d099958f85855a535a351bd4d4cb5485858, slot: 6902 +2024-09-30T08:46:04.415629Z INFO fork_choice_control::block_processor: Validating block with slot: 7248 +2024-09-30T08:46:04.422573Z INFO fork_choice_control::block_processor: Validating block with slot: 7145 +2024-09-30T08:46:04.423208Z INFO fork_choice_control::block_processor: Validating block with slot: 7249 +2024-09-30T08:46:04.423588Z INFO fork_choice_control::block_processor: Validating block with slot: 7250 +2024-09-30T08:46:04.423733Z INFO fork_choice_control::block_processor: Validating block with slot: 7251 +2024-09-30T08:46:04.423824Z INFO fork_choice_control::block_processor: Validating block with slot: 7252 +2024-09-30T08:46:04.429028Z INFO fork_choice_control::block_processor: Validating block with slot: 7253 +2024-09-30T08:46:04.430814Z INFO fork_choice_control::block_processor: Validating block with slot: 7254 +2024-09-30T08:46:04.432119Z INFO fork_choice_control::block_processor: Validating block with slot: 7255 +2024-09-30T08:46:04.435842Z INFO fork_choice_control::block_processor: Validating block with slot: 7256 +2024-09-30T08:46:04.437952Z INFO fork_choice_control::block_processor: Validating block with slot: 7257 +2024-09-30T08:46:04.438503Z INFO fork_choice_control::block_processor: Validating block with slot: 7146 +2024-09-30T08:46:04.438517Z INFO fork_choice_control::block_processor: Validating block with slot: 7258 +2024-09-30T08:46:04.439211Z INFO fork_choice_control::block_processor: Validating block with slot: 7147 +2024-09-30T08:46:04.440053Z INFO fork_choice_control::block_processor: Validating block with slot: 7148 +2024-09-30T08:46:04.440371Z INFO fork_choice_control::block_processor: Validating block with slot: 7149 +2024-09-30T08:46:04.440860Z INFO fork_choice_control::block_processor: Validating block with slot: 7150 +2024-09-30T08:46:04.441828Z INFO fork_choice_control::block_processor: Validating block with slot: 7151 +2024-09-30T08:46:04.442426Z INFO fork_choice_control::block_processor: Validating block with slot: 7152 +2024-09-30T08:46:04.443145Z INFO fork_choice_control::block_processor: Validating block with slot: 7153 +2024-09-30T08:46:04.443324Z INFO fork_choice_control::block_processor: Validating block with slot: 7154 +2024-09-30T08:46:04.443585Z INFO fork_choice_control::block_processor: Validating block with slot: 7155 +2024-09-30T08:46:04.444769Z INFO fork_choice_control::block_processor: Validating block with slot: 7156 +2024-09-30T08:46:04.445053Z INFO fork_choice_control::block_processor: Validating block with slot: 7157 +2024-09-30T08:46:04.445330Z INFO fork_choice_control::block_processor: Validating block with slot: 7158 +2024-09-30T08:46:04.445573Z INFO fork_choice_control::block_processor: Validating block with slot: 7159 +2024-09-30T08:46:04.446066Z INFO fork_choice_control::block_processor: Validating block with slot: 7160 +2024-09-30T08:46:04.446389Z INFO fork_choice_control::block_processor: Validating block with slot: 7161 +2024-09-30T08:46:04.446583Z INFO fork_choice_control::block_processor: Validating block with slot: 7162 +2024-09-30T08:46:04.446787Z INFO fork_choice_control::block_processor: Validating block with slot: 7164 +2024-09-30T08:46:04.447696Z INFO fork_choice_control::block_processor: Validating block with slot: 7165 +2024-09-30T08:46:04.447890Z INFO fork_choice_control::block_processor: Validating block with slot: 7166 +2024-09-30T08:46:04.448594Z INFO fork_choice_control::block_processor: Validating block with slot: 7167 +2024-09-30T08:46:04.448709Z INFO fork_choice_control::block_processor: Validating block with slot: 7168 +2024-09-30T08:46:04.448905Z INFO fork_choice_control::block_processor: Validating block with slot: 7169 +2024-09-30T08:46:04.449620Z INFO fork_choice_control::block_processor: Validating block with slot: 7170 +2024-09-30T08:46:04.449726Z INFO fork_choice_control::block_processor: Validating block with slot: 7171 +2024-09-30T08:46:04.449748Z INFO fork_choice_control::block_processor: Validating block with slot: 7172 +2024-09-30T08:46:04.450062Z INFO fork_choice_control::block_processor: Validating block with slot: 7173 +2024-09-30T08:46:04.451041Z INFO fork_choice_control::block_processor: Validating block with slot: 7175 +2024-09-30T08:46:04.451036Z INFO fork_choice_control::block_processor: Validating block with slot: 7174 +2024-09-30T08:46:04.451198Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6902 +2024-09-30T08:46:04.451229Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6902 +2024-09-30T08:46:04.451670Z INFO fork_choice_control::block_processor: Validating block with slot: 7259 +2024-09-30T08:46:04.451840Z INFO fork_choice_control::block_processor: Validating block with slot: 7176 +2024-09-30T08:46:04.452202Z INFO fork_choice_control::block_processor: Validating block with slot: 7177 +2024-09-30T08:46:04.452290Z INFO fork_choice_control::block_processor: Validating block with slot: 7178 +2024-09-30T08:46:04.453110Z INFO fork_choice_control::block_processor: Validating block with slot: 7179 +2024-09-30T08:46:04.453305Z INFO fork_choice_control::block_processor: Validating block with slot: 7180 +2024-09-30T08:46:04.453467Z INFO fork_choice_control::block_processor: Validating block with slot: 7181 +2024-09-30T08:46:04.453825Z INFO fork_choice_control::block_processor: Validating block with slot: 7182 +2024-09-30T08:46:04.454614Z INFO fork_choice_control::block_processor: Validating block with slot: 7183 +2024-09-30T08:46:04.454923Z INFO fork_choice_control::block_processor: Validating block with slot: 7184 +2024-09-30T08:46:04.455750Z INFO fork_choice_control::block_processor: Validating block with slot: 7185 +2024-09-30T08:46:04.456073Z INFO fork_choice_control::block_processor: Validating block with slot: 7187 +2024-09-30T08:46:04.456846Z INFO fork_choice_control::block_processor: Validating block with slot: 7188 +2024-09-30T08:46:04.456909Z INFO fork_choice_control::block_processor: Validating block with slot: 7189 +2024-09-30T08:46:04.457772Z INFO fork_choice_control::block_processor: Validating block with slot: 7190 +2024-09-30T08:46:04.457842Z INFO fork_choice_control::block_processor: Validating block with slot: 7191 +2024-09-30T08:46:04.457856Z INFO fork_choice_control::block_processor: Validating block with slot: 7192 +2024-09-30T08:46:04.457920Z INFO fork_choice_control::block_processor: Validating block with slot: 7193 +2024-09-30T08:46:04.459002Z INFO fork_choice_control::block_processor: Validating block with slot: 7194 +2024-09-30T08:46:04.459010Z INFO fork_choice_control::block_processor: Validating block with slot: 7195 +2024-09-30T08:46:04.459076Z INFO fork_choice_control::block_processor: Validating block with slot: 7196 +2024-09-30T08:46:04.459843Z INFO fork_choice_control::block_processor: Validating block with slot: 7197 +2024-09-30T08:46:04.460093Z INFO fork_choice_control::block_processor: Validating block with slot: 7198 +2024-09-30T08:46:04.460162Z INFO fork_choice_control::block_processor: Validating block with slot: 7199 +2024-09-30T08:46:04.460657Z INFO fork_choice_control::block_processor: Validating block with slot: 7200 +2024-09-30T08:46:04.460857Z INFO fork_choice_control::block_processor: Validating block with slot: 7201 +2024-09-30T08:46:04.461176Z INFO fork_choice_control::block_processor: Validating block with slot: 7202 +2024-09-30T08:46:04.462001Z INFO fork_choice_control::block_processor: Validating block with slot: 7203 +2024-09-30T08:46:04.462340Z INFO fork_choice_control::block_processor: Validating block with slot: 7204 +2024-09-30T08:46:04.463084Z INFO fork_choice_control::block_processor: Validating block with slot: 7205 +2024-09-30T08:46:04.463252Z INFO fork_choice_control::block_processor: Validating block with slot: 7206 +2024-09-30T08:46:04.463795Z INFO fork_choice_control::block_processor: Validating block with slot: 7207 +2024-09-30T08:46:04.463921Z INFO fork_choice_control::block_processor: Validating block with slot: 7208 +2024-09-30T08:46:04.464243Z INFO fork_choice_control::block_processor: Validating block with slot: 7260 +2024-09-30T08:46:04.465445Z INFO fork_choice_control::block_processor: Validating block with slot: 7261 +2024-09-30T08:46:04.465523Z INFO fork_choice_control::block_processor: Validating block with slot: 7263 +2024-09-30T08:46:04.465580Z INFO fork_choice_control::block_processor: Validating block with slot: 7264 +2024-09-30T08:46:04.465558Z INFO fork_choice_control::block_processor: Validating block with slot: 7262 +2024-09-30T08:46:04.467006Z INFO fork_choice_control::block_processor: Validating block with slot: 7265 +2024-09-30T08:46:04.471487Z INFO fork_choice_control::block_processor: Validating block with slot: 7266 +2024-09-30T08:46:04.472012Z INFO fork_choice_control::block_processor: Validating block with slot: 7267 +2024-09-30T08:46:04.473155Z INFO fork_choice_control::block_processor: Validating block with slot: 7268 +2024-09-30T08:46:04.478218Z INFO fork_choice_control::block_processor: Validating block with slot: 7269 +2024-09-30T08:46:04.479257Z INFO fork_choice_control::block_processor: Validating block with slot: 7270 +2024-09-30T08:46:04.481462Z INFO fork_choice_control::block_processor: Validating block with slot: 7271 +2024-09-30T08:46:04.482701Z INFO fork_choice_control::block_processor: Validating block with slot: 7272 +2024-09-30T08:46:04.482756Z INFO fork_choice_control::block_processor: Validating block with slot: 6903 +2024-09-30T08:46:04.483873Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf6a3844abafde39af3933346aca10a0a1ce3c559b65a04baededfb9e671db217, slot: 6903 +2024-09-30T08:46:04.492167Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6903 +2024-09-30T08:46:04.492185Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6903 +2024-09-30T08:46:04.568373Z INFO fork_choice_control::block_processor: Validating block with slot: 6904 +2024-09-30T08:46:04.568367Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 214, root: 0x287adcb5b4f244bd9bc5fb924c03212e43e5a687369592c5fbabfab0a52a9046, head slot: 6903, head root: 0xf6a3844abafde39af3933346aca10a0a1ce3c559b65a04baededfb9e671db217) +2024-09-30T08:46:04.569499Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7d27271c967feebd50bae4a2f9c29be6bcb67799ef07a7200e955aea19fc4e68, slot: 6904 +2024-09-30T08:46:04.576515Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6904 +2024-09-30T08:46:04.576537Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6904 +2024-09-30T08:46:04.592722Z INFO fork_choice_control::block_processor: Validating block with slot: 6905 +2024-09-30T08:46:04.597069Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2cf9b2656e1d28d931ea801caf11b4bc0ddf69ac1580248992f768cb4a27ef10, slot: 6905 +2024-09-30T08:46:04.612220Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6905 +2024-09-30T08:46:04.612238Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6905 +2024-09-30T08:46:04.629287Z INFO fork_choice_control::block_processor: Validating block with slot: 6906 +2024-09-30T08:46:04.630343Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xae66baa812d3d0262a303fbff5fd19637425b7002614d15c73736d6233cfb300, slot: 6906 +2024-09-30T08:46:04.636810Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6906 +2024-09-30T08:46:04.636824Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6906 +2024-09-30T08:46:04.653479Z INFO fork_choice_control::block_processor: Validating block with slot: 6907 +2024-09-30T08:46:04.654870Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3a63fef425774390bb8162e81b5cddc0930caaf49bdacfc7a60c8170a85fc501, slot: 6907 +2024-09-30T08:46:04.661807Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6907 +2024-09-30T08:46:04.661830Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6907 +2024-09-30T08:46:04.679531Z INFO fork_choice_control::block_processor: Validating block with slot: 6908 +2024-09-30T08:46:04.680896Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf0831bba46175174e41f487a19a09c9ac6c7a3486cc7348d453952ab635ba76b, slot: 6908 +2024-09-30T08:46:04.687498Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6908 +2024-09-30T08:46:04.687511Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6908 +2024-09-30T08:46:04.706431Z INFO fork_choice_control::block_processor: Validating block with slot: 6909 +2024-09-30T08:46:04.706433Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 6848 +2024-09-30T08:46:04.707489Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe99af346ef5691494aa5767763783198d35379a007fae055a4d6cb7582d04513, slot: 6909 +2024-09-30T08:46:04.713818Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6909 +2024-09-30T08:46:04.713831Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6909 +2024-09-30T08:46:04.731543Z INFO fork_choice_control::block_processor: Validating block with slot: 6910 +2024-09-30T08:46:04.732581Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4db97dc54fe62ce2e7896cb0920afa3a3a1a38df3155599f453e14f72cfadb3f, slot: 6910 +2024-09-30T08:46:04.738895Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6910 +2024-09-30T08:46:04.738919Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6910 +2024-09-30T08:46:04.757519Z INFO fork_choice_control::block_processor: Validating block with slot: 6911 +2024-09-30T08:46:04.760352Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7f00359d33295bb3281249726ee817e414a8948cede868d40df7186e816140a5, slot: 6911 +2024-09-30T08:46:04.771516Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6911 +2024-09-30T08:46:04.771534Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6911 +2024-09-30T08:46:04.790213Z INFO fork_choice_control::block_processor: Validating block with slot: 6912 +2024-09-30T08:46:04.791369Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa0fcb91c4046da8fd2ecf59b5a512f8684262e04b2ec658d5868c265d92cc731, slot: 6912 +2024-09-30T08:46:04.897194Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6912 +2024-09-30T08:46:04.897217Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6912 +2024-09-30T08:46:04.908108Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6912) +2024-09-30T08:46:04.908240Z INFO fork_choice_control::block_processor: Validating block with slot: 6913 +2024-09-30T08:46:04.910967Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf1442f3c59b926f95283b428092a8c7e2c89c6fdb3aedbad3efb03458ca8321e, slot: 6913 +2024-09-30T08:46:04.989679Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6913 +2024-09-30T08:46:04.989701Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6913 +2024-09-30T08:46:05.001333Z INFO fork_choice_control::block_processor: Validating block with slot: 6914 +2024-09-30T08:46:05.002584Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x788e48a7b91d9688c6e8bb917cf3be01cb410b4b37b82fd5db713c6524759777, slot: 6914 +2024-09-30T08:46:05.010398Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6914 +2024-09-30T08:46:05.010421Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6914 +2024-09-30T08:46:05.021818Z INFO fork_choice_control::block_processor: Validating block with slot: 6915 +2024-09-30T08:46:05.023384Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbd19e18a2712328fae7a58df937818e431d5b6b3b8fa6c19040b8589da6ba629, slot: 6915 +2024-09-30T08:46:05.031142Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6915 +2024-09-30T08:46:05.031155Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6915 +2024-09-30T08:46:05.042987Z INFO fork_choice_control::block_processor: Validating block with slot: 6916 +2024-09-30T08:46:05.044115Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc98a25d6bae38bf29e6a5e7c193cc923dc02c02fd497f6bf0e3a20f247b6559c, slot: 6916 +2024-09-30T08:46:05.050319Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6916 +2024-09-30T08:46:05.050331Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6916 +2024-09-30T08:46:05.062704Z INFO fork_choice_control::block_processor: Validating block with slot: 6917 +2024-09-30T08:46:05.063677Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf478a1d06e826c18aae373ddc0044f9f6446c64d760df94d8a7562b8f98a30fb, slot: 6917 +2024-09-30T08:46:05.069658Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6917 +2024-09-30T08:46:05.069671Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6917 +2024-09-30T08:46:05.082366Z INFO fork_choice_control::block_processor: Validating block with slot: 6918 +2024-09-30T08:46:05.083353Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe94bdf794447582444adc30cc5796e00e570cc3bf07957c8523d0a925cf47247, slot: 6918 +2024-09-30T08:46:05.089507Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6918 +2024-09-30T08:46:05.089526Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6918 +2024-09-30T08:46:05.101818Z INFO fork_choice_control::block_processor: Validating block with slot: 6920 +2024-09-30T08:46:05.103926Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdd4e1e57f5941ebae7830be169fdcf6d27c2290d9f891fb99cbbb58d48ac8e40, slot: 6920 +2024-09-30T08:46:05.114988Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6920 +2024-09-30T08:46:05.115008Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6920 +2024-09-30T08:46:05.128421Z INFO fork_choice_control::block_processor: Validating block with slot: 6921 +2024-09-30T08:46:05.129478Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe2c5b350a347d2d1676e2b2e1beff39debf30d393cfcec0edb24174239738efc, slot: 6921 +2024-09-30T08:46:05.136148Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6921 +2024-09-30T08:46:05.136162Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6921 +2024-09-30T08:46:05.149169Z INFO fork_choice_control::block_processor: Validating block with slot: 6922 +2024-09-30T08:46:05.152265Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4ab758831b3daeff1cc0f98eef608aba6d6a9eb48a7bec3a8f5826befb82f4c6, slot: 6922 +2024-09-30T08:46:05.163068Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6922 +2024-09-30T08:46:05.163089Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6922 +2024-09-30T08:46:05.176346Z INFO fork_choice_control::block_processor: Validating block with slot: 6923 +2024-09-30T08:46:05.177313Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x35e35f6d6a09d5d58036d7104b350ac1f48268e6169fbe2b37463f1d7627ceed, slot: 6923 +2024-09-30T08:46:05.182794Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6923 +2024-09-30T08:46:05.182811Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6923 +2024-09-30T08:46:05.196218Z INFO fork_choice_control::block_processor: Validating block with slot: 6924 +2024-09-30T08:46:05.197994Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4f0131123147ab837aebf8bd3c4eb251d1cb98904ec1beb4759749c4f59e3a88, slot: 6924 +2024-09-30T08:46:05.205900Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6924 +2024-09-30T08:46:05.205919Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6924 +2024-09-30T08:46:05.219381Z INFO fork_choice_control::block_processor: Validating block with slot: 6925 +2024-09-30T08:46:05.220356Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfe63f43f58f2beeace56fc06f44ab376b1c8302771376aee66f930b9dd623c19, slot: 6925 +2024-09-30T08:46:05.226454Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6925 +2024-09-30T08:46:05.226478Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6925 +2024-09-30T08:46:05.240181Z INFO fork_choice_control::block_processor: Validating block with slot: 6926 +2024-09-30T08:46:05.241703Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x57a68d103fe6d583bfad70691c1b522e36af8555436691b469e25af3b0df754f, slot: 6926 +2024-09-30T08:46:05.248551Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6926 +2024-09-30T08:46:05.248564Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6926 +2024-09-30T08:46:05.262530Z INFO fork_choice_control::block_processor: Validating block with slot: 6927 +2024-09-30T08:46:05.263886Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x007ef8c885c3ed87feac8ffd71268ca7e658bea524e8604ef432ccef84e05063, slot: 6927 +2024-09-30T08:46:05.270416Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6927 +2024-09-30T08:46:05.270429Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6927 +2024-09-30T08:46:05.284468Z INFO fork_choice_control::block_processor: Validating block with slot: 6928 +2024-09-30T08:46:05.286267Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5a0425c4f3476ed0b911d753aa01364cd97a2aa048706b92856993ef8c03afd5, slot: 6928 +2024-09-30T08:46:05.294909Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6928 +2024-09-30T08:46:05.294929Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6928 +2024-09-30T08:46:05.309376Z INFO fork_choice_control::block_processor: Validating block with slot: 6929 +2024-09-30T08:46:05.310930Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4da278c5e9731eae9315fe677dfe9b934d63876198823dcb80623817f28f8637, slot: 6929 +2024-09-30T08:46:05.317905Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6929 +2024-09-30T08:46:05.317921Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6929 +2024-09-30T08:46:05.332570Z INFO fork_choice_control::block_processor: Validating block with slot: 6930 +2024-09-30T08:46:05.334079Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb087d14cb0a9b58fd51312780c73fd6007a0adb22f3c22a20c6fb61f43e2feb0, slot: 6930 +2024-09-30T08:46:05.341527Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6930 +2024-09-30T08:46:05.341548Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6930 +2024-09-30T08:46:05.356457Z INFO fork_choice_control::block_processor: Validating block with slot: 6931 +2024-09-30T08:46:05.357986Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5709afb5c27f31c706a45ec700fa31c74dc5cea0e1bad92b27c8264c29749d86, slot: 6931 +2024-09-30T08:46:05.364848Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6931 +2024-09-30T08:46:05.364865Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6931 +2024-09-30T08:46:05.380012Z INFO fork_choice_control::block_processor: Validating block with slot: 6932 +2024-09-30T08:46:05.380981Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8b1465afe2fedb7add9b1304a820f1fbed0c0374ec8ecb2c2b2ad65c2a0380cf, slot: 6932 +2024-09-30T08:46:05.386441Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6932 +2024-09-30T08:46:05.386453Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6932 +2024-09-30T08:46:05.401812Z INFO fork_choice_control::block_processor: Validating block with slot: 6933 +2024-09-30T08:46:05.403526Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xac7868aaa85ec68286a92ae67fbfefa7e620ef183168ab9a866c3e962f248f02, slot: 6933 +2024-09-30T08:46:05.410959Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6933 +2024-09-30T08:46:05.410980Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6933 +2024-09-30T08:46:05.427028Z INFO fork_choice_control::block_processor: Validating block with slot: 6934 +2024-09-30T08:46:05.428301Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdf1bc4ba08891f5be1c0faa9908f221bafd31c7e04c0fff5153c1e43c967977e, slot: 6934 +2024-09-30T08:46:05.434408Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6934 +2024-09-30T08:46:05.434421Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6934 +2024-09-30T08:46:05.450369Z INFO fork_choice_control::block_processor: Validating block with slot: 6935 +2024-09-30T08:46:05.451332Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc4d033fe68efb2178387d86b645c7114853368d0c4092bab3fa9848d78edc3f6, slot: 6935 +2024-09-30T08:46:05.457387Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6935 +2024-09-30T08:46:05.457406Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6935 +2024-09-30T08:46:05.478433Z INFO fork_choice_control::block_processor: Validating block with slot: 6936 +2024-09-30T08:46:05.478437Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 215, root: 0xd18557a1ef48921f792756181e01f63503ac33823f31b49ac99531624bf92091, head slot: 6935, head root: 0xc4d033fe68efb2178387d86b645c7114853368d0c4092bab3fa9848d78edc3f6) +2024-09-30T08:46:05.479668Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf94e424bfcdd09fedde0a70fd910d3be13131a64de73b1b90064cc5fe7cd9d5b, slot: 6936 +2024-09-30T08:46:05.486015Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6936 +2024-09-30T08:46:05.486028Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6936 +2024-09-30T08:46:05.504572Z INFO fork_choice_control::block_processor: Validating block with slot: 6938 +2024-09-30T08:46:05.506267Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x40b241c1ba0ec51b0ddab3185458a4ab70a36c0662d468cf90fdb31cc7465737, slot: 6938 +2024-09-30T08:46:05.519596Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6938 +2024-09-30T08:46:05.519621Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6938 +2024-09-30T08:46:05.536830Z INFO fork_choice_control::block_processor: Validating block with slot: 6939 +2024-09-30T08:46:05.540349Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5be43002714dab5424b8f690964fa405a574c12da1c3546eb82a778535f8c3dd, slot: 6939 +2024-09-30T08:46:05.552091Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6939 +2024-09-30T08:46:05.552108Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6939 +2024-09-30T08:46:05.569099Z INFO fork_choice_control::block_processor: Validating block with slot: 6940 +2024-09-30T08:46:05.570072Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x416679f438b3e44b3b2489ff3acf9ed65e72c3633eba7f9af18c8283356f579a, slot: 6940 +2024-09-30T08:46:05.576282Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6940 +2024-09-30T08:46:05.576303Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6940 +2024-09-30T08:46:05.593478Z INFO fork_choice_control::block_processor: Validating block with slot: 6941 +2024-09-30T08:46:05.595137Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa4e4ae3451fbe7a37169d689b372276a541687c9209904e360f919f2261d2a0a, slot: 6941 +2024-09-30T08:46:05.602244Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6941 +2024-09-30T08:46:05.602257Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6941 +2024-09-30T08:46:05.619772Z INFO fork_choice_control::block_processor: Validating block with slot: 6942 +2024-09-30T08:46:05.621042Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x644e0e85f053b12c47f21f723763f5672fed0628742bdd6c44b2bbc3d85f96bf, slot: 6942 +2024-09-30T08:46:05.627512Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6942 +2024-09-30T08:46:05.627534Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6942 +2024-09-30T08:46:05.645262Z INFO fork_choice_control::block_processor: Validating block with slot: 6943 +2024-09-30T08:46:05.646246Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7be7bb06bf13f56d4e06557618207c7a2834cc66875474b41673c7139f21c619, slot: 6943 +2024-09-30T08:46:05.652142Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6943 +2024-09-30T08:46:05.652157Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6943 +2024-09-30T08:46:05.670345Z INFO fork_choice_control::block_processor: Validating block with slot: 6944 +2024-09-30T08:46:05.671392Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4d3a9174ea050906e4413c935362a0b2855ed12bf980017d75832490660ae546, slot: 6944 +2024-09-30T08:46:05.769984Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6944 +2024-09-30T08:46:05.770007Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6944 +2024-09-30T08:46:05.780593Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 6944) +2024-09-30T08:46:05.780721Z INFO fork_choice_control::block_processor: Validating block with slot: 6945 +2024-09-30T08:46:05.782934Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9e68de9b30a8791b3881b1ce2eddbddfb2f4a499c61f52cc810ed860d50bd1a1, slot: 6945 +2024-09-30T08:46:05.859188Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6945 +2024-09-30T08:46:05.859209Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6945 +2024-09-30T08:46:05.870205Z INFO fork_choice_control::block_processor: Validating block with slot: 6946 +2024-09-30T08:46:05.871304Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x223670eb18c8aa6607b63337e26efa6ad27c74e18bb8499e26fe31b044cfaa24, slot: 6946 +2024-09-30T08:46:05.877715Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6946 +2024-09-30T08:46:05.877737Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6946 +2024-09-30T08:46:05.889706Z INFO fork_choice_control::block_processor: Validating block with slot: 6947 +2024-09-30T08:46:05.891664Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x93e514bc80cc75798225b0e0a9fb27de4db37f4ba78ba0875d906cb09997a497, slot: 6947 +2024-09-30T08:46:05.902947Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6947 +2024-09-30T08:46:05.902970Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6947 +2024-09-30T08:46:05.915414Z INFO fork_choice_control::block_processor: Validating block with slot: 6948 +2024-09-30T08:46:05.916985Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3ee809606067daa7fe4b3bf3216b7e624391337d28153be842d7fb118da1fd64, slot: 6948 +2024-09-30T08:46:05.926594Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6948 +2024-09-30T08:46:05.926629Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6948 +2024-09-30T08:46:05.945102Z INFO fork_choice_control::block_processor: Validating block with slot: 6949 +2024-09-30T08:46:05.947358Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7f17626637acaba7d2105c98e41e930b50f5439dfcd959f54adbc9e66982ab37, slot: 6949 +2024-09-30T08:46:05.962488Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6949 +2024-09-30T08:46:05.962511Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6949 +2024-09-30T08:46:05.976578Z INFO fork_choice_control::block_processor: Validating block with slot: 6950 +2024-09-30T08:46:05.979412Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x91f8caa48db2c223a0f57be284097f3d24c85cca92d25654ea3d9261dbe6383e, slot: 6950 +2024-09-30T08:46:05.997832Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6950 +2024-09-30T08:46:05.997856Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6950 +2024-09-30T08:46:06.012824Z INFO fork_choice_control::block_processor: Validating block with slot: 6951 +2024-09-30T08:46:06.014637Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe6ab7243883578ec64e4cd8a3049f1dede4384384ba5a0e6e1d63d912cc56c90, slot: 6951 +2024-09-30T08:46:06.023968Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6951 +2024-09-30T08:46:06.023993Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6951 +2024-09-30T08:46:06.037816Z INFO fork_choice_control::block_processor: Validating block with slot: 6952 +2024-09-30T08:46:06.039133Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeec5dc0b83a1527fe8514bbfd8977770ef4ccfaa2481df12764c147ab366642a, slot: 6952 +2024-09-30T08:46:06.045542Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6952 +2024-09-30T08:46:06.045558Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6952 +2024-09-30T08:46:06.059343Z INFO fork_choice_control::block_processor: Validating block with slot: 6954 +2024-09-30T08:46:06.061926Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7a72f0db5f054ab52b55f550f4cbf39e95e361349deacd6c1e7929253b51d9b8, slot: 6954 +2024-09-30T08:46:06.072646Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6954 +2024-09-30T08:46:06.072665Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6954 +2024-09-30T08:46:06.086542Z INFO fork_choice_control::block_processor: Validating block with slot: 6955 +2024-09-30T08:46:06.087601Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1de404646eea5576effa58ce49c4a5b364ca49d496e9270dff6bd906bd789431, slot: 6955 +2024-09-30T08:46:06.093557Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6955 +2024-09-30T08:46:06.093577Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6955 +2024-09-30T08:46:06.106851Z INFO fork_choice_control::block_processor: Validating block with slot: 6956 +2024-09-30T08:46:06.107954Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9dc220c7013c63effff893cb9b793f8b1fabad79261ab6f33a95fbc2d8b03c01, slot: 6956 +2024-09-30T08:46:06.113766Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6956 +2024-09-30T08:46:06.113779Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6956 +2024-09-30T08:46:06.127329Z INFO fork_choice_control::block_processor: Validating block with slot: 6957 +2024-09-30T08:46:06.128437Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7467d3030303ef00794fce9c06a7e363ffac2e1dfbca372ca9af8d6dff3faa93, slot: 6957 +2024-09-30T08:46:06.134261Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6957 +2024-09-30T08:46:06.134276Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6957 +2024-09-30T08:46:06.148077Z INFO fork_choice_control::block_processor: Validating block with slot: 6958 +2024-09-30T08:46:06.149353Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x879ec0a5c5607895d64dcb177d4025281bcf9dc86fe22598d1e2fb406d195ee8, slot: 6958 +2024-09-30T08:46:06.155715Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6958 +2024-09-30T08:46:06.155744Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6958 +2024-09-30T08:46:06.169457Z INFO fork_choice_control::block_processor: Validating block with slot: 6959 +2024-09-30T08:46:06.170696Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8415cc28dc49cfee96885aec712f4c640ec9b3afc4213a243123a238af1943c1, slot: 6959 +2024-09-30T08:46:06.176938Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6959 +2024-09-30T08:46:06.176954Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6959 +2024-09-30T08:46:06.191553Z INFO fork_choice_control::block_processor: Validating block with slot: 6960 +2024-09-30T08:46:06.193251Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3af596e62ae94b05fc558fb2782c6997a0ee0398532df52c0ae6a5a1f1a973bc, slot: 6960 +2024-09-30T08:46:06.201548Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6960 +2024-09-30T08:46:06.201565Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6960 +2024-09-30T08:46:06.216441Z INFO fork_choice_control::block_processor: Validating block with slot: 6961 +2024-09-30T08:46:06.217435Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8f0df44b645a45d59101627ec4668f8099a1af587fde037202aad578ca18a901, slot: 6961 +2024-09-30T08:46:06.223296Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6961 +2024-09-30T08:46:06.223320Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6961 +2024-09-30T08:46:06.237838Z INFO fork_choice_control::block_processor: Validating block with slot: 6962 +2024-09-30T08:46:06.239108Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x223b1a4fd1189d3dc58a71662e84d8fa91e543bb6c7beb071d37a956f1cf887b, slot: 6962 +2024-09-30T08:46:06.245793Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6962 +2024-09-30T08:46:06.245813Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6962 +2024-09-30T08:46:06.260541Z INFO fork_choice_control::block_processor: Validating block with slot: 6963 +2024-09-30T08:46:06.262592Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4c2360fd7db6337d9f7b9617f977907ca01917ef36130c059c6ff21aaa11b865, slot: 6963 +2024-09-30T08:46:06.271075Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6963 +2024-09-30T08:46:06.271089Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6963 +2024-09-30T08:46:06.286696Z INFO fork_choice_control::block_processor: Validating block with slot: 6964 +2024-09-30T08:46:06.287810Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3752272a890d2ee7863001fd79a4b67bf2d6ca6fe6eb58dc5bfa108691ec4d85, slot: 6964 +2024-09-30T08:46:06.294099Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6964 +2024-09-30T08:46:06.294121Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6964 +2024-09-30T08:46:06.309473Z INFO fork_choice_control::block_processor: Validating block with slot: 6965 +2024-09-30T08:46:06.311652Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5eb55b0dbdec9c315c4eae9b613d766d0809ccee1bb82baf973393cfab6b9fb2, slot: 6965 +2024-09-30T08:46:06.320518Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6965 +2024-09-30T08:46:06.320533Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6965 +2024-09-30T08:46:06.336430Z INFO fork_choice_control::block_processor: Validating block with slot: 6966 +2024-09-30T08:46:06.338154Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x444a912d2d674c60e14f7a57d465c78ec2fad0c789605aff1c8b812f13084f04, slot: 6966 +2024-09-30T08:46:06.345574Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6966 +2024-09-30T08:46:06.345592Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6966 +2024-09-30T08:46:06.361528Z INFO fork_choice_control::block_processor: Validating block with slot: 6967 +2024-09-30T08:46:06.362797Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5ebcd12472658e6f71b910a2f2e782b6cc6e8f54460c2af1ac106d4e8bdf1b5b, slot: 6967 +2024-09-30T08:46:06.369067Z INFO fork_choice_control::block_processor: Validating block with slot: 7465 +2024-09-30T08:46:06.369082Z INFO fork_choice_control::block_processor: Validating block with slot: 7466 +2024-09-30T08:46:06.369145Z INFO fork_choice_control::block_processor: Validating block with slot: 7467 +2024-09-30T08:46:06.369598Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6967 +2024-09-30T08:46:06.369610Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6967 +2024-09-30T08:46:06.374086Z INFO fork_choice_control::block_processor: Validating block with slot: 7468 +2024-09-30T08:46:06.374087Z INFO fork_choice_control::block_processor: Validating block with slot: 7469 +2024-09-30T08:46:06.374173Z INFO fork_choice_control::block_processor: Validating block with slot: 7470 +2024-09-30T08:46:06.392212Z INFO fork_choice_control::block_processor: Validating block with slot: 6968 +2024-09-30T08:46:06.392210Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 216, root: 0xa0fcb91c4046da8fd2ecf59b5a512f8684262e04b2ec658d5868c265d92cc731, head slot: 6967, head root: 0x5ebcd12472658e6f71b910a2f2e782b6cc6e8f54460c2af1ac106d4e8bdf1b5b) +2024-09-30T08:46:06.393202Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8c2a9722ac26b01cb12f256c3d648b336c2f989b96c712031b00e3fc056fc664, slot: 6968 +2024-09-30T08:46:06.399457Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6968 +2024-09-30T08:46:06.399474Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6968 +2024-09-30T08:46:06.415999Z INFO fork_choice_control::block_processor: Validating block with slot: 6969 +2024-09-30T08:46:06.418351Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2ddf0afe2c4a0b7e131bfc9f5cd82763ba0797f223e4d2ed6f56e13cd28d9fd9, slot: 6969 +2024-09-30T08:46:06.428869Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6969 +2024-09-30T08:46:06.428890Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6969 +2024-09-30T08:46:06.447417Z INFO fork_choice_control::block_processor: Validating block with slot: 6970 +2024-09-30T08:46:06.448483Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7bd9e59740e8650a16df4a9ca3931d8a477e2a5029eaf7b8a0628950bd561e90, slot: 6970 +2024-09-30T08:46:06.455536Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6970 +2024-09-30T08:46:06.455562Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6970 +2024-09-30T08:46:06.474356Z INFO fork_choice_control::block_processor: Validating block with slot: 6971 +2024-09-30T08:46:06.475558Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd1e675b9c2bf96cdfe4760d00afd7adb2683d68a17c9640f9673719a2440bf33, slot: 6971 +2024-09-30T08:46:06.482148Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6971 +2024-09-30T08:46:06.482162Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6971 +2024-09-30T08:46:06.487839Z INFO fork_choice_control::block_processor: Validating block with slot: 7472 +2024-09-30T08:46:06.487908Z INFO fork_choice_control::block_processor: Validating block with slot: 7471 +2024-09-30T08:46:06.501397Z INFO fork_choice_control::block_processor: Validating block with slot: 6972 +2024-09-30T08:46:06.502823Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9d651965ce5b2b575148ec894b38f569b56c5de04b9398f6d3af45492c66d984, slot: 6972 +2024-09-30T08:46:06.512903Z INFO fork_choice_control::block_processor: Validating block with slot: 7473 +2024-09-30T08:46:06.513052Z INFO fork_choice_control::block_processor: Validating block with slot: 7474 +2024-09-30T08:46:06.513525Z INFO fork_choice_control::block_processor: Validating block with slot: 7475 +2024-09-30T08:46:06.514780Z INFO fork_choice_control::block_processor: Validating block with slot: 7477 +2024-09-30T08:46:06.514812Z INFO fork_choice_control::block_processor: Validating block with slot: 7476 +2024-09-30T08:46:06.514883Z INFO fork_choice_control::block_processor: Validating block with slot: 7478 +2024-09-30T08:46:06.516181Z INFO fork_choice_control::block_processor: Validating block with slot: 7479 +2024-09-30T08:46:06.516514Z INFO fork_choice_control::block_processor: Validating block with slot: 7480 +2024-09-30T08:46:06.520207Z INFO fork_choice_control::block_processor: Validating block with slot: 7486 +2024-09-30T08:46:06.521122Z INFO fork_choice_control::block_processor: Validating block with slot: 7481 +2024-09-30T08:46:06.521808Z INFO fork_choice_control::block_processor: Validating block with slot: 7482 +2024-09-30T08:46:06.522757Z INFO fork_choice_control::block_processor: Validating block with slot: 7485 +2024-09-30T08:46:06.522754Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6972 +2024-09-30T08:46:06.522786Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6972 +2024-09-30T08:46:06.523857Z INFO fork_choice_control::block_processor: Validating block with slot: 7483 +2024-09-30T08:46:06.524093Z INFO fork_choice_control::block_processor: Validating block with slot: 7484 +2024-09-30T08:46:06.533484Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 6912 +2024-09-30T08:46:06.536694Z INFO fork_choice_control::block_processor: Validating block with slot: 7490 +2024-09-30T08:46:06.536687Z INFO fork_choice_control::block_processor: Validating block with slot: 7489 +2024-09-30T08:46:06.536705Z INFO fork_choice_control::block_processor: Validating block with slot: 7493 +2024-09-30T08:46:06.536726Z INFO fork_choice_control::block_processor: Validating block with slot: 7492 +2024-09-30T08:46:06.536840Z INFO fork_choice_control::block_processor: Validating block with slot: 7488 +2024-09-30T08:46:06.537735Z INFO fork_choice_control::block_processor: Validating block with slot: 7494 +2024-09-30T08:46:06.538368Z INFO fork_choice_control::block_processor: Validating block with slot: 7491 +2024-09-30T08:46:06.538633Z INFO fork_choice_control::block_processor: Validating block with slot: 7496 +2024-09-30T08:46:06.538748Z INFO fork_choice_control::block_processor: Validating block with slot: 7497 +2024-09-30T08:46:06.539768Z INFO fork_choice_control::block_processor: Validating block with slot: 7498 +2024-09-30T08:46:06.540109Z INFO fork_choice_control::block_processor: Validating block with slot: 7487 +2024-09-30T08:46:06.543142Z INFO fork_choice_control::block_processor: Validating block with slot: 6973 +2024-09-30T08:46:06.544216Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x71d269976b753a6d726c913b2e2fd76b6a26f63c15630069630b997d9edc4045, slot: 6973 +2024-09-30T08:46:06.550326Z INFO fork_choice_control::block_processor: Validating block with slot: 7499 +2024-09-30T08:46:06.550376Z INFO fork_choice_control::block_processor: Validating block with slot: 7500 +2024-09-30T08:46:06.552559Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6973 +2024-09-30T08:46:06.552647Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6973 +2024-09-30T08:46:06.573152Z INFO fork_choice_control::block_processor: Validating block with slot: 6974 +2024-09-30T08:46:06.574269Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xceac8db95d216e5ee63e2396bfd41a47c5f984f4bed4724f5c47c11ec8322561, slot: 6974 +2024-09-30T08:46:06.583020Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6974 +2024-09-30T08:46:06.583038Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6974 +2024-09-30T08:46:06.603628Z INFO fork_choice_control::block_processor: Validating block with slot: 6975 +2024-09-30T08:46:06.604685Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x42e87c1fa960797d91c7d39f6b26add07f60267c6de910791dd402f3233e5a3d, slot: 6975 +2024-09-30T08:46:06.609186Z INFO fork_choice_control::block_processor: Validating block with slot: 7501 +2024-09-30T08:46:06.609225Z INFO fork_choice_control::block_processor: Validating block with slot: 7502 +2024-09-30T08:46:06.609756Z INFO fork_choice_control::block_processor: Validating block with slot: 7503 +2024-09-30T08:46:06.609852Z INFO fork_choice_control::block_processor: Validating block with slot: 7505 +2024-09-30T08:46:06.610547Z INFO fork_choice_control::block_processor: Validating block with slot: 7506 +2024-09-30T08:46:06.611632Z INFO fork_choice_control::block_processor: Validating block with slot: 7507 +2024-09-30T08:46:06.611657Z INFO fork_choice_control::block_processor: Validating block with slot: 7508 +2024-09-30T08:46:06.613391Z INFO fork_choice_control::block_processor: Validating block with slot: 7510 +2024-09-30T08:46:06.613386Z INFO fork_choice_control::block_processor: Validating block with slot: 7509 +2024-09-30T08:46:06.614344Z INFO fork_choice_control::block_processor: Validating block with slot: 7514 +2024-09-30T08:46:06.614958Z INFO fork_choice_control::block_processor: Validating block with slot: 7511 +2024-09-30T08:46:06.615604Z INFO fork_choice_control::block_processor: Validating block with slot: 7515 +2024-09-30T08:46:06.615997Z INFO fork_choice_control::block_processor: Validating block with slot: 7516 +2024-09-30T08:46:06.616555Z INFO fork_choice_control::block_processor: Validating block with slot: 7517 +2024-09-30T08:46:06.616687Z INFO fork_choice_control::block_processor: Validating block with slot: 7518 +2024-09-30T08:46:06.617233Z INFO fork_choice_control::block_processor: Validating block with slot: 7519 +2024-09-30T08:46:06.618138Z INFO fork_choice_control::block_processor: Validating block with slot: 7520 +2024-09-30T08:46:06.618165Z INFO fork_choice_control::block_processor: Validating block with slot: 7512 +2024-09-30T08:46:06.618243Z INFO fork_choice_control::block_processor: Validating block with slot: 7513 +2024-09-30T08:46:06.618497Z INFO fork_choice_control::block_processor: Validating block with slot: 7522 +2024-09-30T08:46:06.618696Z INFO fork_choice_control::block_processor: Validating block with slot: 7523 +2024-09-30T08:46:06.619229Z INFO fork_choice_control::block_processor: Validating block with slot: 7524 +2024-09-30T08:46:06.619576Z INFO fork_choice_control::block_processor: Validating block with slot: 7525 +2024-09-30T08:46:06.619614Z INFO fork_choice_control::block_processor: Validating block with slot: 7526 +2024-09-30T08:46:06.620463Z INFO fork_choice_control::block_processor: Validating block with slot: 7527 +2024-09-30T08:46:06.622918Z INFO fork_choice_control::block_processor: Validating block with slot: 7528 +2024-09-30T08:46:06.623334Z INFO fork_choice_control::block_processor: Validating block with slot: 7401 +2024-09-30T08:46:06.624330Z INFO fork_choice_control::block_processor: Validating block with slot: 7406 +2024-09-30T08:46:06.625442Z INFO fork_choice_control::block_processor: Validating block with slot: 7402 +2024-09-30T08:46:06.626287Z INFO fork_choice_control::block_processor: Validating block with slot: 7403 +2024-09-30T08:46:06.626620Z INFO fork_choice_control::block_processor: Validating block with slot: 7521 +2024-09-30T08:46:06.628120Z INFO fork_choice_control::block_processor: Validating block with slot: 7404 +2024-09-30T08:46:06.628418Z INFO fork_choice_control::block_processor: Validating block with slot: 7405 +2024-09-30T08:46:06.629650Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6975 +2024-09-30T08:46:06.629706Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6975 +2024-09-30T08:46:06.650609Z INFO fork_choice_control::block_processor: Validating block with slot: 6977 +2024-09-30T08:46:06.652550Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4ffb0bb43bcd55805993db448108f79e25516d3f8c54ea7197ed7b9f053d6214, slot: 6977 +2024-09-30T08:46:06.823981Z INFO fork_choice_control::block_processor: Validating block with slot: 7407 +2024-09-30T08:46:06.824037Z INFO fork_choice_control::block_processor: Validating block with slot: 7409 +2024-09-30T08:46:06.824059Z INFO fork_choice_control::block_processor: Validating block with slot: 7410 +2024-09-30T08:46:06.824028Z INFO fork_choice_control::block_processor: Validating block with slot: 7408 +2024-09-30T08:46:06.824768Z INFO fork_choice_control::block_processor: Validating block with slot: 7411 +2024-09-30T08:46:06.824829Z INFO fork_choice_control::block_processor: Validating block with slot: 7412 +2024-09-30T08:46:06.825231Z INFO fork_choice_control::block_processor: Validating block with slot: 7413 +2024-09-30T08:46:06.825342Z INFO fork_choice_control::block_processor: Validating block with slot: 7414 +2024-09-30T08:46:06.825524Z INFO fork_choice_control::block_processor: Validating block with slot: 7415 +2024-09-30T08:46:06.826680Z INFO fork_choice_control::block_processor: Validating block with slot: 7416 +2024-09-30T08:46:06.826965Z INFO fork_choice_control::block_processor: Validating block with slot: 7417 +2024-09-30T08:46:06.827087Z INFO fork_choice_control::block_processor: Validating block with slot: 7418 +2024-09-30T08:46:06.827691Z INFO fork_choice_control::block_processor: Validating block with slot: 7420 +2024-09-30T08:46:06.827870Z INFO fork_choice_control::block_processor: Validating block with slot: 7419 +2024-09-30T08:46:06.827979Z INFO fork_choice_control::block_processor: Validating block with slot: 7421 +2024-09-30T08:46:06.828700Z INFO fork_choice_control::block_processor: Validating block with slot: 7422 +2024-09-30T08:46:06.829395Z INFO fork_choice_control::block_processor: Validating block with slot: 7423 +2024-09-30T08:46:06.829985Z INFO fork_choice_control::block_processor: Validating block with slot: 7424 +2024-09-30T08:46:06.830079Z INFO fork_choice_control::block_processor: Validating block with slot: 7426 +2024-09-30T08:46:06.831565Z INFO fork_choice_control::block_processor: Validating block with slot: 7427 +2024-09-30T08:46:06.832439Z INFO fork_choice_control::block_processor: Validating block with slot: 7428 +2024-09-30T08:46:06.832845Z INFO fork_choice_control::block_processor: Validating block with slot: 7429 +2024-09-30T08:46:06.832986Z INFO fork_choice_control::block_processor: Validating block with slot: 7431 +2024-09-30T08:46:06.833103Z INFO fork_choice_control::block_processor: Validating block with slot: 7432 +2024-09-30T08:46:06.834163Z INFO fork_choice_control::block_processor: Validating block with slot: 7433 +2024-09-30T08:46:06.834503Z INFO fork_choice_control::block_processor: Validating block with slot: 7430 +2024-09-30T08:46:06.834968Z INFO fork_choice_control::block_processor: Validating block with slot: 7435 +2024-09-30T08:46:06.835244Z INFO fork_choice_control::block_processor: Validating block with slot: 7436 +2024-09-30T08:46:06.835311Z INFO fork_choice_control::block_processor: Validating block with slot: 7437 +2024-09-30T08:46:06.835395Z INFO fork_choice_control::block_processor: Validating block with slot: 7438 +2024-09-30T08:46:06.836390Z INFO fork_choice_control::block_processor: Validating block with slot: 7439 +2024-09-30T08:46:06.836479Z INFO fork_choice_control::block_processor: Validating block with slot: 7440 +2024-09-30T08:46:06.839797Z INFO fork_choice_control::block_processor: Validating block with slot: 7441 +2024-09-30T08:46:06.840516Z INFO fork_choice_control::block_processor: Validating block with slot: 7442 +2024-09-30T08:46:06.840559Z INFO fork_choice_control::block_processor: Validating block with slot: 7447 +2024-09-30T08:46:06.841894Z INFO fork_choice_control::block_processor: Validating block with slot: 7443 +2024-09-30T08:46:06.842191Z INFO fork_choice_control::block_processor: Validating block with slot: 7448 +2024-09-30T08:46:06.843059Z INFO fork_choice_control::block_processor: Validating block with slot: 7444 +2024-09-30T08:46:06.844388Z INFO fork_choice_control::block_processor: Validating block with slot: 7449 +2024-09-30T08:46:06.844545Z INFO fork_choice_control::block_processor: Validating block with slot: 7450 +2024-09-30T08:46:06.844930Z INFO fork_choice_control::block_processor: Validating block with slot: 7451 +2024-09-30T08:46:06.846330Z INFO fork_choice_control::block_processor: Validating block with slot: 7452 +2024-09-30T08:46:06.847973Z INFO fork_choice_control::block_processor: Validating block with slot: 7453 +2024-09-30T08:46:06.848271Z INFO fork_choice_control::block_processor: Validating block with slot: 7455 +2024-09-30T08:46:06.849358Z INFO fork_choice_control::block_processor: Validating block with slot: 7456 +2024-09-30T08:46:06.849463Z INFO fork_choice_control::block_processor: Validating block with slot: 7457 +2024-09-30T08:46:06.850444Z INFO fork_choice_control::block_processor: Validating block with slot: 7458 +2024-09-30T08:46:06.850699Z INFO fork_choice_control::block_processor: Validating block with slot: 7459 +2024-09-30T08:46:06.851782Z INFO fork_choice_control::block_processor: Validating block with slot: 7460 +2024-09-30T08:46:06.852986Z INFO fork_choice_control::block_processor: Validating block with slot: 7462 +2024-09-30T08:46:06.853026Z INFO fork_choice_control::block_processor: Validating block with slot: 7461 +2024-09-30T08:46:06.853135Z INFO fork_choice_control::block_processor: Validating block with slot: 7446 +2024-09-30T08:46:06.854414Z INFO fork_choice_control::block_processor: Validating block with slot: 7337 +2024-09-30T08:46:06.854429Z INFO fork_choice_control::block_processor: Validating block with slot: 7338 +2024-09-30T08:46:06.854782Z INFO fork_choice_control::block_processor: Validating block with slot: 7339 +2024-09-30T08:46:06.854859Z INFO fork_choice_control::block_processor: Validating block with slot: 7340 +2024-09-30T08:46:06.855508Z INFO fork_choice_control::block_processor: Validating block with slot: 7341 +2024-09-30T08:46:06.855937Z INFO fork_choice_control::block_processor: Validating block with slot: 7342 +2024-09-30T08:46:06.857182Z INFO fork_choice_control::block_processor: Validating block with slot: 7343 +2024-09-30T08:46:06.857300Z INFO fork_choice_control::block_processor: Validating block with slot: 7445 +2024-09-30T08:46:06.858031Z INFO fork_choice_control::block_processor: Validating block with slot: 7345 +2024-09-30T08:46:06.858624Z INFO fork_choice_control::block_processor: Validating block with slot: 7348 +2024-09-30T08:46:06.860356Z INFO fork_choice_control::block_processor: Validating block with slot: 7350 +2024-09-30T08:46:06.865402Z INFO fork_choice_control::block_processor: Validating block with slot: 7351 +2024-09-30T08:46:06.866598Z INFO fork_choice_control::block_processor: Validating block with slot: 7354 +2024-09-30T08:46:06.867174Z INFO fork_choice_control::block_processor: Validating block with slot: 7352 +2024-09-30T08:46:06.867946Z INFO fork_choice_control::block_processor: Validating block with slot: 7355 +2024-09-30T08:46:06.868086Z INFO fork_choice_control::block_processor: Validating block with slot: 7356 +2024-09-30T08:46:06.869180Z INFO fork_choice_control::block_processor: Validating block with slot: 7454 +2024-09-30T08:46:06.869442Z INFO fork_choice_control::block_processor: Validating block with slot: 7359 +2024-09-30T08:46:06.870924Z INFO fork_choice_control::block_processor: Validating block with slot: 7353 +2024-09-30T08:46:06.871141Z INFO fork_choice_control::block_processor: Validating block with slot: 7346 +2024-09-30T08:46:06.871964Z INFO fork_choice_control::block_processor: Validating block with slot: 7360 +2024-09-30T08:46:06.872180Z INFO fork_choice_control::block_processor: Validating block with slot: 7361 +2024-09-30T08:46:06.875729Z INFO fork_choice_control::block_processor: Validating block with slot: 7363 +2024-09-30T08:46:06.876281Z INFO fork_choice_control::block_processor: Validating block with slot: 7347 +2024-09-30T08:46:06.878282Z INFO fork_choice_control::block_processor: Validating block with slot: 7357 +2024-09-30T08:46:06.879000Z INFO fork_choice_control::block_processor: Validating block with slot: 7367 +2024-09-30T08:46:06.879043Z INFO fork_choice_control::block_processor: Validating block with slot: 7368 +2024-09-30T08:46:06.880051Z INFO fork_choice_control::block_processor: Validating block with slot: 7364 +2024-09-30T08:46:06.880203Z INFO fork_choice_control::block_processor: Validating block with slot: 7369 +2024-09-30T08:46:06.880314Z INFO fork_choice_control::block_processor: Validating block with slot: 7463 +2024-09-30T08:46:06.880397Z INFO fork_choice_control::block_processor: Validating block with slot: 7358 +2024-09-30T08:46:06.880410Z INFO fork_choice_control::block_processor: Validating block with slot: 7365 +2024-09-30T08:46:06.881331Z INFO fork_choice_control::block_processor: Validating block with slot: 7464 +2024-09-30T08:46:06.881901Z INFO fork_choice_control::block_processor: Validating block with slot: 7366 +2024-09-30T08:46:06.894416Z INFO fork_choice_control::block_processor: Validating block with slot: 7370 +2024-09-30T08:46:06.894437Z INFO fork_choice_control::block_processor: Validating block with slot: 7371 +2024-09-30T08:46:06.895069Z INFO fork_choice_control::block_processor: Validating block with slot: 7374 +2024-09-30T08:46:06.895069Z INFO fork_choice_control::block_processor: Validating block with slot: 7372 +2024-09-30T08:46:06.895091Z INFO fork_choice_control::block_processor: Validating block with slot: 7375 +2024-09-30T08:46:06.895248Z INFO fork_choice_control::block_processor: Validating block with slot: 7373 +2024-09-30T08:46:06.895758Z INFO fork_choice_control::block_processor: Validating block with slot: 7376 +2024-09-30T08:46:06.896258Z INFO fork_choice_control::block_processor: Validating block with slot: 7377 +2024-09-30T08:46:06.896375Z INFO fork_choice_control::block_processor: Validating block with slot: 7378 +2024-09-30T08:46:06.896382Z INFO fork_choice_control::block_processor: Validating block with slot: 7379 +2024-09-30T08:46:06.896918Z INFO fork_choice_control::block_processor: Validating block with slot: 7380 +2024-09-30T08:46:06.897416Z INFO fork_choice_control::block_processor: Validating block with slot: 7381 +2024-09-30T08:46:06.897689Z INFO fork_choice_control::block_processor: Validating block with slot: 7382 +2024-09-30T08:46:06.897837Z INFO fork_choice_control::block_processor: Validating block with slot: 7383 +2024-09-30T08:46:06.898430Z INFO fork_choice_control::block_processor: Validating block with slot: 7384 +2024-09-30T08:46:06.898706Z INFO fork_choice_control::block_processor: Validating block with slot: 7385 +2024-09-30T08:46:06.904261Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6977 +2024-09-30T08:46:06.904288Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6977 +2024-09-30T08:46:06.916686Z INFO fork_choice_control::block_processor: Validating block with slot: 6978 +2024-09-30T08:46:06.920500Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaf75a68ee4452dfad062cffc39d93147c43e1b2724833a938c04ee02b24dd17b, slot: 6978 +2024-09-30T08:46:06.933792Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6978 +2024-09-30T08:46:06.933811Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6978 +2024-09-30T08:46:06.946201Z INFO fork_choice_control::block_processor: Validating block with slot: 6979 +2024-09-30T08:46:06.948305Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x575b983c4c7f643d7262ce4803a4d5040024fe668c735ddcc121f0cf5467a911, slot: 6979 +2024-09-30T08:46:06.957349Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6979 +2024-09-30T08:46:06.957372Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6979 +2024-09-30T08:46:06.969780Z INFO fork_choice_control::block_processor: Validating block with slot: 6980 +2024-09-30T08:46:06.973767Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xac9c192f8ad2bd410e54eb9367430056ebb261441290351cc475578cc1270bcb, slot: 6980 +2024-09-30T08:46:06.989817Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6980 +2024-09-30T08:46:06.989844Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6980 +2024-09-30T08:46:07.008911Z INFO fork_choice_control::block_processor: Validating block with slot: 6981 +2024-09-30T08:46:07.010016Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8e7506d8f3c793b97499ba44888377e90413b198ec737966f86ea87dca97b18c, slot: 6981 +2024-09-30T08:46:07.016053Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6981 +2024-09-30T08:46:07.016069Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6981 +2024-09-30T08:46:07.028252Z INFO fork_choice_control::block_processor: Validating block with slot: 6982 +2024-09-30T08:46:07.030026Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0ec0f81cdef8ea61e6a68c748b9b6f063064142b158ade2498b85c5b58ecd97f, slot: 6982 +2024-09-30T08:46:07.039027Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6982 +2024-09-30T08:46:07.039047Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6982 +2024-09-30T08:46:07.051558Z INFO fork_choice_control::block_processor: Validating block with slot: 6983 +2024-09-30T08:46:07.053248Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8ec54f5ab8123fb709758aaf47b005dbd69ddbe6863d6c629231db59d7dda89f, slot: 6983 +2024-09-30T08:46:07.060855Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6983 +2024-09-30T08:46:07.060876Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6983 +2024-09-30T08:46:07.074161Z INFO fork_choice_control::block_processor: Validating block with slot: 6984 +2024-09-30T08:46:07.075145Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1344b05a9e649b9b211c8df68e2d6f87c8fa48d4cf23063bcb35fa21f1f2f19c, slot: 6984 +2024-09-30T08:46:07.080979Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6984 +2024-09-30T08:46:07.080994Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6984 +2024-09-30T08:46:07.093959Z INFO fork_choice_control::block_processor: Validating block with slot: 6985 +2024-09-30T08:46:07.095189Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe1813dd338038861879e3028fe185bd1d6e9fc17b4f6f1fce96fc6b854e18b84, slot: 6985 +2024-09-30T08:46:07.101653Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6985 +2024-09-30T08:46:07.101668Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6985 +2024-09-30T08:46:07.114846Z INFO fork_choice_control::block_processor: Validating block with slot: 6986 +2024-09-30T08:46:07.115942Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x11291726a0100bccd615da71c4f02f2586ce3a7d7d1ba4229dcc5d0d81aeefff, slot: 6986 +2024-09-30T08:46:07.121985Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6986 +2024-09-30T08:46:07.122008Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6986 +2024-09-30T08:46:07.135093Z INFO fork_choice_control::block_processor: Validating block with slot: 6987 +2024-09-30T08:46:07.136043Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9ca8666957a51efaddec899b9ba3d0ed5a977b2688246e40fdccd2d988b10656, slot: 6987 +2024-09-30T08:46:07.142422Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6987 +2024-09-30T08:46:07.142446Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6987 +2024-09-30T08:46:07.156935Z INFO fork_choice_control::block_processor: Validating block with slot: 6988 +2024-09-30T08:46:07.158301Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1544c2d44d7f6dafb9bbe6da1d6c7b2c6bf40f6f03cbbd9af2e86d57365c45cb, slot: 6988 +2024-09-30T08:46:07.164904Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6988 +2024-09-30T08:46:07.164918Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6988 +2024-09-30T08:46:07.170005Z INFO fork_choice_control::block_processor: Validating block with slot: 7387 +2024-09-30T08:46:07.170011Z INFO fork_choice_control::block_processor: Validating block with slot: 7386 +2024-09-30T08:46:07.170039Z INFO fork_choice_control::block_processor: Validating block with slot: 7389 +2024-09-30T08:46:07.170045Z INFO fork_choice_control::block_processor: Validating block with slot: 7390 +2024-09-30T08:46:07.170058Z INFO fork_choice_control::block_processor: Validating block with slot: 7388 +2024-09-30T08:46:07.171109Z INFO fork_choice_control::block_processor: Validating block with slot: 7391 +2024-09-30T08:46:07.171530Z INFO fork_choice_control::block_processor: Validating block with slot: 7392 +2024-09-30T08:46:07.172069Z INFO fork_choice_control::block_processor: Validating block with slot: 7393 +2024-09-30T08:46:07.173450Z INFO fork_choice_control::block_processor: Validating block with slot: 7394 +2024-09-30T08:46:07.173614Z INFO fork_choice_control::block_processor: Validating block with slot: 7395 +2024-09-30T08:46:07.173823Z INFO fork_choice_control::block_processor: Validating block with slot: 7396 +2024-09-30T08:46:07.174738Z INFO fork_choice_control::block_processor: Validating block with slot: 7397 +2024-09-30T08:46:07.174925Z INFO fork_choice_control::block_processor: Validating block with slot: 7398 +2024-09-30T08:46:07.175400Z INFO fork_choice_control::block_processor: Validating block with slot: 7399 +2024-09-30T08:46:07.175752Z INFO fork_choice_control::block_processor: Validating block with slot: 7400 +2024-09-30T08:46:07.180231Z INFO fork_choice_control::block_processor: Validating block with slot: 6989 +2024-09-30T08:46:07.183263Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcf21c641ebf06412baa54c81e5543151059347390412fdbd8be5794022423050, slot: 6989 +2024-09-30T08:46:07.194027Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6989 +2024-09-30T08:46:07.194046Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6989 +2024-09-30T08:46:07.208750Z INFO fork_choice_control::block_processor: Validating block with slot: 6990 +2024-09-30T08:46:07.209952Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x846df582221a02a19ab6e0e97b75712fcabdd733c3706eee679a8bd90d8cc4e0, slot: 6990 +2024-09-30T08:46:07.216057Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6990 +2024-09-30T08:46:07.216072Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6990 +2024-09-30T08:46:07.230806Z INFO fork_choice_control::block_processor: Validating block with slot: 6992 +2024-09-30T08:46:07.232620Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa9ffea1e936f14660ee364d5cead7f79bc6964a0dca723c0a39dfa1fdeab1a64, slot: 6992 +2024-09-30T08:46:07.242179Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6992 +2024-09-30T08:46:07.242198Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6992 +2024-09-30T08:46:07.257058Z INFO fork_choice_control::block_processor: Validating block with slot: 6993 +2024-09-30T08:46:07.259436Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb77f2a74d10555f36ee255d6fa3ef267c4f299ca66068b523365128d3a7ec57b, slot: 6993 +2024-09-30T08:46:07.268138Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6993 +2024-09-30T08:46:07.268151Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6993 +2024-09-30T08:46:07.283789Z INFO fork_choice_control::block_processor: Validating block with slot: 6994 +2024-09-30T08:46:07.284897Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xca13d6492af08ab2d1ad9156a85540f523790107d85dbd06977d9916905d2246, slot: 6994 +2024-09-30T08:46:07.291376Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6994 +2024-09-30T08:46:07.291395Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6994 +2024-09-30T08:46:07.307894Z INFO fork_choice_control::block_processor: Validating block with slot: 6995 +2024-09-30T08:46:07.309178Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe4a8337a5988fad1e80effe86085c1b10b1d4772b9392e6f7a50e72b599140d8, slot: 6995 +2024-09-30T08:46:07.315656Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6995 +2024-09-30T08:46:07.315671Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6995 +2024-09-30T08:46:07.331184Z INFO fork_choice_control::block_processor: Validating block with slot: 6996 +2024-09-30T08:46:07.332690Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x869353e5cd500a6d701fce619c80be4566113348ce17ef09f7989e86ad827fdd, slot: 6996 +2024-09-30T08:46:07.339565Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6996 +2024-09-30T08:46:07.339586Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6996 +2024-09-30T08:46:07.355513Z INFO fork_choice_control::block_processor: Validating block with slot: 6997 +2024-09-30T08:46:07.356506Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x051dbec2e34ff9055f8b5e9cb0ab6fb8417b689d4a78501948ea229df6019731, slot: 6997 +2024-09-30T08:46:07.362396Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6997 +2024-09-30T08:46:07.362413Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6997 +2024-09-30T08:46:07.378114Z INFO fork_choice_control::block_processor: Validating block with slot: 6998 +2024-09-30T08:46:07.379476Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb5917b142d44fb52be39ed290fe46a956fcd0bed6cd46d990320a75f4cf2d57e, slot: 6998 +2024-09-30T08:46:07.386774Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6998 +2024-09-30T08:46:07.386794Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6998 +2024-09-30T08:46:07.403132Z INFO fork_choice_control::block_processor: Validating block with slot: 6999 +2024-09-30T08:46:07.404818Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x73124f0c3e97f638b67f69f064986b6d252c27eed5eea455d633a29ebeaaa631, slot: 6999 +2024-09-30T08:46:07.412313Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 6999 +2024-09-30T08:46:07.412332Z INFO fork_choice_control::block_processor: Block validation completed for slot: 6999 +2024-09-30T08:46:07.480016Z INFO fork_choice_control::block_processor: Validating block with slot: 7000 +2024-09-30T08:46:07.480064Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 217, root: 0x4d3a9174ea050906e4413c935362a0b2855ed12bf980017d75832490660ae546, head slot: 6999, head root: 0x73124f0c3e97f638b67f69f064986b6d252c27eed5eea455d633a29ebeaaa631) +2024-09-30T08:46:07.481014Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeb1c4d5ea9093be4c193bae0d997c78ca0234d7b114120871eeda2b4b6a5788d, slot: 7000 +2024-09-30T08:46:07.487682Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7000 +2024-09-30T08:46:07.487706Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7000 +2024-09-30T08:46:07.504092Z INFO fork_choice_control::block_processor: Validating block with slot: 7001 +2024-09-30T08:46:07.505792Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc94b0ca2fa1ad3d5faa8bc7c9e62c4f0373b0e4ce9e9e68b3ca9d8bd80e9fa7d, slot: 7001 +2024-09-30T08:46:07.513902Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7001 +2024-09-30T08:46:07.513919Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7001 +2024-09-30T08:46:07.530894Z INFO fork_choice_control::block_processor: Validating block with slot: 7002 +2024-09-30T08:46:07.531880Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xad884b6e72fe0a3b44b58274f7bba5534258cf00544104cd76a8f900065682ae, slot: 7002 +2024-09-30T08:46:07.538617Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7002 +2024-09-30T08:46:07.538638Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7002 +2024-09-30T08:46:07.558471Z INFO fork_choice_control::block_processor: Validating block with slot: 7003 +2024-09-30T08:46:07.560063Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa7577f97e64c0a0f0251e9f45ffb2d4a95e4439ce30372407e32e0b54704e722, slot: 7003 +2024-09-30T08:46:07.566671Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7003 +2024-09-30T08:46:07.566687Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7003 +2024-09-30T08:46:07.585417Z INFO fork_choice_control::block_processor: Validating block with slot: 7004 +2024-09-30T08:46:07.586627Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x635c765325b1175a2c4b74cf1f4627b5b1f5d30b0249b048a4105f8b21735c6d, slot: 7004 +2024-09-30T08:46:07.594736Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7004 +2024-09-30T08:46:07.594760Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7004 +2024-09-30T08:46:07.613616Z INFO fork_choice_control::block_processor: Validating block with slot: 7005 +2024-09-30T08:46:07.615318Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xed5d11802a4170b56e74310f094989596fb5cb42bfd7b0dcff1cdc20b41a737c, slot: 7005 +2024-09-30T08:46:07.615928Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 6944 +2024-09-30T08:46:07.624175Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7005 +2024-09-30T08:46:07.624196Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7005 +2024-09-30T08:46:07.643672Z INFO fork_choice_control::block_processor: Validating block with slot: 7006 +2024-09-30T08:46:07.646507Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6182bae7fff32e79be446fed15f624db674c8db5a08e54ad4cee511019f79eec, slot: 7006 +2024-09-30T08:46:07.658284Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7006 +2024-09-30T08:46:07.658304Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7006 +2024-09-30T08:46:07.678083Z INFO fork_choice_control::block_processor: Validating block with slot: 7007 +2024-09-30T08:46:07.679145Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2f23fa9d4c5dd3798ea571713deba9503d80f8c03c2f2ff539ca6e68e0ec2045, slot: 7007 +2024-09-30T08:46:07.685450Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7007 +2024-09-30T08:46:07.685464Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7007 +2024-09-30T08:46:07.705608Z INFO fork_choice_control::block_processor: Validating block with slot: 7008 +2024-09-30T08:46:07.708191Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3b7979b3a43d778b220cf15d4df2b51a8a28c3ac09022355ce91cc00f1e39aa7, slot: 7008 +2024-09-30T08:46:07.823216Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7008 +2024-09-30T08:46:07.823237Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7008 +2024-09-30T08:46:07.834916Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7008) +2024-09-30T08:46:07.835119Z INFO fork_choice_control::block_processor: Validating block with slot: 7009 +2024-09-30T08:46:07.837381Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6366f3aa4f1c6c828f1fa75975d7e602d3e65792a61837a5259691c97620dbe6, slot: 7009 +2024-09-30T08:46:07.918678Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7009 +2024-09-30T08:46:07.918701Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7009 +2024-09-30T08:46:07.931890Z INFO fork_choice_control::block_processor: Validating block with slot: 7010 +2024-09-30T08:46:07.933849Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5f0aa7954eb12bfbb5402608d25f1b973e7d5fe7f4f031b1bf4c5f8f697d855d, slot: 7010 +2024-09-30T08:46:07.944044Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7010 +2024-09-30T08:46:07.944063Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7010 +2024-09-30T08:46:07.957387Z INFO fork_choice_control::block_processor: Validating block with slot: 7011 +2024-09-30T08:46:07.958748Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x630ca3547059934a4e254a273116703d262ffca149f04abe6b40a059f773d043, slot: 7011 +2024-09-30T08:46:07.965714Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7011 +2024-09-30T08:46:07.965725Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7011 +2024-09-30T08:46:07.979321Z INFO fork_choice_control::block_processor: Validating block with slot: 7012 +2024-09-30T08:46:07.980672Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbc8485837e305b1b50324c1b928a6c8bfcf02008fd3362d8bfa20204ea354288, slot: 7012 +2024-09-30T08:46:07.987852Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7012 +2024-09-30T08:46:07.987869Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7012 +2024-09-30T08:46:08.000825Z INFO fork_choice_control::block_processor: Validating block with slot: 7013 +2024-09-30T08:46:08.002254Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa91aef66da6655ea8bbb8a9476131d572f98ab5d41289505c9217a0814c62540, slot: 7013 +2024-09-30T08:46:08.010879Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7013 +2024-09-30T08:46:08.010901Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7013 +2024-09-30T08:46:08.024207Z INFO fork_choice_control::block_processor: Validating block with slot: 7014 +2024-09-30T08:46:08.027073Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xac548d9c2405057de0f1e810aa043cb036bb80a0f08e23b3226e1f4ae65ef777, slot: 7014 +2024-09-30T08:46:08.039056Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7014 +2024-09-30T08:46:08.039078Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7014 +2024-09-30T08:46:08.053103Z INFO fork_choice_control::block_processor: Validating block with slot: 7015 +2024-09-30T08:46:08.054154Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x868fee67b32be95a12826f9abb07ba801b6a988da3e801f5b2a2074f62cca412, slot: 7015 +2024-09-30T08:46:08.061326Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7015 +2024-09-30T08:46:08.061344Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7015 +2024-09-30T08:46:08.075970Z INFO fork_choice_control::block_processor: Validating block with slot: 7016 +2024-09-30T08:46:08.077178Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x374e40c72ee08d3261c7b2f705a8b0e14f4503b99f3333b3ab6ddd0e7832df35, slot: 7016 +2024-09-30T08:46:08.083590Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7016 +2024-09-30T08:46:08.083604Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7016 +2024-09-30T08:46:08.097462Z INFO fork_choice_control::block_processor: Validating block with slot: 7017 +2024-09-30T08:46:08.099293Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xabb2a5dde9c7580a263bcfcf5412697735246e8e67440089388ec4598671541c, slot: 7017 +2024-09-30T08:46:08.107069Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7017 +2024-09-30T08:46:08.107089Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7017 +2024-09-30T08:46:08.121214Z INFO fork_choice_control::block_processor: Validating block with slot: 7018 +2024-09-30T08:46:08.122355Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe54f00c16540a546a034be6ca0c157763bc902b4b57ed6d3e1d1b939642c98e5, slot: 7018 +2024-09-30T08:46:08.128747Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7018 +2024-09-30T08:46:08.128764Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7018 +2024-09-30T08:46:08.142466Z INFO fork_choice_control::block_processor: Validating block with slot: 7019 +2024-09-30T08:46:08.143425Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x693a15f09e305966380b9759a69c905feb606bf5f5ee87d74975391ec390c267, slot: 7019 +2024-09-30T08:46:08.149124Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7019 +2024-09-30T08:46:08.149139Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7019 +2024-09-30T08:46:08.163142Z INFO fork_choice_control::block_processor: Validating block with slot: 7020 +2024-09-30T08:46:08.164229Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3eca1e6696ef96ff3f3fb4fce1a06e325469ef9b7fe6c9f23bb067518e987af9, slot: 7020 +2024-09-30T08:46:08.170055Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7020 +2024-09-30T08:46:08.170068Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7020 +2024-09-30T08:46:08.184095Z INFO fork_choice_control::block_processor: Validating block with slot: 7022 +2024-09-30T08:46:08.185746Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb4639dff5aba407aa499da5dbff1f0a4c29f218c4f72df5715fc491720e47ce1, slot: 7022 +2024-09-30T08:46:08.200194Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7022 +2024-09-30T08:46:08.200214Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7022 +2024-09-30T08:46:08.215502Z INFO fork_choice_control::block_processor: Validating block with slot: 7023 +2024-09-30T08:46:08.220490Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd01243cba51a1e2e6c834c6852b85d3315f8016705a198fe4bcd805b348cc020, slot: 7023 +2024-09-30T08:46:08.239989Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7023 +2024-09-30T08:46:08.240022Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7023 +2024-09-30T08:46:08.256536Z INFO fork_choice_control::block_processor: Validating block with slot: 7024 +2024-09-30T08:46:08.258098Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x015e2a443e65b20e3deefdcddc2b29d2e39504ba2449715e09aa7eaac42e3994, slot: 7024 +2024-09-30T08:46:08.265410Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7024 +2024-09-30T08:46:08.265433Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7024 +2024-09-30T08:46:08.283107Z INFO fork_choice_control::block_processor: Validating block with slot: 7025 +2024-09-30T08:46:08.284794Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa292c9533a7534a899827461bb3b78b5c0e29df0d2688809bfb3fbb85bd7a218, slot: 7025 +2024-09-30T08:46:08.292628Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7025 +2024-09-30T08:46:08.292648Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7025 +2024-09-30T08:46:08.308928Z INFO fork_choice_control::block_processor: Validating block with slot: 7026 +2024-09-30T08:46:08.310076Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf40c56bcd8b58838352b4c625635fc085fbf510f2d71290366270e5f49b423df, slot: 7026 +2024-09-30T08:46:08.316203Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7026 +2024-09-30T08:46:08.316218Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7026 +2024-09-30T08:46:08.332806Z INFO fork_choice_control::block_processor: Validating block with slot: 7027 +2024-09-30T08:46:08.333867Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0bba3092eff928f461b71eb052230534e301ca357362b5f0e7d5304b93f92ede, slot: 7027 +2024-09-30T08:46:08.339671Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7027 +2024-09-30T08:46:08.339696Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7027 +2024-09-30T08:46:08.355872Z INFO fork_choice_control::block_processor: Validating block with slot: 7028 +2024-09-30T08:46:08.357345Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xab3d1d4721b98620f67508a5d9085af96fdcc58acbb436f78db66ac1b210bdf4, slot: 7028 +2024-09-30T08:46:08.364430Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7028 +2024-09-30T08:46:08.364447Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7028 +2024-09-30T08:46:08.381669Z INFO fork_choice_control::block_processor: Validating block with slot: 7029 +2024-09-30T08:46:08.382790Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x319394d0407924cc4c7e5bf9c21e65c1bb8f4940ece839872b8df02083638405, slot: 7029 +2024-09-30T08:46:08.389716Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7029 +2024-09-30T08:46:08.389734Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7029 +2024-09-30T08:46:08.407985Z INFO fork_choice_control::block_processor: Validating block with slot: 7030 +2024-09-30T08:46:08.409045Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x68bf1fc00dc473df1dda12ef9a73cad6413790363db0688e60feee9ef439f7e4, slot: 7030 +2024-09-30T08:46:08.415457Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7030 +2024-09-30T08:46:08.415471Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7030 +2024-09-30T08:46:08.432802Z INFO fork_choice_control::block_processor: Validating block with slot: 7031 +2024-09-30T08:46:08.434039Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x425683cf57ff1423c60400aaac1dfff799f68bf50b32121791159401b8e4aebb, slot: 7031 +2024-09-30T08:46:08.440615Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7031 +2024-09-30T08:46:08.440637Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7031 +2024-09-30T08:46:08.463523Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 218, root: 0x42e87c1fa960797d91c7d39f6b26add07f60267c6de910791dd402f3233e5a3d, head slot: 7031, head root: 0x425683cf57ff1423c60400aaac1dfff799f68bf50b32121791159401b8e4aebb) +2024-09-30T08:46:08.463536Z INFO fork_choice_control::block_processor: Validating block with slot: 7033 +2024-09-30T08:46:08.467885Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x91f6d80ed592fc91cb915a38b07c7e89c50924635aec1fdd398e50b7fb9300e6, slot: 7033 +2024-09-30T08:46:08.485369Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7033 +2024-09-30T08:46:08.485390Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7033 +2024-09-30T08:46:08.504702Z INFO fork_choice_control::block_processor: Validating block with slot: 7034 +2024-09-30T08:46:08.505793Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x27c8205f381ee2411613203ca199145bc7f04a0fdecf465e0abe5d57dce36979, slot: 7034 +2024-09-30T08:46:08.511783Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7034 +2024-09-30T08:46:08.511796Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7034 +2024-09-30T08:46:08.530402Z INFO fork_choice_control::block_processor: Validating block with slot: 7035 +2024-09-30T08:46:08.532327Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8587a708dd2c6f544e4d86cf326068fc98106efb1495c6119562c661474c358c, slot: 7035 +2024-09-30T08:46:08.540414Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7035 +2024-09-30T08:46:08.540434Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7035 +2024-09-30T08:46:08.559918Z INFO fork_choice_control::block_processor: Validating block with slot: 7036 +2024-09-30T08:46:08.561274Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc425ec631a3927e040809819496cf4695ba76fb901d92fd543ec4b201c60ac20, slot: 7036 +2024-09-30T08:46:08.567607Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7036 +2024-09-30T08:46:08.567622Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7036 +2024-09-30T08:46:08.586981Z INFO fork_choice_control::block_processor: Validating block with slot: 7037 +2024-09-30T08:46:08.589267Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa641f1b5412ad1fd9346f1b987ad0d00eeb653ff1e8e68140581d755d59e18b9, slot: 7037 +2024-09-30T08:46:08.599262Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7037 +2024-09-30T08:46:08.599285Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7037 +2024-09-30T08:46:08.618261Z INFO fork_choice_control::block_processor: Validating block with slot: 7038 +2024-09-30T08:46:08.619522Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xef5926185a07d2f31d41a28c3146d39c919bb6ba3cb534440a13cd768ff3a456, slot: 7038 +2024-09-30T08:46:08.626812Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7038 +2024-09-30T08:46:08.626832Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7038 +2024-09-30T08:46:08.646955Z INFO fork_choice_control::block_processor: Validating block with slot: 7039 +2024-09-30T08:46:08.648160Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3a20ae4feea3f105d5e18168cf7bcc02d4af55aadb9d7846fabd395d5361b9df, slot: 7039 +2024-09-30T08:46:08.655148Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7039 +2024-09-30T08:46:08.655166Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7039 +2024-09-30T08:46:08.676249Z INFO fork_choice_control::block_processor: Validating block with slot: 7040 +2024-09-30T08:46:08.677461Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4e80b9acd5c689afe3b65679268d27fcd13f12574d6582e3f55ea6585bbfe62e, slot: 7040 +2024-09-30T08:46:08.785565Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7040 +2024-09-30T08:46:08.785585Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7040 +2024-09-30T08:46:08.797468Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7040) +2024-09-30T08:46:08.797568Z INFO fork_choice_control::block_processor: Validating block with slot: 7041 +2024-09-30T08:46:08.799077Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4c0c4cc4d7023b3de2c8085eb3c73c1d322bb2ab1829b2c894a276dfa7601e22, slot: 7041 +2024-09-30T08:46:08.883198Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7041 +2024-09-30T08:46:08.883222Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7041 +2024-09-30T08:46:08.896582Z INFO fork_choice_control::block_processor: Validating block with slot: 7042 +2024-09-30T08:46:08.898368Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd7fc02c55dbebea2ab6b5249dc9f9755a565b1dab27dbe516fbeb65409249acf, slot: 7042 +2024-09-30T08:46:08.906826Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7042 +2024-09-30T08:46:08.906846Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7042 +2024-09-30T08:46:08.919515Z INFO fork_choice_control::block_processor: Validating block with slot: 7043 +2024-09-30T08:46:08.921327Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x77b0ffd4476376a1656b3086aa24c87dd8ed90942f97e4068469b1a743f97220, slot: 7043 +2024-09-30T08:46:08.931569Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7043 +2024-09-30T08:46:08.931586Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7043 +2024-09-30T08:46:08.945439Z INFO fork_choice_control::block_processor: Validating block with slot: 7044 +2024-09-30T08:46:08.946580Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x55666d89935308b83d70c7097df122571e26ca2bf8ebb49f25c7668ddecc567c, slot: 7044 +2024-09-30T08:46:08.952957Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7044 +2024-09-30T08:46:08.952969Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7044 +2024-09-30T08:46:08.966657Z INFO fork_choice_control::block_processor: Validating block with slot: 7045 +2024-09-30T08:46:08.967858Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3b70733776d0ec834262a1f7429ca34c5db0f25a69d52fe89ed99ae3cfd2a4de, slot: 7045 +2024-09-30T08:46:08.976424Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7045 +2024-09-30T08:46:08.976447Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7045 +2024-09-30T08:46:08.990412Z INFO fork_choice_control::block_processor: Validating block with slot: 7046 +2024-09-30T08:46:08.991649Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0e56906c5dbf6a825a5813a0bdad196992cf499a6420799ad42d47de78eb3023, slot: 7046 +2024-09-30T08:46:08.998367Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7046 +2024-09-30T08:46:08.998385Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7046 +2024-09-30T08:46:09.012955Z INFO fork_choice_control::block_processor: Validating block with slot: 7047 +2024-09-30T08:46:09.014407Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x894f4dea31f95f7e83fa15cf2b43d2444871f67fedef755cefec500159a2585b, slot: 7047 +2024-09-30T08:46:09.021911Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7047 +2024-09-30T08:46:09.021938Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7047 +2024-09-30T08:46:09.036291Z INFO fork_choice_control::block_processor: Validating block with slot: 7048 +2024-09-30T08:46:09.037573Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbfa77ead091f342e30542b05ec0c50db10c0e2e8967e58da966317011212f00a, slot: 7048 +2024-09-30T08:46:09.059125Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7048 +2024-09-30T08:46:09.059182Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7048 +2024-09-30T08:46:09.077256Z INFO fork_choice_control::block_processor: Validating block with slot: 7049 +2024-09-30T08:46:09.080990Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x73029b39f8570878693699b186a99e7ae4c697416447ea6451172c961c4e4fea, slot: 7049 +2024-09-30T08:46:09.089399Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7049 +2024-09-30T08:46:09.089425Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7049 +2024-09-30T08:46:09.104288Z INFO fork_choice_control::block_processor: Validating block with slot: 7050 +2024-09-30T08:46:09.106649Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x389e46b561adc63cdac2dd261f94c84f607f28d35b821702a536d6e22271b458, slot: 7050 +2024-09-30T08:46:09.115171Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7050 +2024-09-30T08:46:09.115184Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7050 +2024-09-30T08:46:09.130576Z INFO fork_choice_control::block_processor: Validating block with slot: 7051 +2024-09-30T08:46:09.131791Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x52da8637dbfe4548923ed753b70d3ba5ed0e48d16c5aef4430676c86ed6d369b, slot: 7051 +2024-09-30T08:46:09.138251Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7051 +2024-09-30T08:46:09.138267Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7051 +2024-09-30T08:46:09.152074Z INFO fork_choice_control::block_processor: Validating block with slot: 7052 +2024-09-30T08:46:09.153276Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7244db5aad351e96d82bcfb448ba293c01d3f97ff5062df63c47cf84410199cc, slot: 7052 +2024-09-30T08:46:09.159669Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7052 +2024-09-30T08:46:09.159686Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7052 +2024-09-30T08:46:09.173713Z INFO fork_choice_control::block_processor: Validating block with slot: 7053 +2024-09-30T08:46:09.175356Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcb0a30c77ad24530363e788cdda2518d16526d6d6aa1953b7d17d0d456aa1f4d, slot: 7053 +2024-09-30T08:46:09.182732Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7053 +2024-09-30T08:46:09.182747Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7053 +2024-09-30T08:46:09.197627Z INFO fork_choice_control::block_processor: Validating block with slot: 7054 +2024-09-30T08:46:09.199454Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa77e741667864df3c48f0890ae2200f7f3465bad406ac4b16aba99a17ede96ba, slot: 7054 +2024-09-30T08:46:09.207943Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7054 +2024-09-30T08:46:09.207966Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7054 +2024-09-30T08:46:09.222224Z INFO fork_choice_control::block_processor: Validating block with slot: 7055 +2024-09-30T08:46:09.223502Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7f7cb8ba8a178e12b5bf695eff4e4a239241241d66acc4b044bae6ae6c9cc4cf, slot: 7055 +2024-09-30T08:46:09.230312Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7055 +2024-09-30T08:46:09.230328Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7055 +2024-09-30T08:46:09.244905Z INFO fork_choice_control::block_processor: Validating block with slot: 7056 +2024-09-30T08:46:09.246005Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x190fa541d2c06dfece6fffa750c4f3400d0609d39062fafa7582e55b6ca7647d, slot: 7056 +2024-09-30T08:46:09.251968Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7056 +2024-09-30T08:46:09.251980Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7056 +2024-09-30T08:46:09.267023Z INFO fork_choice_control::block_processor: Validating block with slot: 7057 +2024-09-30T08:46:09.269074Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xda1d509287e691d83d51b3a9561a721c5cab097661149b2377b188c260fe2c54, slot: 7057 +2024-09-30T08:46:09.277487Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7057 +2024-09-30T08:46:09.277506Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7057 +2024-09-30T08:46:09.292618Z INFO fork_choice_control::block_processor: Validating block with slot: 7058 +2024-09-30T08:46:09.293588Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x98881b63972c559e828dc3ffd97cfc92b45420ff4adce2f6c7759afb52001b8e, slot: 7058 +2024-09-30T08:46:09.299322Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7058 +2024-09-30T08:46:09.299334Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7058 +2024-09-30T08:46:09.314580Z INFO fork_choice_control::block_processor: Validating block with slot: 7059 +2024-09-30T08:46:09.316488Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5eed3368d19ae85d68ce6c0f74a41b01459ddcf4fdb365927ef448f43c8251c8, slot: 7059 +2024-09-30T08:46:09.324610Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7059 +2024-09-30T08:46:09.324630Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7059 +2024-09-30T08:46:09.340662Z INFO fork_choice_control::block_processor: Validating block with slot: 7060 +2024-09-30T08:46:09.342171Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2b509ad409f92f1465087caaa98b45faa9bfd5ca81e8a9619f48f62e6a702385, slot: 7060 +2024-09-30T08:46:09.349064Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7060 +2024-09-30T08:46:09.349077Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7060 +2024-09-30T08:46:09.365072Z INFO fork_choice_control::block_processor: Validating block with slot: 7061 +2024-09-30T08:46:09.366032Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x26d0e93e722b0bfbc4fff4863cd95bbdeade2b316188aac040d2809d4eb5899a, slot: 7061 +2024-09-30T08:46:09.371790Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7061 +2024-09-30T08:46:09.371813Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7061 +2024-09-30T08:46:09.387652Z INFO fork_choice_control::block_processor: Validating block with slot: 7062 +2024-09-30T08:46:09.390997Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2b11cdc8cec9f7eb839b1d5998a8aaefe78992a7b2df6f7832c95c1839b5fda5, slot: 7062 +2024-09-30T08:46:09.402420Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7062 +2024-09-30T08:46:09.402435Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7062 +2024-09-30T08:46:09.426523Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 219, root: 0x3b7979b3a43d778b220cf15d4df2b51a8a28c3ac09022355ce91cc00f1e39aa7, head slot: 7062, head root: 0x2b11cdc8cec9f7eb839b1d5998a8aaefe78992a7b2df6f7832c95c1839b5fda5) +2024-09-30T08:46:09.426534Z INFO fork_choice_control::block_processor: Validating block with slot: 7063 +2024-09-30T08:46:09.428250Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6a620d90b3de3f2d7175b748e09715289c23f483e7880b19d59d421e881742b6, slot: 7063 +2024-09-30T08:46:09.435920Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7063 +2024-09-30T08:46:09.435937Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7063 +2024-09-30T08:46:09.454193Z INFO fork_choice_control::block_processor: Validating block with slot: 7064 +2024-09-30T08:46:09.455331Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x093fd86eeb260606db5db878267897fadca19dc567f043722a582563b103cec1, slot: 7064 +2024-09-30T08:46:09.462076Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7064 +2024-09-30T08:46:09.462095Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7064 +2024-09-30T08:46:09.479950Z INFO fork_choice_control::block_processor: Validating block with slot: 7065 +2024-09-30T08:46:09.481640Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3cfb25f8dd1083d951b5b420584e8ec5b92e3293669796f8a4e9b2ddee7e9710, slot: 7065 +2024-09-30T08:46:09.489605Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7065 +2024-09-30T08:46:09.489632Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7065 +2024-09-30T08:46:09.509346Z INFO fork_choice_control::block_processor: Validating block with slot: 7066 +2024-09-30T08:46:09.510563Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x928d3bdc16e6afa81f6fe21a8354360aaf95380f9ddd0335a5fd3e448d8992ae, slot: 7066 +2024-09-30T08:46:09.518592Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7066 +2024-09-30T08:46:09.518611Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7066 +2024-09-30T08:46:09.538878Z INFO fork_choice_control::block_processor: Validating block with slot: 7067 +2024-09-30T08:46:09.540092Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbe260f561255724e9d4fb114c5653edbb30100331519ee71206ca5c669063e0c, slot: 7067 +2024-09-30T08:46:09.546679Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7067 +2024-09-30T08:46:09.546691Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7067 +2024-09-30T08:46:09.562938Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 7008 +2024-09-30T08:46:09.566501Z INFO fork_choice_control::block_processor: Validating block with slot: 7068 +2024-09-30T08:46:09.568161Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x11088c6ad8a0d1b8d0e7c33de337885a2813aa6e4bf62f7b0500fcd54f6338cf, slot: 7068 +2024-09-30T08:46:09.577177Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7068 +2024-09-30T08:46:09.577199Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7068 +2024-09-30T08:46:09.597187Z INFO fork_choice_control::block_processor: Validating block with slot: 7069 +2024-09-30T08:46:09.598245Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xea00893e91d4d3687c000cb7340c3ea38e4240401066f9572a82477dcb2ecd1a, slot: 7069 +2024-09-30T08:46:09.604703Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7069 +2024-09-30T08:46:09.604725Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7069 +2024-09-30T08:46:09.624110Z INFO fork_choice_control::block_processor: Validating block with slot: 7070 +2024-09-30T08:46:09.625171Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0ce9f33d3734cae8d90192713df2a80d24732472b6bfca637ce4841b8bf7c9e9, slot: 7070 +2024-09-30T08:46:09.631656Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7070 +2024-09-30T08:46:09.631670Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7070 +2024-09-30T08:46:09.651599Z INFO fork_choice_control::block_processor: Validating block with slot: 7071 +2024-09-30T08:46:09.652656Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8ec84e3d42aada1101a055cea4859fa55d48bbe5e99abc7a1b72734b4848f234, slot: 7071 +2024-09-30T08:46:09.661425Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7071 +2024-09-30T08:46:09.661446Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7071 +2024-09-30T08:46:09.682288Z INFO fork_choice_control::block_processor: Validating block with slot: 7072 +2024-09-30T08:46:09.683804Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x765857c08b2af5671006bdb31bdca7687e22a0840f93f07201b5f6c09685e49c, slot: 7072 +2024-09-30T08:46:09.795103Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7072 +2024-09-30T08:46:09.795125Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7072 +2024-09-30T08:46:09.805645Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7072) +2024-09-30T08:46:09.805758Z INFO fork_choice_control::block_processor: Validating block with slot: 7073 +2024-09-30T08:46:09.808494Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x97a47876d4adcb395af5ba30d300602b96eb81198fe7cfac673434ac195b1d7d, slot: 7073 +2024-09-30T08:46:09.888154Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7073 +2024-09-30T08:46:09.888173Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7073 +2024-09-30T08:46:09.898979Z INFO fork_choice_control::block_processor: Validating block with slot: 7075 +2024-09-30T08:46:09.901703Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc825ed135e805fcf792b57505fa2edadd196fc49d88facb3a9f65daf91be6e0c, slot: 7075 +2024-09-30T08:46:09.913581Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7075 +2024-09-30T08:46:09.913599Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7075 +2024-09-30T08:46:09.925125Z INFO fork_choice_control::block_processor: Validating block with slot: 7076 +2024-09-30T08:46:09.926234Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x24fe6a3df264f961b2e20635cfc3f07b843e56a5dcbbb22c87c0431880516445, slot: 7076 +2024-09-30T08:46:09.932762Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7076 +2024-09-30T08:46:09.932775Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7076 +2024-09-30T08:46:09.944586Z INFO fork_choice_control::block_processor: Validating block with slot: 7077 +2024-09-30T08:46:09.945565Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1912d9b7cf79e589e816b1a49192ebc682283b131f3bd3675cd10496a76ad875, slot: 7077 +2024-09-30T08:46:09.951951Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7077 +2024-09-30T08:46:09.951962Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7077 +2024-09-30T08:46:09.964091Z INFO fork_choice_control::block_processor: Validating block with slot: 7078 +2024-09-30T08:46:09.965193Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x16a3e0d81069fa7d1dfab450f08f8abca7c341d08bf69527e55dc6ffea1070b0, slot: 7078 +2024-09-30T08:46:09.973131Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7078 +2024-09-30T08:46:09.973155Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7078 +2024-09-30T08:46:09.985724Z INFO fork_choice_control::block_processor: Validating block with slot: 7079 +2024-09-30T08:46:09.986843Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xce585aa0d7d9cddb7e39faa652629badd74e39f3f11d67dbb8fe36cd8fa4dbf8, slot: 7079 +2024-09-30T08:46:09.994068Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7079 +2024-09-30T08:46:09.994091Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7079 +2024-09-30T08:46:10.007113Z INFO fork_choice_control::block_processor: Validating block with slot: 7080 +2024-09-30T08:46:10.008323Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe18f47c768f02d9f755e931727802c9e6dd6a9619e6e0ddbd01486adb3ce6c3d, slot: 7080 +2024-09-30T08:46:10.014803Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7080 +2024-09-30T08:46:10.014820Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7080 +2024-09-30T08:46:10.028513Z INFO fork_choice_control::block_processor: Validating block with slot: 7081 +2024-09-30T08:46:10.030183Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x145633e66fd3431560a6de6658edeed7fe9411bbf6724bb6755fd4741406d7d3, slot: 7081 +2024-09-30T08:46:10.038272Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7081 +2024-09-30T08:46:10.038292Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7081 +2024-09-30T08:46:10.051319Z INFO fork_choice_control::block_processor: Validating block with slot: 7082 +2024-09-30T08:46:10.053134Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x541ffdcbaefce5f65ed0abc3ff62ca6013ad7486fcb80f70f1172d1886f31f17, slot: 7082 +2024-09-30T08:46:10.060794Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7082 +2024-09-30T08:46:10.060816Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7082 +2024-09-30T08:46:10.074536Z INFO fork_choice_control::block_processor: Validating block with slot: 7083 +2024-09-30T08:46:10.076380Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x396e8feaa6bf49a285f95538b2f36dfbc7c9e6f53f54a40dd80aab8cb8196de5, slot: 7083 +2024-09-30T08:46:10.084407Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7083 +2024-09-30T08:46:10.084429Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7083 +2024-09-30T08:46:10.097852Z INFO fork_choice_control::block_processor: Validating block with slot: 7084 +2024-09-30T08:46:10.099110Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc2ff9b70a164a63a1e06af863ba0163721cc2c153b952881da112da969968b6b, slot: 7084 +2024-09-30T08:46:10.105361Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7084 +2024-09-30T08:46:10.105384Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7084 +2024-09-30T08:46:10.118234Z INFO fork_choice_control::block_processor: Validating block with slot: 7085 +2024-09-30T08:46:10.119330Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd74edff1ce225d7420f8bcb8c242cea4b59142715d9e33d3647669de9aed92e1, slot: 7085 +2024-09-30T08:46:10.125741Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7085 +2024-09-30T08:46:10.125760Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7085 +2024-09-30T08:46:10.139098Z INFO fork_choice_control::block_processor: Validating block with slot: 7086 +2024-09-30T08:46:10.141028Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x65c890d70e8e9dd951b8809c30cc190c2848ffcf0ec275a6bdb1ef6cc9f83aad, slot: 7086 +2024-09-30T08:46:10.149267Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7086 +2024-09-30T08:46:10.149281Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7086 +2024-09-30T08:46:10.162930Z INFO fork_choice_control::block_processor: Validating block with slot: 7087 +2024-09-30T08:46:10.164163Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x880565c72bb0f2f1724f0ae53013963972e26dd92a372ce6c23e874bfb9a4731, slot: 7087 +2024-09-30T08:46:10.170461Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7087 +2024-09-30T08:46:10.170475Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7087 +2024-09-30T08:46:10.178701Z INFO fork_choice_control::block_processor: Validating block with slot: 7657 +2024-09-30T08:46:10.178727Z INFO fork_choice_control::block_processor: Validating block with slot: 7658 +2024-09-30T08:46:10.184888Z INFO fork_choice_control::block_processor: Validating block with slot: 7088 +2024-09-30T08:46:10.186142Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x907cc48cd453d3f1186cc527501e15d7e825b324afb80f1ab9675754343edf39, slot: 7088 +2024-09-30T08:46:10.186194Z INFO fork_choice_control::block_processor: Validating block with slot: 7659 +2024-09-30T08:46:10.186228Z INFO fork_choice_control::block_processor: Validating block with slot: 7660 +2024-09-30T08:46:10.186249Z INFO fork_choice_control::block_processor: Validating block with slot: 7662 +2024-09-30T08:46:10.186259Z INFO fork_choice_control::block_processor: Validating block with slot: 7661 +2024-09-30T08:46:10.186379Z INFO fork_choice_control::block_processor: Validating block with slot: 7663 +2024-09-30T08:46:10.193043Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7088 +2024-09-30T08:46:10.193064Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7088 +2024-09-30T08:46:10.208718Z INFO fork_choice_control::block_processor: Validating block with slot: 7089 +2024-09-30T08:46:10.211455Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2d53cc735704261677445469b131d504b1b84b060da4d873a6aae1e342b2e99b, slot: 7089 +2024-09-30T08:46:10.211949Z INFO fork_choice_control::block_processor: Validating block with slot: 7664 +2024-09-30T08:46:10.221933Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7089 +2024-09-30T08:46:10.221956Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7089 +2024-09-30T08:46:10.236237Z INFO fork_choice_control::block_processor: Validating block with slot: 7090 +2024-09-30T08:46:10.237909Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x320de227f7df71792c4473a8439593b9de3917b752b3947bf524ef3d30db27d7, slot: 7090 +2024-09-30T08:46:10.246018Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7090 +2024-09-30T08:46:10.246038Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7090 +2024-09-30T08:46:10.261054Z INFO fork_choice_control::block_processor: Validating block with slot: 7091 +2024-09-30T08:46:10.262020Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb12fa4162af4758514820253bb500dc05e6997439980c36b084dab7014e0229e, slot: 7091 +2024-09-30T08:46:10.267697Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7091 +2024-09-30T08:46:10.267709Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7091 +2024-09-30T08:46:10.282790Z INFO fork_choice_control::block_processor: Validating block with slot: 7092 +2024-09-30T08:46:10.284055Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xab540d6513fd3026c546fbe1b2ba52a3e478b6f05e69dd27b2ec59db3965c8e9, slot: 7092 +2024-09-30T08:46:10.292019Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7092 +2024-09-30T08:46:10.292040Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7092 +2024-09-30T08:46:10.308602Z INFO fork_choice_control::block_processor: Validating block with slot: 7093 +2024-09-30T08:46:10.310118Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe038d9dbda16c1863ae0ce422bb1d0f04970dcd137f0c99ffaec52ef0c9e21a1, slot: 7093 +2024-09-30T08:46:10.317606Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7093 +2024-09-30T08:46:10.317619Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7093 +2024-09-30T08:46:10.334160Z INFO fork_choice_control::block_processor: Validating block with slot: 7094 +2024-09-30T08:46:10.335195Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8311019ee693a5fa5f71d5f7e79c65a4520c5666514c06f67a0d081d61a88e6d, slot: 7094 +2024-09-30T08:46:10.335774Z INFO fork_choice_control::block_processor: Validating block with slot: 7665 +2024-09-30T08:46:10.343418Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7094 +2024-09-30T08:46:10.343437Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7094 +2024-09-30T08:46:10.360793Z INFO fork_choice_control::block_processor: Validating block with slot: 7095 +2024-09-30T08:46:10.361838Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4d27a175b86e420a160e6915b3180e406c347596e7cd4c93b809ffc96965301d, slot: 7095 +2024-09-30T08:46:10.362595Z INFO fork_choice_control::block_processor: Validating block with slot: 7666 +2024-09-30T08:46:10.362654Z INFO fork_choice_control::block_processor: Validating block with slot: 7667 +2024-09-30T08:46:10.362693Z INFO fork_choice_control::block_processor: Validating block with slot: 7669 +2024-09-30T08:46:10.362708Z INFO fork_choice_control::block_processor: Validating block with slot: 7672 +2024-09-30T08:46:10.362757Z INFO fork_choice_control::block_processor: Validating block with slot: 7668 +2024-09-30T08:46:10.362785Z INFO fork_choice_control::block_processor: Validating block with slot: 7671 +2024-09-30T08:46:10.362917Z INFO fork_choice_control::block_processor: Validating block with slot: 7670 +2024-09-30T08:46:10.363714Z INFO fork_choice_control::block_processor: Validating block with slot: 7673 +2024-09-30T08:46:10.363761Z INFO fork_choice_control::block_processor: Validating block with slot: 7674 +2024-09-30T08:46:10.364238Z INFO fork_choice_control::block_processor: Validating block with slot: 7675 +2024-09-30T08:46:10.364536Z INFO fork_choice_control::block_processor: Validating block with slot: 7676 +2024-09-30T08:46:10.365024Z INFO fork_choice_control::block_processor: Validating block with slot: 7677 +2024-09-30T08:46:10.365406Z INFO fork_choice_control::block_processor: Validating block with slot: 7678 +2024-09-30T08:46:10.365799Z INFO fork_choice_control::block_processor: Validating block with slot: 7679 +2024-09-30T08:46:10.366083Z INFO fork_choice_control::block_processor: Validating block with slot: 7680 +2024-09-30T08:46:10.371517Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7095 +2024-09-30T08:46:10.371531Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7095 +2024-09-30T08:46:10.393999Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 220, root: 0x4e80b9acd5c689afe3b65679268d27fcd13f12574d6582e3f55ea6585bbfe62e, head slot: 7095, head root: 0x4d27a175b86e420a160e6915b3180e406c347596e7cd4c93b809ffc96965301d) +2024-09-30T08:46:10.394016Z INFO fork_choice_control::block_processor: Validating block with slot: 7096 +2024-09-30T08:46:10.395290Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x13a7f1d8dbbb746ae4bc6f44015abef4cfb890d7a82909324b74d91c7c815caa, slot: 7096 +2024-09-30T08:46:10.402578Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7096 +2024-09-30T08:46:10.402600Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7096 +2024-09-30T08:46:10.420199Z INFO fork_choice_control::block_processor: Validating block with slot: 7097 +2024-09-30T08:46:10.421561Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6063847a2356021f62a40dc419961ae6dfb9f735d5636433b09270ae0e9cfa8a, slot: 7097 +2024-09-30T08:46:10.428929Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7097 +2024-09-30T08:46:10.428947Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7097 +2024-09-30T08:46:10.447742Z INFO fork_choice_control::block_processor: Validating block with slot: 7098 +2024-09-30T08:46:10.450868Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xca399bad692acf9525cb5171a28863d5da1bd808f44ee7051646bfd657695f1b, slot: 7098 +2024-09-30T08:46:10.462440Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7098 +2024-09-30T08:46:10.462463Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7098 +2024-09-30T08:46:10.481028Z INFO fork_choice_control::block_processor: Validating block with slot: 7099 +2024-09-30T08:46:10.482928Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x835139c7fd008c074d4a48881740c076dc58ff5362aa25d9db9a2673f9e4d3e9, slot: 7099 +2024-09-30T08:46:10.493066Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7099 +2024-09-30T08:46:10.493086Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7099 +2024-09-30T08:46:10.502835Z INFO fork_choice_control::block_processor: Validating block with slot: 7681 +2024-09-30T08:46:10.512918Z INFO fork_choice_control::block_processor: Validating block with slot: 7100 +2024-09-30T08:46:10.515464Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x10db357f4a63a2db218d47b1bca5fd8f48f5d9c16a32908d997ca5807df9a668, slot: 7100 +2024-09-30T08:46:10.525709Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7100 +2024-09-30T08:46:10.525765Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7100 +2024-09-30T08:46:10.539602Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 7040 +2024-09-30T08:46:10.545645Z INFO fork_choice_control::block_processor: Validating block with slot: 7101 +2024-09-30T08:46:10.548152Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x59008f427822cbdf2b38d4af754414dc94a2537a16c2e2b34c7ce94912bc7e20, slot: 7101 +2024-09-30T08:46:10.558020Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7101 +2024-09-30T08:46:10.558069Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7101 +2024-09-30T08:46:10.567624Z INFO fork_choice_control::block_processor: Validating block with slot: 7683 +2024-09-30T08:46:10.567640Z INFO fork_choice_control::block_processor: Validating block with slot: 7684 +2024-09-30T08:46:10.567657Z INFO fork_choice_control::block_processor: Validating block with slot: 7687 +2024-09-30T08:46:10.567664Z INFO fork_choice_control::block_processor: Validating block with slot: 7682 +2024-09-30T08:46:10.567663Z INFO fork_choice_control::block_processor: Validating block with slot: 7688 +2024-09-30T08:46:10.567798Z INFO fork_choice_control::block_processor: Validating block with slot: 7685 +2024-09-30T08:46:10.569085Z INFO fork_choice_control::block_processor: Validating block with slot: 7689 +2024-09-30T08:46:10.569082Z INFO fork_choice_control::block_processor: Validating block with slot: 7686 +2024-09-30T08:46:10.570642Z INFO fork_choice_control::block_processor: Validating block with slot: 7690 +2024-09-30T08:46:10.572069Z INFO fork_choice_control::block_processor: Validating block with slot: 7691 +2024-09-30T08:46:10.572111Z INFO fork_choice_control::block_processor: Validating block with slot: 7692 +2024-09-30T08:46:10.572532Z INFO fork_choice_control::block_processor: Validating block with slot: 7693 +2024-09-30T08:46:10.573447Z INFO fork_choice_control::block_processor: Validating block with slot: 7694 +2024-09-30T08:46:10.576280Z INFO fork_choice_control::block_processor: Validating block with slot: 7695 +2024-09-30T08:46:10.576557Z INFO fork_choice_control::block_processor: Validating block with slot: 7696 +2024-09-30T08:46:10.576849Z INFO fork_choice_control::block_processor: Validating block with slot: 7700 +2024-09-30T08:46:10.577351Z INFO fork_choice_control::block_processor: Validating block with slot: 7697 +2024-09-30T08:46:10.578298Z INFO fork_choice_control::block_processor: Validating block with slot: 7702 +2024-09-30T08:46:10.579136Z INFO fork_choice_control::block_processor: Validating block with slot: 7698 +2024-09-30T08:46:10.579786Z INFO fork_choice_control::block_processor: Validating block with slot: 7703 +2024-09-30T08:46:10.580292Z INFO fork_choice_control::block_processor: Validating block with slot: 7704 +2024-09-30T08:46:10.580684Z INFO fork_choice_control::block_processor: Validating block with slot: 7705 +2024-09-30T08:46:10.580715Z INFO fork_choice_control::block_processor: Validating block with slot: 7706 +2024-09-30T08:46:10.582490Z INFO fork_choice_control::block_processor: Validating block with slot: 7707 +2024-09-30T08:46:10.582785Z INFO fork_choice_control::block_processor: Validating block with slot: 7708 +2024-09-30T08:46:10.583726Z INFO fork_choice_control::block_processor: Validating block with slot: 7711 +2024-09-30T08:46:10.583886Z INFO fork_choice_control::block_processor: Validating block with slot: 7712 +2024-09-30T08:46:10.583900Z INFO fork_choice_control::block_processor: Validating block with slot: 7709 +2024-09-30T08:46:10.584376Z INFO fork_choice_control::block_processor: Validating block with slot: 7713 +2024-09-30T08:46:10.584544Z INFO fork_choice_control::block_processor: Validating block with slot: 7714 +2024-09-30T08:46:10.585623Z INFO fork_choice_control::block_processor: Validating block with slot: 7102 +2024-09-30T08:46:10.587077Z INFO fork_choice_control::block_processor: Validating block with slot: 7699 +2024-09-30T08:46:10.588265Z INFO fork_choice_control::block_processor: Validating block with slot: 7710 +2024-09-30T08:46:10.589616Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe9eb652b55131193f8c31c35402c4cb95937f63e46a0799581f4c1bcbd5119e7, slot: 7102 +2024-09-30T08:46:10.602123Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7102 +2024-09-30T08:46:10.602147Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7102 +2024-09-30T08:46:10.622776Z INFO fork_choice_control::block_processor: Validating block with slot: 7103 +2024-09-30T08:46:10.623914Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3140926f8023cf353dfa9a1996d9e54b3a0fafded762e68a397f33b2f10b6972, slot: 7103 +2024-09-30T08:46:10.631526Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7103 +2024-09-30T08:46:10.631737Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7103 +2024-09-30T08:46:10.660952Z INFO fork_choice_control::block_processor: Validating block with slot: 7104 +2024-09-30T08:46:10.662313Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbb8a1a43bc678bffc61a27524d8c56d27e1a6a772107c28b1eef67b0f9585979, slot: 7104 +2024-09-30T08:46:10.688124Z INFO fork_choice_control::block_processor: Validating block with slot: 7715 +2024-09-30T08:46:10.688205Z INFO fork_choice_control::block_processor: Validating block with slot: 7716 +2024-09-30T08:46:10.708529Z INFO fork_choice_control::block_processor: Validating block with slot: 7717 +2024-09-30T08:46:10.708539Z INFO fork_choice_control::block_processor: Validating block with slot: 7595 +2024-09-30T08:46:10.708568Z INFO fork_choice_control::block_processor: Validating block with slot: 7593 +2024-09-30T08:46:10.708590Z INFO fork_choice_control::block_processor: Validating block with slot: 7594 +2024-09-30T08:46:10.709203Z INFO fork_choice_control::block_processor: Validating block with slot: 7596 +2024-09-30T08:46:10.709725Z INFO fork_choice_control::block_processor: Validating block with slot: 7597 +2024-09-30T08:46:10.710301Z INFO fork_choice_control::block_processor: Validating block with slot: 7598 +2024-09-30T08:46:10.711500Z INFO fork_choice_control::block_processor: Validating block with slot: 7599 +2024-09-30T08:46:10.711541Z INFO fork_choice_control::block_processor: Validating block with slot: 7718 +2024-09-30T08:46:10.711763Z INFO fork_choice_control::block_processor: Validating block with slot: 7719 +2024-09-30T08:46:10.712113Z INFO fork_choice_control::block_processor: Validating block with slot: 7720 +2024-09-30T08:46:10.780492Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7104 +2024-09-30T08:46:10.780515Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7104 +2024-09-30T08:46:10.791959Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7104) +2024-09-30T08:46:10.792080Z INFO fork_choice_control::block_processor: Validating block with slot: 7105 +2024-09-30T08:46:10.795275Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x39bcb5ed49b81650ce93a5b6cf5b5016dc5fa885b7af568db88503070f8ad39b, slot: 7105 +2024-09-30T08:46:10.883799Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7105 +2024-09-30T08:46:10.883819Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7105 +2024-09-30T08:46:10.895867Z INFO fork_choice_control::block_processor: Validating block with slot: 7106 +2024-09-30T08:46:10.899759Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe5ee7bb50ab41a11496c5c82384f754e37ce62a7112ba0d91277aaa27d5100ee, slot: 7106 +2024-09-30T08:46:10.916868Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7106 +2024-09-30T08:46:10.916887Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7106 +2024-09-30T08:46:10.929403Z INFO fork_choice_control::block_processor: Validating block with slot: 7107 +2024-09-30T08:46:10.931831Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x80427ee4440ec1b361888227d4cb6c645e79b614d4f31a701681c968a9ebb5d6, slot: 7107 +2024-09-30T08:46:10.942642Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7107 +2024-09-30T08:46:10.942664Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7107 +2024-09-30T08:46:10.955942Z INFO fork_choice_control::block_processor: Validating block with slot: 7108 +2024-09-30T08:46:10.957054Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeffae61314e81991be649d4a9287537d4f6ed286d5127c645b6e7415ff8e4b93, slot: 7108 +2024-09-30T08:46:10.962919Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7108 +2024-09-30T08:46:10.962934Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7108 +2024-09-30T08:46:10.976626Z INFO fork_choice_control::block_processor: Validating block with slot: 7109 +2024-09-30T08:46:10.978125Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc03442e603db299f4314abad8972a3378e108984739f83d19f6d42ae702208df, slot: 7109 +2024-09-30T08:46:10.985554Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7109 +2024-09-30T08:46:10.985566Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7109 +2024-09-30T08:46:10.999767Z INFO fork_choice_control::block_processor: Validating block with slot: 7110 +2024-09-30T08:46:11.001119Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4028e32e61f6fdceb75a3158713ec486b698df91a234ea66bebf30c4959062a6, slot: 7110 +2024-09-30T08:46:11.010119Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7110 +2024-09-30T08:46:11.010138Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7110 +2024-09-30T08:46:11.024726Z INFO fork_choice_control::block_processor: Validating block with slot: 7111 +2024-09-30T08:46:11.026401Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xedcd13d5d6f87781a60a40493cee3dd4de23a97fbaf26c834214e19f66afd6e4, slot: 7111 +2024-09-30T08:46:11.034360Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7111 +2024-09-30T08:46:11.034372Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7111 +2024-09-30T08:46:11.048959Z INFO fork_choice_control::block_processor: Validating block with slot: 7112 +2024-09-30T08:46:11.050018Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc6ea4c83de8bf62d2b86f816d53b85d114906e9120725e79e866580f8d651bde, slot: 7112 +2024-09-30T08:46:11.058616Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7112 +2024-09-30T08:46:11.058638Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7112 +2024-09-30T08:46:11.072962Z INFO fork_choice_control::block_processor: Validating block with slot: 7113 +2024-09-30T08:46:11.073926Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2f1ba47d069d56f43270420088bfe00a1341dc12eb8ea0eee257dab09ed194a2, slot: 7113 +2024-09-30T08:46:11.079315Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7113 +2024-09-30T08:46:11.079327Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7113 +2024-09-30T08:46:11.093564Z INFO fork_choice_control::block_processor: Validating block with slot: 7114 +2024-09-30T08:46:11.095628Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3f7b6cde682f1730e01b0f163e05d1f4294b17d401c2a41504ff461b5321dd2e, slot: 7114 +2024-09-30T08:46:11.104352Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7114 +2024-09-30T08:46:11.104369Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7114 +2024-09-30T08:46:11.111392Z INFO fork_choice_control::block_processor: Validating block with slot: 7600 +2024-09-30T08:46:11.113031Z INFO fork_choice_control::block_processor: Validating block with slot: 7601 +2024-09-30T08:46:11.119135Z INFO fork_choice_control::block_processor: Validating block with slot: 7115 +2024-09-30T08:46:11.120378Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb117477dfe072ed2692509b98d38d730fe6fef8521582b02e92a9a4959a97ff7, slot: 7115 +2024-09-30T08:46:11.129015Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7115 +2024-09-30T08:46:11.129038Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7115 +2024-09-30T08:46:11.145573Z INFO fork_choice_control::block_processor: Validating block with slot: 7116 +2024-09-30T08:46:11.148884Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdab8acc8f1a954cadb28d666c2e81add73a27629cbb80757b4ef51d8899ee990, slot: 7116 +2024-09-30T08:46:11.164143Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7116 +2024-09-30T08:46:11.164164Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7116 +2024-09-30T08:46:11.181626Z INFO fork_choice_control::block_processor: Validating block with slot: 7117 +2024-09-30T08:46:11.182675Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x81966b31955fbe1a79834ec2b9ce5eaa26c83aa4fcd82dd9a932b474e4482e55, slot: 7117 +2024-09-30T08:46:11.190896Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7117 +2024-09-30T08:46:11.190922Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7117 +2024-09-30T08:46:11.208101Z INFO fork_choice_control::block_processor: Validating block with slot: 7118 +2024-09-30T08:46:11.210583Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x21be97bab4db9560179c168abed061a299cbc8f12e8fdaddadba992e459a72db, slot: 7118 +2024-09-30T08:46:11.224178Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7118 +2024-09-30T08:46:11.224281Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7118 +2024-09-30T08:46:11.241459Z INFO fork_choice_control::block_processor: Validating block with slot: 7119 +2024-09-30T08:46:11.242521Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9c06c1bbefc7e0dcfb4bbc41ac3098b333f8d0bab18d0c42ceaf4de924c278ee, slot: 7119 +2024-09-30T08:46:11.250509Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7119 +2024-09-30T08:46:11.250524Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7119 +2024-09-30T08:46:11.268223Z INFO fork_choice_control::block_processor: Validating block with slot: 7120 +2024-09-30T08:46:11.269661Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb4782b4858656660e19c32291c9696eb56ba9079ac5b384d8a3ec05c9ab7e421, slot: 7120 +2024-09-30T08:46:11.279297Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7120 +2024-09-30T08:46:11.279318Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7120 +2024-09-30T08:46:11.297311Z INFO fork_choice_control::block_processor: Validating block with slot: 7122 +2024-09-30T08:46:11.301285Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf4d74f9d145c36e790f192a3cef3d241da3768b2e6b26f027dc20b8b83153299, slot: 7122 +2024-09-30T08:46:11.306737Z INFO fork_choice_control::block_processor: Validating block with slot: 7603 +2024-09-30T08:46:11.306742Z INFO fork_choice_control::block_processor: Validating block with slot: 7602 +2024-09-30T08:46:11.306789Z INFO fork_choice_control::block_processor: Validating block with slot: 7604 +2024-09-30T08:46:11.306874Z INFO fork_choice_control::block_processor: Validating block with slot: 7605 +2024-09-30T08:46:11.307434Z INFO fork_choice_control::block_processor: Validating block with slot: 7606 +2024-09-30T08:46:11.307470Z INFO fork_choice_control::block_processor: Validating block with slot: 7607 +2024-09-30T08:46:11.307766Z INFO fork_choice_control::block_processor: Validating block with slot: 7608 +2024-09-30T08:46:11.310964Z INFO fork_choice_control::block_processor: Validating block with slot: 7609 +2024-09-30T08:46:11.311063Z INFO fork_choice_control::block_processor: Validating block with slot: 7612 +2024-09-30T08:46:11.311070Z INFO fork_choice_control::block_processor: Validating block with slot: 7613 +2024-09-30T08:46:11.311521Z INFO fork_choice_control::block_processor: Validating block with slot: 7614 +2024-09-30T08:46:11.312918Z INFO fork_choice_control::block_processor: Validating block with slot: 7615 +2024-09-30T08:46:11.313722Z INFO fork_choice_control::block_processor: Validating block with slot: 7616 +2024-09-30T08:46:11.313795Z INFO fork_choice_control::block_processor: Validating block with slot: 7617 +2024-09-30T08:46:11.313991Z INFO fork_choice_control::block_processor: Validating block with slot: 7618 +2024-09-30T08:46:11.313998Z INFO fork_choice_control::block_processor: Validating block with slot: 7619 +2024-09-30T08:46:11.315396Z INFO fork_choice_control::block_processor: Validating block with slot: 7620 +2024-09-30T08:46:11.318248Z INFO fork_choice_control::block_processor: Validating block with slot: 7621 +2024-09-30T08:46:11.320361Z INFO fork_choice_control::block_processor: Validating block with slot: 7529 +2024-09-30T08:46:11.320340Z INFO fork_choice_control::block_processor: Validating block with slot: 7611 +2024-09-30T08:46:11.321164Z INFO fork_choice_control::block_processor: Validating block with slot: 7530 +2024-09-30T08:46:11.322200Z INFO fork_choice_control::block_processor: Validating block with slot: 7531 +2024-09-30T08:46:11.322349Z INFO fork_choice_control::block_processor: Validating block with slot: 7532 +2024-09-30T08:46:11.323913Z INFO fork_choice_control::block_processor: Validating block with slot: 7533 +2024-09-30T08:46:11.323978Z INFO fork_choice_control::block_processor: Validating block with slot: 7534 +2024-09-30T08:46:11.324731Z INFO fork_choice_control::block_processor: Validating block with slot: 7536 +2024-09-30T08:46:11.324985Z INFO fork_choice_control::block_processor: Validating block with slot: 7537 +2024-09-30T08:46:11.326141Z INFO fork_choice_control::block_processor: Validating block with slot: 7538 +2024-09-30T08:46:11.326210Z INFO fork_choice_control::block_processor: Validating block with slot: 7539 +2024-09-30T08:46:11.326503Z INFO fork_choice_control::block_processor: Validating block with slot: 7540 +2024-09-30T08:46:11.327198Z INFO fork_choice_control::block_processor: Validating block with slot: 7541 +2024-09-30T08:46:11.328057Z INFO fork_choice_control::block_processor: Validating block with slot: 7542 +2024-09-30T08:46:11.328432Z INFO fork_choice_control::block_processor: Validating block with slot: 7543 +2024-09-30T08:46:11.329838Z INFO fork_choice_control::block_processor: Validating block with slot: 7544 +2024-09-30T08:46:11.330110Z INFO fork_choice_control::block_processor: Validating block with slot: 7546 +2024-09-30T08:46:11.330766Z INFO fork_choice_control::block_processor: Validating block with slot: 7610 +2024-09-30T08:46:11.331168Z INFO fork_choice_control::block_processor: Validating block with slot: 7547 +2024-09-30T08:46:11.331351Z INFO fork_choice_control::block_processor: Validating block with slot: 7548 +2024-09-30T08:46:11.332006Z INFO fork_choice_control::block_processor: Validating block with slot: 7545 +2024-09-30T08:46:11.332401Z INFO fork_choice_control::block_processor: Validating block with slot: 7549 +2024-09-30T08:46:11.332528Z INFO fork_choice_control::block_processor: Validating block with slot: 7550 +2024-09-30T08:46:11.332756Z INFO fork_choice_control::block_processor: Validating block with slot: 7551 +2024-09-30T08:46:11.333891Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7122 +2024-09-30T08:46:11.333894Z INFO fork_choice_control::block_processor: Validating block with slot: 7552 +2024-09-30T08:46:11.333935Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7122 +2024-09-30T08:46:11.333996Z INFO fork_choice_control::block_processor: Validating block with slot: 7553 +2024-09-30T08:46:11.334199Z INFO fork_choice_control::block_processor: Validating block with slot: 7554 +2024-09-30T08:46:11.334279Z INFO fork_choice_control::block_processor: Validating block with slot: 7555 +2024-09-30T08:46:11.335438Z INFO fork_choice_control::block_processor: Validating block with slot: 7556 +2024-09-30T08:46:11.335738Z INFO fork_choice_control::block_processor: Validating block with slot: 7557 +2024-09-30T08:46:11.335838Z INFO fork_choice_control::block_processor: Validating block with slot: 7558 +2024-09-30T08:46:11.336994Z INFO fork_choice_control::block_processor: Validating block with slot: 7559 +2024-09-30T08:46:11.337241Z INFO fork_choice_control::block_processor: Validating block with slot: 7560 +2024-09-30T08:46:11.338078Z INFO fork_choice_control::block_processor: Validating block with slot: 7561 +2024-09-30T08:46:11.338440Z INFO fork_choice_control::block_processor: Validating block with slot: 7562 +2024-09-30T08:46:11.338475Z INFO fork_choice_control::block_processor: Validating block with slot: 7564 +2024-09-30T08:46:11.339527Z INFO fork_choice_control::block_processor: Validating block with slot: 7565 +2024-09-30T08:46:11.340461Z INFO fork_choice_control::block_processor: Validating block with slot: 7566 +2024-09-30T08:46:11.340687Z INFO fork_choice_control::block_processor: Validating block with slot: 7567 +2024-09-30T08:46:11.340765Z INFO fork_choice_control::block_processor: Validating block with slot: 7568 +2024-09-30T08:46:11.340912Z INFO fork_choice_control::block_processor: Validating block with slot: 7569 +2024-09-30T08:46:11.341865Z INFO fork_choice_control::block_processor: Validating block with slot: 7570 +2024-09-30T08:46:11.341992Z INFO fork_choice_control::block_processor: Validating block with slot: 7571 +2024-09-30T08:46:11.342819Z INFO fork_choice_control::block_processor: Validating block with slot: 7572 +2024-09-30T08:46:11.342952Z INFO fork_choice_control::block_processor: Validating block with slot: 7573 +2024-09-30T08:46:11.344037Z INFO fork_choice_control::block_processor: Validating block with slot: 7574 +2024-09-30T08:46:11.344376Z INFO fork_choice_control::block_processor: Validating block with slot: 7575 +2024-09-30T08:46:11.344714Z INFO fork_choice_control::block_processor: Validating block with slot: 7622 +2024-09-30T08:46:11.345194Z INFO fork_choice_control::block_processor: Validating block with slot: 7577 +2024-09-30T08:46:11.345214Z INFO fork_choice_control::block_processor: Validating block with slot: 7576 +2024-09-30T08:46:11.345593Z INFO fork_choice_control::block_processor: Validating block with slot: 7578 +2024-09-30T08:46:11.347047Z INFO fork_choice_control::block_processor: Validating block with slot: 7579 +2024-09-30T08:46:11.347578Z INFO fork_choice_control::block_processor: Validating block with slot: 7580 +2024-09-30T08:46:11.348448Z INFO fork_choice_control::block_processor: Validating block with slot: 7581 +2024-09-30T08:46:11.348565Z INFO fork_choice_control::block_processor: Validating block with slot: 7582 +2024-09-30T08:46:11.348662Z INFO fork_choice_control::block_processor: Validating block with slot: 7583 +2024-09-30T08:46:11.349178Z INFO fork_choice_control::block_processor: Validating block with slot: 7584 +2024-09-30T08:46:11.350123Z INFO fork_choice_control::block_processor: Validating block with slot: 7585 +2024-09-30T08:46:11.350399Z INFO fork_choice_control::block_processor: Validating block with slot: 7586 +2024-09-30T08:46:11.350505Z INFO fork_choice_control::block_processor: Validating block with slot: 7587 +2024-09-30T08:46:11.351349Z INFO fork_choice_control::block_processor: Validating block with slot: 7589 +2024-09-30T08:46:11.351462Z INFO fork_choice_control::block_processor: Validating block with slot: 7588 +2024-09-30T08:46:11.351743Z INFO fork_choice_control::block_processor: Validating block with slot: 7591 +2024-09-30T08:46:11.352172Z INFO fork_choice_control::block_processor: Validating block with slot: 7592 +2024-09-30T08:46:11.352385Z INFO fork_choice_control::block_processor: Validating block with slot: 7623 +2024-09-30T08:46:11.353493Z INFO fork_choice_control::block_processor: Validating block with slot: 7624 +2024-09-30T08:46:11.353667Z INFO fork_choice_control::block_processor: Validating block with slot: 7625 +2024-09-30T08:46:11.354077Z INFO fork_choice_control::block_processor: Validating block with slot: 7626 +2024-09-30T08:46:11.354580Z INFO fork_choice_control::block_processor: Validating block with slot: 7627 +2024-09-30T08:46:11.354906Z INFO fork_choice_control::block_processor: Validating block with slot: 7628 +2024-09-30T08:46:11.355821Z INFO fork_choice_control::block_processor: Validating block with slot: 7629 +2024-09-30T08:46:11.357043Z INFO fork_choice_control::block_processor: Validating block with slot: 7630 +2024-09-30T08:46:11.357878Z INFO fork_choice_control::block_processor: Validating block with slot: 7631 +2024-09-30T08:46:11.357951Z INFO fork_choice_control::block_processor: Validating block with slot: 7632 +2024-09-30T08:46:11.358129Z INFO fork_choice_control::block_processor: Validating block with slot: 7633 +2024-09-30T08:46:11.358959Z INFO fork_choice_control::block_processor: Validating block with slot: 7634 +2024-09-30T08:46:11.359867Z INFO fork_choice_control::block_processor: Validating block with slot: 7635 +2024-09-30T08:46:11.360183Z INFO fork_choice_control::block_processor: Validating block with slot: 7636 +2024-09-30T08:46:11.360664Z INFO fork_choice_control::block_processor: Validating block with slot: 7637 +2024-09-30T08:46:11.360852Z INFO fork_choice_control::block_processor: Validating block with slot: 7638 +2024-09-30T08:46:11.361109Z INFO fork_choice_control::block_processor: Validating block with slot: 7639 +2024-09-30T08:46:11.361476Z INFO fork_choice_control::block_processor: Validating block with slot: 7640 +2024-09-30T08:46:11.361936Z INFO fork_choice_control::block_processor: Validating block with slot: 7641 +2024-09-30T08:46:11.362355Z INFO fork_choice_control::block_processor: Validating block with slot: 7643 +2024-09-30T08:46:11.362438Z INFO fork_choice_control::block_processor: Validating block with slot: 7644 +2024-09-30T08:46:11.362883Z INFO fork_choice_control::block_processor: Validating block with slot: 7645 +2024-09-30T08:46:11.363236Z INFO fork_choice_control::block_processor: Validating block with slot: 7590 +2024-09-30T08:46:11.363388Z INFO fork_choice_control::block_processor: Validating block with slot: 7648 +2024-09-30T08:46:11.363997Z INFO fork_choice_control::block_processor: Validating block with slot: 7649 +2024-09-30T08:46:11.364114Z INFO fork_choice_control::block_processor: Validating block with slot: 7647 +2024-09-30T08:46:11.364328Z INFO fork_choice_control::block_processor: Validating block with slot: 7650 +2024-09-30T08:46:11.364565Z INFO fork_choice_control::block_processor: Validating block with slot: 7651 +2024-09-30T08:46:11.364629Z INFO fork_choice_control::block_processor: Validating block with slot: 7652 +2024-09-30T08:46:11.365269Z INFO fork_choice_control::block_processor: Validating block with slot: 7646 +2024-09-30T08:46:11.365573Z INFO fork_choice_control::block_processor: Validating block with slot: 7653 +2024-09-30T08:46:11.365891Z INFO fork_choice_control::block_processor: Validating block with slot: 7655 +2024-09-30T08:46:11.365877Z INFO fork_choice_control::block_processor: Validating block with slot: 7654 +2024-09-30T08:46:11.365968Z INFO fork_choice_control::block_processor: Validating block with slot: 7656 +2024-09-30T08:46:11.366366Z INFO fork_choice_control::block_processor: Validating block with slot: 7123 +2024-09-30T08:46:11.368632Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x380dc3ecaedc847b72240be4a7e6c383e5511c26a78c53585ec5d52943388036, slot: 7123 +2024-09-30T08:46:11.377406Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7123 +2024-09-30T08:46:11.377429Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7123 +2024-09-30T08:46:11.395598Z INFO fork_choice_control::block_processor: Validating block with slot: 7124 +2024-09-30T08:46:11.397873Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe5144a3264058ace7462295317666a8ce9d53c181da29dfd67a4567f3b233745, slot: 7124 +2024-09-30T08:46:11.408066Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7124 +2024-09-30T08:46:11.408089Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7124 +2024-09-30T08:46:11.426810Z INFO fork_choice_control::block_processor: Validating block with slot: 7125 +2024-09-30T08:46:11.428178Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6878fd966ac4ea810c23d6bb5702bccd49099b2150150ae75f425ebb21995cc1, slot: 7125 +2024-09-30T08:46:11.434711Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7125 +2024-09-30T08:46:11.434724Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7125 +2024-09-30T08:46:11.451186Z INFO fork_choice_control::block_processor: Validating block with slot: 7126 +2024-09-30T08:46:11.452425Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0e2b7935a0f213efc20a712791a59dfcc01ba73fc6fa1b46452315f2c682ad5f, slot: 7126 +2024-09-30T08:46:11.459170Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7126 +2024-09-30T08:46:11.459187Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7126 +2024-09-30T08:46:11.476015Z INFO fork_choice_control::block_processor: Validating block with slot: 7127 +2024-09-30T08:46:11.476999Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc4da98693d54e047e5cb8858f5877d6524272b3fe45eff74b5a94e4f6ff0abcb, slot: 7127 +2024-09-30T08:46:11.482929Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7127 +2024-09-30T08:46:11.482945Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7127 +2024-09-30T08:46:11.505091Z INFO fork_choice_control::block_processor: Validating block with slot: 7128 +2024-09-30T08:46:11.505088Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 221, root: 0x765857c08b2af5671006bdb31bdca7687e22a0840f93f07201b5f6c09685e49c, head slot: 7127, head root: 0xc4da98693d54e047e5cb8858f5877d6524272b3fe45eff74b5a94e4f6ff0abcb) +2024-09-30T08:46:11.506092Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x92a840f82f6e21dc5c0094b9a974e196dc5cc05f92b6f80bb3ddf2b5c27e9830, slot: 7128 +2024-09-30T08:46:11.512105Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7128 +2024-09-30T08:46:11.512126Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7128 +2024-09-30T08:46:11.529735Z INFO fork_choice_control::block_processor: Validating block with slot: 7129 +2024-09-30T08:46:11.530935Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x92d52885afb3028fea589943444ec0803cc2e6cdfa5d8b88525383add38b0e5b, slot: 7129 +2024-09-30T08:46:11.537488Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7129 +2024-09-30T08:46:11.537506Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7129 +2024-09-30T08:46:11.556815Z INFO fork_choice_control::block_processor: Validating block with slot: 7130 +2024-09-30T08:46:11.558813Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdec573a7166671603d34f058117aec9314788a7639727872aa42215cd697ee1b, slot: 7130 +2024-09-30T08:46:11.568667Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7130 +2024-09-30T08:46:11.568687Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7130 +2024-09-30T08:46:11.588912Z INFO fork_choice_control::block_processor: Validating block with slot: 7131 +2024-09-30T08:46:11.590256Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6530544537b7c6ff826b1f82bf3d1ba13461b828c426b4b5357c8554aa5f8188, slot: 7131 +2024-09-30T08:46:11.597885Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7131 +2024-09-30T08:46:11.597901Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7131 +2024-09-30T08:46:11.617904Z INFO fork_choice_control::block_processor: Validating block with slot: 7132 +2024-09-30T08:46:11.620610Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xca18b42df8ccd05ac6b2242a49863c7a9b7126673cb3a8c3fc7cf37617b23adf, slot: 7132 +2024-09-30T08:46:11.631075Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7132 +2024-09-30T08:46:11.631098Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7132 +2024-09-30T08:46:11.647335Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 7072 +2024-09-30T08:46:11.651826Z INFO fork_choice_control::block_processor: Validating block with slot: 7133 +2024-09-30T08:46:11.653052Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbf148c29a8d2c54a39b3954af73236efa7128e672d408ace97d1eca31008fdd8, slot: 7133 +2024-09-30T08:46:11.660169Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7133 +2024-09-30T08:46:11.660188Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7133 +2024-09-30T08:46:11.682358Z INFO fork_choice_control::block_processor: Validating block with slot: 7134 +2024-09-30T08:46:11.683570Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9fbb4755b16ee9f392b2a23f91672def4be74c2dfed2323139996878766c239a, slot: 7134 +2024-09-30T08:46:11.700115Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7134 +2024-09-30T08:46:11.700139Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7134 +2024-09-30T08:46:11.721808Z INFO fork_choice_control::block_processor: Validating block with slot: 7135 +2024-09-30T08:46:11.722949Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8ed544a132253687a6055e413d9369677767a15ee178b58b719d4bceeeac12d1, slot: 7135 +2024-09-30T08:46:11.729814Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7135 +2024-09-30T08:46:11.729833Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7135 +2024-09-30T08:46:11.752167Z INFO fork_choice_control::block_processor: Validating block with slot: 7137 +2024-09-30T08:46:11.756909Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x807172e1ed447fb11db1aa4d77ba1924089d2f3ceab70b2b7ddbd3a0c54f0002, slot: 7137 +2024-09-30T08:46:11.952599Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7137 +2024-09-30T08:46:11.952622Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7137 +2024-09-30T08:46:11.965421Z INFO fork_choice_control::block_processor: Validating block with slot: 7138 +2024-09-30T08:46:11.966872Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa62cd9b97e7ea026911ee286c250d21c2ea8729f5998dadbf7db32315299a298, slot: 7138 +2024-09-30T08:46:11.977176Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7138 +2024-09-30T08:46:11.977196Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7138 +2024-09-30T08:46:11.991270Z INFO fork_choice_control::block_processor: Validating block with slot: 7139 +2024-09-30T08:46:11.992409Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x523926efdaec4818adab19999837a18b18a45e78cc6fdca7ab875f78edc36b7a, slot: 7139 +2024-09-30T08:46:11.999655Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7139 +2024-09-30T08:46:11.999678Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7139 +2024-09-30T08:46:12.012883Z INFO fork_choice_control::block_processor: Validating block with slot: 7140 +2024-09-30T08:46:12.015172Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5815aa04a119107c953e4305de030d58df954b8073e4fb9c6c8ef7d15685b1ce, slot: 7140 +2024-09-30T08:46:12.024770Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7140 +2024-09-30T08:46:12.024795Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7140 +2024-09-30T08:46:12.038493Z INFO fork_choice_control::block_processor: Validating block with slot: 7141 +2024-09-30T08:46:12.040335Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf0a0059581acbf957344a9370ab5c10246318491131c7707fb89eaf031913c1a, slot: 7141 +2024-09-30T08:46:12.049401Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7141 +2024-09-30T08:46:12.049419Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7141 +2024-09-30T08:46:12.063230Z INFO fork_choice_control::block_processor: Validating block with slot: 7142 +2024-09-30T08:46:12.064305Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xee3158bc0dd2577745ed4a20e2db47d9ce0a9f73c100c47afc0e2e5ee237025d, slot: 7142 +2024-09-30T08:46:12.069968Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7142 +2024-09-30T08:46:12.069982Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7142 +2024-09-30T08:46:12.083923Z INFO fork_choice_control::block_processor: Validating block with slot: 7143 +2024-09-30T08:46:12.085750Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5dcc75be3c5ae1b881ca65a2c61f71d0d170b6d6737adcb19de98c6fdd8dcca1, slot: 7143 +2024-09-30T08:46:12.093789Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7143 +2024-09-30T08:46:12.093807Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7143 +2024-09-30T08:46:12.108252Z INFO fork_choice_control::block_processor: Validating block with slot: 7144 +2024-09-30T08:46:12.109930Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9229c5d5ea024816175a73f952defaef113e91add32020baffcda44514696d37, slot: 7144 +2024-09-30T08:46:12.117062Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7144 +2024-09-30T08:46:12.117073Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7144 +2024-09-30T08:46:12.130953Z INFO fork_choice_control::block_processor: Validating block with slot: 7145 +2024-09-30T08:46:12.132069Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x05652a27eb70c8cfc72d2ea11126199b7548cdb591a63c16700cc35ae7ccea5f, slot: 7145 +2024-09-30T08:46:12.138052Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7145 +2024-09-30T08:46:12.138075Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7145 +2024-09-30T08:46:12.152417Z INFO fork_choice_control::block_processor: Validating block with slot: 7146 +2024-09-30T08:46:12.153622Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc8cd2201eca9506e2f849c524ea4060042d32b28b59dea4ab20deb2c80305465, slot: 7146 +2024-09-30T08:46:12.160406Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7146 +2024-09-30T08:46:12.160426Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7146 +2024-09-30T08:46:12.174494Z INFO fork_choice_control::block_processor: Validating block with slot: 7147 +2024-09-30T08:46:12.175593Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x89866084e115d09bf66f89458163b82fa11558aa02912e10d17c1c4b1252cca0, slot: 7147 +2024-09-30T08:46:12.181464Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7147 +2024-09-30T08:46:12.181477Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7147 +2024-09-30T08:46:12.195375Z INFO fork_choice_control::block_processor: Validating block with slot: 7148 +2024-09-30T08:46:12.197615Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5fdf1f2bbff10a94eba45ab055defd75978654d1d661ae7a71bfd30914d85f3e, slot: 7148 +2024-09-30T08:46:12.206599Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7148 +2024-09-30T08:46:12.206624Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7148 +2024-09-30T08:46:12.220550Z INFO fork_choice_control::block_processor: Validating block with slot: 7149 +2024-09-30T08:46:12.221986Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x73d2126cfe7c431792c88dbc8369575b1801d8d542879aba9668e8f2f1b5310b, slot: 7149 +2024-09-30T08:46:12.228903Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7149 +2024-09-30T08:46:12.228920Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7149 +2024-09-30T08:46:12.243351Z INFO fork_choice_control::block_processor: Validating block with slot: 7150 +2024-09-30T08:46:12.244710Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd0c47260de796e1e8fcba7c1a3c89848ac02fae9511d0cd3259ceca779249857, slot: 7150 +2024-09-30T08:46:12.251475Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7150 +2024-09-30T08:46:12.251486Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7150 +2024-09-30T08:46:12.266376Z INFO fork_choice_control::block_processor: Validating block with slot: 7151 +2024-09-30T08:46:12.269779Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x971b44c6439f06ce0a53a2803cd2b67c869d5678a26ad7bd961e39ff6cb3894d, slot: 7151 +2024-09-30T08:46:12.281965Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7151 +2024-09-30T08:46:12.281983Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7151 +2024-09-30T08:46:12.297244Z INFO fork_choice_control::block_processor: Validating block with slot: 7152 +2024-09-30T08:46:12.298363Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb4a4f658b88c65318405eb237c5fbdb1b40ac6f6150e0f3218b5e8ad6a878605, slot: 7152 +2024-09-30T08:46:12.304220Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7152 +2024-09-30T08:46:12.304234Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7152 +2024-09-30T08:46:12.319722Z INFO fork_choice_control::block_processor: Validating block with slot: 7153 +2024-09-30T08:46:12.321229Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x45dfd0d48ef06dad7abe55ed46d2cdb91bd8ceb46880e93a3fb52536d4687211, slot: 7153 +2024-09-30T08:46:12.328194Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7153 +2024-09-30T08:46:12.328210Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7153 +2024-09-30T08:46:12.344042Z INFO fork_choice_control::block_processor: Validating block with slot: 7154 +2024-09-30T08:46:12.345002Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x862b84783e142a77a282319348efea52b86fdb92f5b222dfeea754acdf26affd, slot: 7154 +2024-09-30T08:46:12.350896Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7154 +2024-09-30T08:46:12.350907Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7154 +2024-09-30T08:46:12.367010Z INFO fork_choice_control::block_processor: Validating block with slot: 7155 +2024-09-30T08:46:12.368363Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x979693eed73e1e6cd0113abb882ea332919a2ec09506f0ebb1b60f0032450e4d, slot: 7155 +2024-09-30T08:46:12.375404Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7155 +2024-09-30T08:46:12.375424Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7155 +2024-09-30T08:46:12.391477Z INFO fork_choice_control::block_processor: Validating block with slot: 7156 +2024-09-30T08:46:12.392983Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1063c08e6b94b8c393012cc62ad9b56cd203ed8e83bc157fa3114927ffab3563, slot: 7156 +2024-09-30T08:46:12.399915Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7156 +2024-09-30T08:46:12.399932Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7156 +2024-09-30T08:46:12.416417Z INFO fork_choice_control::block_processor: Validating block with slot: 7157 +2024-09-30T08:46:12.417380Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xba42321fde3703afa00de5ccf13e3c287347966dd83ffc4dfde9130f4d86e5af, slot: 7157 +2024-09-30T08:46:12.423482Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7157 +2024-09-30T08:46:12.423507Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7157 +2024-09-30T08:46:12.440045Z INFO fork_choice_control::block_processor: Validating block with slot: 7158 +2024-09-30T08:46:12.441471Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9b471fc0f4f9d570099a97feedd5debcac8e2af0022b10d6d1c0e34e873ff810, slot: 7158 +2024-09-30T08:46:12.448246Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7158 +2024-09-30T08:46:12.448258Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7158 +2024-09-30T08:46:12.464880Z INFO fork_choice_control::block_processor: Validating block with slot: 7159 +2024-09-30T08:46:12.465935Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2ff9af3590f49fa308628fc55be0b55203e583de15289f84101028fab7cceb19, slot: 7159 +2024-09-30T08:46:12.473758Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7159 +2024-09-30T08:46:12.473780Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7159 +2024-09-30T08:46:12.543793Z INFO fork_choice_control::block_processor: Validating block with slot: 7160 +2024-09-30T08:46:12.543839Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 222, root: 0xbb8a1a43bc678bffc61a27524d8c56d27e1a6a772107c28b1eef67b0f9585979, head slot: 7159, head root: 0x2ff9af3590f49fa308628fc55be0b55203e583de15289f84101028fab7cceb19) +2024-09-30T08:46:12.546167Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6d68277d545d97d2688bbab52f09d46467555039a14a266f3ae46b9bb601eb4d, slot: 7160 +2024-09-30T08:46:12.556520Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7160 +2024-09-30T08:46:12.556544Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7160 +2024-09-30T08:46:12.574873Z INFO fork_choice_control::block_processor: Validating block with slot: 7161 +2024-09-30T08:46:12.576142Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x77b6872434f82e199df9a47ed6e53daa8ae32c762eb0f9576d96ae2322da1c38, slot: 7161 +2024-09-30T08:46:12.583156Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7161 +2024-09-30T08:46:12.583174Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7161 +2024-09-30T08:46:12.601415Z INFO fork_choice_control::block_processor: Validating block with slot: 7162 +2024-09-30T08:46:12.602679Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb2c734a4c9defdeee2801c43c9471618871975e892ea8df9838e2d1d193aeedd, slot: 7162 +2024-09-30T08:46:12.611559Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7162 +2024-09-30T08:46:12.611580Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7162 +2024-09-30T08:46:12.630510Z INFO fork_choice_control::block_processor: Validating block with slot: 7164 +2024-09-30T08:46:12.632342Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x31bda19ed4a8e0146963c63c2848fe2c3ad4664e4825e0112a1c56b0e0c1da60, slot: 7164 +2024-09-30T08:46:12.643986Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7164 +2024-09-30T08:46:12.644009Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7164 +2024-09-30T08:46:12.664197Z INFO fork_choice_control::block_processor: Validating block with slot: 7165 +2024-09-30T08:46:12.666176Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x70e15ddb4031a2c26070f98e9be16e89559bdc69058e23cfcd1edd380941290d, slot: 7165 +2024-09-30T08:46:12.676411Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7165 +2024-09-30T08:46:12.676435Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7165 +2024-09-30T08:46:12.682478Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 7104 +2024-09-30T08:46:12.695972Z INFO fork_choice_control::block_processor: Validating block with slot: 7166 +2024-09-30T08:46:12.697101Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8d8ea1675a03ff7f1febd9f5da490e9296b8af7388f5a21955c151922e4b1234, slot: 7166 +2024-09-30T08:46:12.704006Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7166 +2024-09-30T08:46:12.704025Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7166 +2024-09-30T08:46:12.724926Z INFO fork_choice_control::block_processor: Validating block with slot: 7167 +2024-09-30T08:46:12.726133Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1f2309fb1700da393fc9ba2a7f2a821d9c8c0312524571d244b4213fe9bc779d, slot: 7167 +2024-09-30T08:46:12.732868Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7167 +2024-09-30T08:46:12.732889Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7167 +2024-09-30T08:46:12.752985Z INFO fork_choice_control::block_processor: Validating block with slot: 7168 +2024-09-30T08:46:12.754041Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd201c8a470174b5899bc901fd671ca1ade4548cd4f5d1c1604d40e42b67c6431, slot: 7168 +2024-09-30T08:46:12.865695Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7168 +2024-09-30T08:46:12.865717Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7168 +2024-09-30T08:46:12.876912Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7168) +2024-09-30T08:46:12.877061Z INFO fork_choice_control::block_processor: Validating block with slot: 7169 +2024-09-30T08:46:12.878267Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd5503e9e7f9853547829cbdc3b460bdd0c4bd43810b8de91587b6118777a6f1b, slot: 7169 +2024-09-30T08:46:12.958348Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7169 +2024-09-30T08:46:12.958367Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7169 +2024-09-30T08:46:12.969801Z INFO fork_choice_control::block_processor: Validating block with slot: 7170 +2024-09-30T08:46:12.972337Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa77c88611c0893239a35732183d957f25dd14833f3067a6d59e975ed5286eea3, slot: 7170 +2024-09-30T08:46:12.984159Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7170 +2024-09-30T08:46:12.984175Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7170 +2024-09-30T08:46:12.996949Z INFO fork_choice_control::block_processor: Validating block with slot: 7171 +2024-09-30T08:46:12.998310Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa5478b66604757a503bebde7ef598be2160621ff1822765a02da04c428ee9c5b, slot: 7171 +2024-09-30T08:46:13.005820Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7171 +2024-09-30T08:46:13.005853Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7171 +2024-09-30T08:46:13.018543Z INFO fork_choice_control::block_processor: Validating block with slot: 7172 +2024-09-30T08:46:13.020503Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa1ddac15d38b5bff2b8b277abd2e52de23a9a78bb5cee4fdbfc35b010dbff188, slot: 7172 +2024-09-30T08:46:13.029880Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7172 +2024-09-30T08:46:13.029900Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7172 +2024-09-30T08:46:13.042075Z INFO fork_choice_control::block_processor: Validating block with slot: 7173 +2024-09-30T08:46:13.043767Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaf7bf8a15699a002d91ef7703c29a30c202c8e662afb184d1594963e207ee5fa, slot: 7173 +2024-09-30T08:46:13.053306Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7173 +2024-09-30T08:46:13.053324Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7173 +2024-09-30T08:46:13.066663Z INFO fork_choice_control::block_processor: Validating block with slot: 7174 +2024-09-30T08:46:13.068402Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa146f11a18fdf8940be1094494c37346f19b5182faec71760a40cd68666f65c3, slot: 7174 +2024-09-30T08:46:13.077773Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7174 +2024-09-30T08:46:13.077793Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7174 +2024-09-30T08:46:13.091605Z INFO fork_choice_control::block_processor: Validating block with slot: 7175 +2024-09-30T08:46:13.092843Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4e34245c9fd1bbd175d24857dff1d58251cc2a6c59d6feeb843cf109521c6d55, slot: 7175 +2024-09-30T08:46:13.100799Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7175 +2024-09-30T08:46:13.100817Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7175 +2024-09-30T08:46:13.115222Z INFO fork_choice_control::block_processor: Validating block with slot: 7176 +2024-09-30T08:46:13.116896Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x066acc86e364ff1e4754dcbfc5018aa59ef3111d580e113b2a1fd8065420d49a, slot: 7176 +2024-09-30T08:46:13.125541Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7176 +2024-09-30T08:46:13.125562Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7176 +2024-09-30T08:46:13.140323Z INFO fork_choice_control::block_processor: Validating block with slot: 7177 +2024-09-30T08:46:13.141998Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4403d7aede7154d20b5cfd6c4d40ccb18b0cde93e994ffdd3a1d48504b4b5ce8, slot: 7177 +2024-09-30T08:46:13.149551Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7177 +2024-09-30T08:46:13.149562Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7177 +2024-09-30T08:46:13.163576Z INFO fork_choice_control::block_processor: Validating block with slot: 7178 +2024-09-30T08:46:13.164569Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x946a6c2cc8064b6f58f570512ce4001f07196c27acdee01e58f0ffeb4d5ee022, slot: 7178 +2024-09-30T08:46:13.170647Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7178 +2024-09-30T08:46:13.170660Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7178 +2024-09-30T08:46:13.185005Z INFO fork_choice_control::block_processor: Validating block with slot: 7179 +2024-09-30T08:46:13.186204Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe3b763314327c9e319ff93975596c42be61fff91eafec0cd2c199b90e2a9f971, slot: 7179 +2024-09-30T08:46:13.192239Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7179 +2024-09-30T08:46:13.192262Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7179 +2024-09-30T08:46:13.205941Z INFO fork_choice_control::block_processor: Validating block with slot: 7180 +2024-09-30T08:46:13.207183Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x079a120842115a40b021e4b01ed878a3f36e2b77f981e484e6b530ca8f9b484b, slot: 7180 +2024-09-30T08:46:13.213502Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7180 +2024-09-30T08:46:13.213515Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7180 +2024-09-30T08:46:13.227151Z INFO fork_choice_control::block_processor: Validating block with slot: 7181 +2024-09-30T08:46:13.228510Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2f516ce86f25e1a49418a25cc9f6ed5f78ce37baee988d0132db75354bcec8d7, slot: 7181 +2024-09-30T08:46:13.235525Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7181 +2024-09-30T08:46:13.235543Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7181 +2024-09-30T08:46:13.249641Z INFO fork_choice_control::block_processor: Validating block with slot: 7182 +2024-09-30T08:46:13.251620Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfa56878e91a8600993c2e97c0a301c88887782f7d4c65068f4e99f238fb6d951, slot: 7182 +2024-09-30T08:46:13.260519Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7182 +2024-09-30T08:46:13.260541Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7182 +2024-09-30T08:46:13.275912Z INFO fork_choice_control::block_processor: Validating block with slot: 7183 +2024-09-30T08:46:13.277427Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdf5819206c60bd88c41e635a7bea7bd5b44b3dfd9081c64094d341e45d7df516, slot: 7183 +2024-09-30T08:46:13.284168Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7183 +2024-09-30T08:46:13.284181Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7183 +2024-09-30T08:46:13.298562Z INFO fork_choice_control::block_processor: Validating block with slot: 7184 +2024-09-30T08:46:13.300394Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfaddba21c7f6faff5388c5aa1ab7a69caa2fac49f4ed68e90928bc702246dbb3, slot: 7184 +2024-09-30T08:46:13.309524Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7184 +2024-09-30T08:46:13.309544Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7184 +2024-09-30T08:46:13.324281Z INFO fork_choice_control::block_processor: Validating block with slot: 7185 +2024-09-30T08:46:13.325403Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x08a2dd544fb58a53130f31101caeef373c99530e228c8070f207b6eb21bfb1c4, slot: 7185 +2024-09-30T08:46:13.331357Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7185 +2024-09-30T08:46:13.331373Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7185 +2024-09-30T08:46:13.347057Z INFO fork_choice_control::block_processor: Validating block with slot: 7187 +2024-09-30T08:46:13.348867Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x962bb6b174928ea111137809d805fdff94b6231a84724b02fb2020a6053a5573, slot: 7187 +2024-09-30T08:46:13.358026Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7187 +2024-09-30T08:46:13.358046Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7187 +2024-09-30T08:46:13.373079Z INFO fork_choice_control::block_processor: Validating block with slot: 7188 +2024-09-30T08:46:13.374070Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6ae003f23e0916ff65a18221a73ac5e1207aa616146f244fe2c2638369c62276, slot: 7188 +2024-09-30T08:46:13.379640Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7188 +2024-09-30T08:46:13.379652Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7188 +2024-09-30T08:46:13.394875Z INFO fork_choice_control::block_processor: Validating block with slot: 7189 +2024-09-30T08:46:13.395849Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb59c4e02d57b5e6fc84f13157e14731aec7639609bc7faabb27f950097cd61c0, slot: 7189 +2024-09-30T08:46:13.401850Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7189 +2024-09-30T08:46:13.401864Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7189 +2024-09-30T08:46:13.417240Z INFO fork_choice_control::block_processor: Validating block with slot: 7190 +2024-09-30T08:46:13.419152Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5e7ccb5b88ed8bf44996a88fe2804f0bb49c34f407c759756f8ba03b3cf02322, slot: 7190 +2024-09-30T08:46:13.427410Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7190 +2024-09-30T08:46:13.427431Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7190 +2024-09-30T08:46:13.443131Z INFO fork_choice_control::block_processor: Validating block with slot: 7191 +2024-09-30T08:46:13.444223Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe75fbf9d5056ebfd6a0c8bd8f7139bf80c018e6994076b09ee5b15a654d36cdc, slot: 7191 +2024-09-30T08:46:13.450392Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7191 +2024-09-30T08:46:13.450408Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7191 +2024-09-30T08:46:13.471415Z INFO fork_choice_control::block_processor: Validating block with slot: 7192 +2024-09-30T08:46:13.471467Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 223, root: 0x8ed544a132253687a6055e413d9369677767a15ee178b58b719d4bceeeac12d1, head slot: 7191, head root: 0xe75fbf9d5056ebfd6a0c8bd8f7139bf80c018e6994076b09ee5b15a654d36cdc) +2024-09-30T08:46:13.472521Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa248a3cacd0dc3aad3c9b6d37011c6dfa12c939752e842301000cc09b221b6a7, slot: 7192 +2024-09-30T08:46:13.478379Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7192 +2024-09-30T08:46:13.478391Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7192 +2024-09-30T08:46:13.494915Z INFO fork_choice_control::block_processor: Validating block with slot: 7193 +2024-09-30T08:46:13.496063Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9c3c1022b74a48c1aa86a9a859ccca15ef1cae2fe53ff2b239ae899bc7a8fef5, slot: 7193 +2024-09-30T08:46:13.502237Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7193 +2024-09-30T08:46:13.502251Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7193 +2024-09-30T08:46:13.513273Z INFO fork_choice_control::block_processor: Validating block with slot: 7785 +2024-09-30T08:46:13.513277Z INFO fork_choice_control::block_processor: Validating block with slot: 7786 +2024-09-30T08:46:13.513352Z INFO fork_choice_control::block_processor: Validating block with slot: 7787 +2024-09-30T08:46:13.518956Z INFO fork_choice_control::block_processor: Validating block with slot: 7194 +2024-09-30T08:46:13.520046Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x48e4ec27abd979abf9c96d214c4324d48f5e25c5a58168483ad24415d02f1ecb, slot: 7194 +2024-09-30T08:46:13.525845Z INFO fork_choice_control::block_processor: Validating block with slot: 7788 +2024-09-30T08:46:13.525839Z INFO fork_choice_control::block_processor: Validating block with slot: 7789 +2024-09-30T08:46:13.525850Z INFO fork_choice_control::block_processor: Validating block with slot: 7790 +2024-09-30T08:46:13.525863Z INFO fork_choice_control::block_processor: Validating block with slot: 7791 +2024-09-30T08:46:13.525896Z INFO fork_choice_control::block_processor: Validating block with slot: 7792 +2024-09-30T08:46:13.525909Z INFO fork_choice_control::block_processor: Validating block with slot: 7793 +2024-09-30T08:46:13.527101Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7194 +2024-09-30T08:46:13.527112Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7194 +2024-09-30T08:46:13.543646Z INFO fork_choice_control::block_processor: Validating block with slot: 7195 +2024-09-30T08:46:13.546400Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x782c07b7f13515becdbd23b86c521328aa80061f9983bc02c6deea1f78f9972e, slot: 7195 +2024-09-30T08:46:13.556777Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7195 +2024-09-30T08:46:13.556794Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7195 +2024-09-30T08:46:13.573698Z INFO fork_choice_control::block_processor: Validating block with slot: 7196 +2024-09-30T08:46:13.574664Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdb7467d6d73f8754f652a42b298150665551b690a8a868c85728e8ea19f9f31d, slot: 7196 +2024-09-30T08:46:13.580167Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7196 +2024-09-30T08:46:13.580191Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7196 +2024-09-30T08:46:13.598263Z INFO fork_choice_control::block_processor: Validating block with slot: 7197 +2024-09-30T08:46:13.599255Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x25f67975ac8ae4c72f422c5dc6cecb6eae218aa96e9d408e3614317476006690, slot: 7197 +2024-09-30T08:46:13.605130Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7197 +2024-09-30T08:46:13.605149Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7197 +2024-09-30T08:46:13.622441Z INFO fork_choice_control::block_processor: Validating block with slot: 7198 +2024-09-30T08:46:13.623964Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3f4237147d70b884ad3823dd7c262a96448bf7b7d5f57448dc14fa738c3d943b, slot: 7198 +2024-09-30T08:46:13.630873Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7198 +2024-09-30T08:46:13.630886Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7198 +2024-09-30T08:46:13.645343Z INFO fork_choice_control::block_processor: Validating block with slot: 7795 +2024-09-30T08:46:13.645347Z INFO fork_choice_control::block_processor: Validating block with slot: 7794 +2024-09-30T08:46:13.645485Z INFO fork_choice_control::block_processor: Validating block with slot: 7796 +2024-09-30T08:46:13.648853Z INFO fork_choice_control::block_processor: Validating block with slot: 7199 +2024-09-30T08:46:13.649832Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdeaec097afb3b5f7989aa45af83832e158e88c7c4159f737f8d699f3ee3e5856, slot: 7199 +2024-09-30T08:46:13.657502Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7199 +2024-09-30T08:46:13.657521Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7199 +2024-09-30T08:46:13.668472Z INFO fork_choice_control::block_processor: Validating block with slot: 7797 +2024-09-30T08:46:13.668470Z INFO fork_choice_control::block_processor: Validating block with slot: 7800 +2024-09-30T08:46:13.668487Z INFO fork_choice_control::block_processor: Validating block with slot: 7798 +2024-09-30T08:46:13.668489Z INFO fork_choice_control::block_processor: Validating block with slot: 7802 +2024-09-30T08:46:13.668511Z INFO fork_choice_control::block_processor: Validating block with slot: 7801 +2024-09-30T08:46:13.668565Z INFO fork_choice_control::block_processor: Validating block with slot: 7803 +2024-09-30T08:46:13.668763Z INFO fork_choice_control::block_processor: Validating block with slot: 7799 +2024-09-30T08:46:13.669463Z INFO fork_choice_control::block_processor: Validating block with slot: 7804 +2024-09-30T08:46:13.669564Z INFO fork_choice_control::block_processor: Validating block with slot: 7805 +2024-09-30T08:46:13.669997Z INFO fork_choice_control::block_processor: Validating block with slot: 7806 +2024-09-30T08:46:13.670401Z INFO fork_choice_control::block_processor: Validating block with slot: 7807 +2024-09-30T08:46:13.670502Z INFO fork_choice_control::block_processor: Validating block with slot: 7808 +2024-09-30T08:46:13.671344Z INFO fork_choice_control::block_processor: Validating block with slot: 7809 +2024-09-30T08:46:13.671806Z INFO fork_choice_control::block_processor: Validating block with slot: 7810 +2024-09-30T08:46:13.671865Z INFO fork_choice_control::block_processor: Validating block with slot: 7811 +2024-09-30T08:46:13.672149Z INFO fork_choice_control::block_processor: Validating block with slot: 7812 +2024-09-30T08:46:13.675538Z INFO fork_choice_control::block_processor: Validating block with slot: 7200 +2024-09-30T08:46:13.676890Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8fc44f186d592e97eacd6dd4285b180d363785056775903ce39641df9b177d8b, slot: 7200 +2024-09-30T08:46:13.781308Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7200 +2024-09-30T08:46:13.781327Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7200 +2024-09-30T08:46:13.791844Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7200) +2024-09-30T08:46:13.791970Z INFO fork_choice_control::block_processor: Validating block with slot: 7201 +2024-09-30T08:46:13.794015Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa914215cfb24fc299b5257a4f6e0a7f96aedfa3f7bea8c4b974566b58fbd10e4, slot: 7201 +2024-09-30T08:46:13.834456Z INFO fork_choice_control::block_processor: Validating block with slot: 7813 +2024-09-30T08:46:13.874892Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7201 +2024-09-30T08:46:13.874914Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7201 +2024-09-30T08:46:13.886380Z INFO fork_choice_control::block_processor: Validating block with slot: 7202 +2024-09-30T08:46:13.888490Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe9b6c59396bbbc8ac99c378fab207d46f11efbfdf2b77333abd6533b13abc37a, slot: 7202 +2024-09-30T08:46:13.891179Z INFO fork_choice_control::block_processor: Validating block with slot: 7815 +2024-09-30T08:46:13.891199Z INFO fork_choice_control::block_processor: Validating block with slot: 7814 +2024-09-30T08:46:13.891223Z INFO fork_choice_control::block_processor: Validating block with slot: 7818 +2024-09-30T08:46:13.891192Z INFO fork_choice_control::block_processor: Validating block with slot: 7817 +2024-09-30T08:46:13.891310Z INFO fork_choice_control::block_processor: Validating block with slot: 7820 +2024-09-30T08:46:13.892238Z INFO fork_choice_control::block_processor: Validating block with slot: 7816 +2024-09-30T08:46:13.892557Z INFO fork_choice_control::block_processor: Validating block with slot: 7821 +2024-09-30T08:46:13.893572Z INFO fork_choice_control::block_processor: Validating block with slot: 7822 +2024-09-30T08:46:13.894261Z INFO fork_choice_control::block_processor: Validating block with slot: 7823 +2024-09-30T08:46:13.894429Z INFO fork_choice_control::block_processor: Validating block with slot: 7824 +2024-09-30T08:46:13.895551Z INFO fork_choice_control::block_processor: Validating block with slot: 7825 +2024-09-30T08:46:13.895573Z INFO fork_choice_control::block_processor: Validating block with slot: 7826 +2024-09-30T08:46:13.898726Z INFO fork_choice_control::block_processor: Validating block with slot: 7827 +2024-09-30T08:46:13.899444Z INFO fork_choice_control::block_processor: Validating block with slot: 7828 +2024-09-30T08:46:13.899824Z INFO fork_choice_control::block_processor: Validating block with slot: 7829 +2024-09-30T08:46:13.899995Z INFO fork_choice_control::block_processor: Validating block with slot: 7830 +2024-09-30T08:46:13.900180Z INFO fork_choice_control::block_processor: Validating block with slot: 7833 +2024-09-30T08:46:13.900262Z INFO fork_choice_control::block_processor: Validating block with slot: 7831 +2024-09-30T08:46:13.900903Z INFO fork_choice_control::block_processor: Validating block with slot: 7834 +2024-09-30T08:46:13.902064Z INFO fork_choice_control::block_processor: Validating block with slot: 7835 +2024-09-30T08:46:13.902101Z INFO fork_choice_control::block_processor: Validating block with slot: 7836 +2024-09-30T08:46:13.903506Z INFO fork_choice_control::block_processor: Validating block with slot: 7837 +2024-09-30T08:46:13.903789Z INFO fork_choice_control::block_processor: Validating block with slot: 7838 +2024-09-30T08:46:13.904594Z INFO fork_choice_control::block_processor: Validating block with slot: 7841 +2024-09-30T08:46:13.904991Z INFO fork_choice_control::block_processor: Validating block with slot: 7845 +2024-09-30T08:46:13.905171Z INFO fork_choice_control::block_processor: Validating block with slot: 7842 +2024-09-30T08:46:13.905826Z INFO fork_choice_control::block_processor: Validating block with slot: 7843 +2024-09-30T08:46:13.906005Z INFO fork_choice_control::block_processor: Validating block with slot: 7846 +2024-09-30T08:46:13.906676Z INFO fork_choice_control::block_processor: Validating block with slot: 7847 +2024-09-30T08:46:13.907272Z INFO fork_choice_control::block_processor: Validating block with slot: 7848 +2024-09-30T08:46:13.907685Z INFO fork_choice_control::block_processor: Validating block with slot: 7721 +2024-09-30T08:46:13.909131Z INFO fork_choice_control::block_processor: Validating block with slot: 7722 +2024-09-30T08:46:13.911106Z INFO fork_choice_control::block_processor: Validating block with slot: 7844 +2024-09-30T08:46:13.911351Z INFO fork_choice_control::block_processor: Validating block with slot: 7723 +2024-09-30T08:46:13.912285Z INFO fork_choice_control::block_processor: Validating block with slot: 7725 +2024-09-30T08:46:13.912340Z INFO fork_choice_control::block_processor: Validating block with slot: 7724 +2024-09-30T08:46:13.912464Z INFO fork_choice_control::block_processor: Validating block with slot: 7727 +2024-09-30T08:46:13.913514Z INFO fork_choice_control::block_processor: Validating block with slot: 7726 +2024-09-30T08:46:13.917329Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7202 +2024-09-30T08:46:13.917346Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7202 +2024-09-30T08:46:13.930885Z INFO fork_choice_control::block_processor: Validating block with slot: 7203 +2024-09-30T08:46:13.932965Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2d1647d5dcd1446bce256721c2b33cf8b4e8ab25d5d0addbe8729b8aa2d06ec3, slot: 7203 +2024-09-30T08:46:13.947787Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7203 +2024-09-30T08:46:13.947806Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7203 +2024-09-30T08:46:13.961328Z INFO fork_choice_control::block_processor: Validating block with slot: 7204 +2024-09-30T08:46:13.963089Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe94b95c5f7fabe25f8d31349b2743b01fdec9c3bbb49967e1bfffe0a98ecdd74, slot: 7204 +2024-09-30T08:46:13.974401Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7204 +2024-09-30T08:46:13.974422Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7204 +2024-09-30T08:46:13.988442Z INFO fork_choice_control::block_processor: Validating block with slot: 7205 +2024-09-30T08:46:13.989716Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1420349344d2c1b85a04366f569e60b7189f7fa739f9c3926bb1ff8837788d40, slot: 7205 +2024-09-30T08:46:13.998018Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7205 +2024-09-30T08:46:13.998032Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7205 +2024-09-30T08:46:14.012494Z INFO fork_choice_control::block_processor: Validating block with slot: 7206 +2024-09-30T08:46:14.015386Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbd6ea9c23ba294cb52d37dbda9d7949d88b83001978e8cb6de7068d35f4e3e2b, slot: 7206 +2024-09-30T08:46:14.018773Z INFO fork_choice_control::block_processor: Validating block with slot: 7729 +2024-09-30T08:46:14.018813Z INFO fork_choice_control::block_processor: Validating block with slot: 7730 +2024-09-30T08:46:14.018854Z INFO fork_choice_control::block_processor: Validating block with slot: 7731 +2024-09-30T08:46:14.019268Z INFO fork_choice_control::block_processor: Validating block with slot: 7732 +2024-09-30T08:46:14.020271Z INFO fork_choice_control::block_processor: Validating block with slot: 7733 +2024-09-30T08:46:14.020804Z INFO fork_choice_control::block_processor: Validating block with slot: 7734 +2024-09-30T08:46:14.021327Z INFO fork_choice_control::block_processor: Validating block with slot: 7736 +2024-09-30T08:46:14.021443Z INFO fork_choice_control::block_processor: Validating block with slot: 7737 +2024-09-30T08:46:14.022257Z INFO fork_choice_control::block_processor: Validating block with slot: 7738 +2024-09-30T08:46:14.022755Z INFO fork_choice_control::block_processor: Validating block with slot: 7739 +2024-09-30T08:46:14.023103Z INFO fork_choice_control::block_processor: Validating block with slot: 7740 +2024-09-30T08:46:14.023459Z INFO fork_choice_control::block_processor: Validating block with slot: 7741 +2024-09-30T08:46:14.023715Z INFO fork_choice_control::block_processor: Validating block with slot: 7742 +2024-09-30T08:46:14.023770Z INFO fork_choice_control::block_processor: Validating block with slot: 7743 +2024-09-30T08:46:14.024270Z INFO fork_choice_control::block_processor: Validating block with slot: 7744 +2024-09-30T08:46:14.024932Z INFO fork_choice_control::block_processor: Validating block with slot: 7745 +2024-09-30T08:46:14.025023Z INFO fork_choice_control::block_processor: Validating block with slot: 7746 +2024-09-30T08:46:14.025588Z INFO fork_choice_control::block_processor: Validating block with slot: 7747 +2024-09-30T08:46:14.026228Z INFO fork_choice_control::block_processor: Validating block with slot: 7748 +2024-09-30T08:46:14.026851Z INFO fork_choice_control::block_processor: Validating block with slot: 7749 +2024-09-30T08:46:14.027603Z INFO fork_choice_control::block_processor: Validating block with slot: 7750 +2024-09-30T08:46:14.027628Z INFO fork_choice_control::block_processor: Validating block with slot: 7751 +2024-09-30T08:46:14.027638Z INFO fork_choice_control::block_processor: Validating block with slot: 7752 +2024-09-30T08:46:14.027940Z INFO fork_choice_control::block_processor: Validating block with slot: 7753 +2024-09-30T08:46:14.028866Z INFO fork_choice_control::block_processor: Validating block with slot: 7754 +2024-09-30T08:46:14.029036Z INFO fork_choice_control::block_processor: Validating block with slot: 7755 +2024-09-30T08:46:14.029183Z INFO fork_choice_control::block_processor: Validating block with slot: 7756 +2024-09-30T08:46:14.029787Z INFO fork_choice_control::block_processor: Validating block with slot: 7757 +2024-09-30T08:46:14.030107Z INFO fork_choice_control::block_processor: Validating block with slot: 7759 +2024-09-30T08:46:14.030271Z INFO fork_choice_control::block_processor: Validating block with slot: 7760 +2024-09-30T08:46:14.030273Z INFO fork_choice_control::block_processor: Validating block with slot: 7761 +2024-09-30T08:46:14.030303Z INFO fork_choice_control::block_processor: Validating block with slot: 7762 +2024-09-30T08:46:14.030614Z INFO fork_choice_control::block_processor: Validating block with slot: 7758 +2024-09-30T08:46:14.030896Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7206 +2024-09-30T08:46:14.030923Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7206 +2024-09-30T08:46:14.031147Z INFO fork_choice_control::block_processor: Validating block with slot: 7763 +2024-09-30T08:46:14.031330Z INFO fork_choice_control::block_processor: Validating block with slot: 7764 +2024-09-30T08:46:14.031447Z INFO fork_choice_control::block_processor: Validating block with slot: 7765 +2024-09-30T08:46:14.031452Z INFO fork_choice_control::block_processor: Validating block with slot: 7849 +2024-09-30T08:46:14.032460Z INFO fork_choice_control::block_processor: Validating block with slot: 7850 +2024-09-30T08:46:14.032606Z INFO fork_choice_control::block_processor: Validating block with slot: 7851 +2024-09-30T08:46:14.032765Z INFO fork_choice_control::block_processor: Validating block with slot: 7852 +2024-09-30T08:46:14.033474Z INFO fork_choice_control::block_processor: Validating block with slot: 7853 +2024-09-30T08:46:14.034003Z INFO fork_choice_control::block_processor: Validating block with slot: 7854 +2024-09-30T08:46:14.034060Z INFO fork_choice_control::block_processor: Validating block with slot: 7855 +2024-09-30T08:46:14.034392Z INFO fork_choice_control::block_processor: Validating block with slot: 7856 +2024-09-30T08:46:14.034933Z INFO fork_choice_control::block_processor: Validating block with slot: 7857 +2024-09-30T08:46:14.035017Z INFO fork_choice_control::block_processor: Validating block with slot: 7858 +2024-09-30T08:46:14.035073Z INFO fork_choice_control::block_processor: Validating block with slot: 7859 +2024-09-30T08:46:14.035530Z INFO fork_choice_control::block_processor: Validating block with slot: 7860 +2024-09-30T08:46:14.036076Z INFO fork_choice_control::block_processor: Validating block with slot: 7861 +2024-09-30T08:46:14.036460Z INFO fork_choice_control::block_processor: Validating block with slot: 7766 +2024-09-30T08:46:14.036793Z INFO fork_choice_control::block_processor: Validating block with slot: 7767 +2024-09-30T08:46:14.037049Z INFO fork_choice_control::block_processor: Validating block with slot: 7768 +2024-09-30T08:46:14.037157Z INFO fork_choice_control::block_processor: Validating block with slot: 7769 +2024-09-30T08:46:14.038020Z INFO fork_choice_control::block_processor: Validating block with slot: 7770 +2024-09-30T08:46:14.038194Z INFO fork_choice_control::block_processor: Validating block with slot: 7772 +2024-09-30T08:46:14.038454Z INFO fork_choice_control::block_processor: Validating block with slot: 7773 +2024-09-30T08:46:14.039054Z INFO fork_choice_control::block_processor: Validating block with slot: 7774 +2024-09-30T08:46:14.039423Z INFO fork_choice_control::block_processor: Validating block with slot: 7775 +2024-09-30T08:46:14.039693Z INFO fork_choice_control::block_processor: Validating block with slot: 7776 +2024-09-30T08:46:14.040294Z INFO fork_choice_control::block_processor: Validating block with slot: 7777 +2024-09-30T08:46:14.040410Z INFO fork_choice_control::block_processor: Validating block with slot: 7778 +2024-09-30T08:46:14.040939Z INFO fork_choice_control::block_processor: Validating block with slot: 7779 +2024-09-30T08:46:14.041481Z INFO fork_choice_control::block_processor: Validating block with slot: 7780 +2024-09-30T08:46:14.041649Z INFO fork_choice_control::block_processor: Validating block with slot: 7781 +2024-09-30T08:46:14.042499Z INFO fork_choice_control::block_processor: Validating block with slot: 7782 +2024-09-30T08:46:14.042504Z INFO fork_choice_control::block_processor: Validating block with slot: 7783 +2024-09-30T08:46:14.043037Z INFO fork_choice_control::block_processor: Validating block with slot: 7784 +2024-09-30T08:46:14.057379Z INFO fork_choice_control::block_processor: Validating block with slot: 7207 +2024-09-30T08:46:14.059135Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xddb2509c43de396238c01cf283cda8f772c79330d710d62a31779a146be40ac5, slot: 7207 +2024-09-30T08:46:14.069184Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7207 +2024-09-30T08:46:14.069200Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7207 +2024-09-30T08:46:14.083698Z INFO fork_choice_control::block_processor: Validating block with slot: 7208 +2024-09-30T08:46:14.085281Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x92bdb7f9b885458be572d31aa6595e53cfd4a8602fa3d15a7dce13333c10eb09, slot: 7208 +2024-09-30T08:46:14.095618Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7208 +2024-09-30T08:46:14.095636Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7208 +2024-09-30T08:46:14.110521Z INFO fork_choice_control::block_processor: Validating block with slot: 7209 +2024-09-30T08:46:14.111620Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7c97bcfd2e6330031b170dd45cb541ff8f0338b456469d52695037d5e70af110, slot: 7209 +2024-09-30T08:46:14.118508Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7209 +2024-09-30T08:46:14.118525Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7209 +2024-09-30T08:46:14.125556Z INFO fork_choice_control::block_processor: Validating block with slot: 7862 +2024-09-30T08:46:14.125613Z INFO fork_choice_control::block_processor: Validating block with slot: 7863 +2024-09-30T08:46:14.125698Z INFO fork_choice_control::block_processor: Validating block with slot: 7864 +2024-09-30T08:46:14.125707Z INFO fork_choice_control::block_processor: Validating block with slot: 7865 +2024-09-30T08:46:14.125724Z INFO fork_choice_control::block_processor: Validating block with slot: 7866 +2024-09-30T08:46:14.125728Z INFO fork_choice_control::block_processor: Validating block with slot: 7867 +2024-09-30T08:46:14.125808Z INFO fork_choice_control::block_processor: Validating block with slot: 7868 +2024-09-30T08:46:14.126611Z INFO fork_choice_control::block_processor: Validating block with slot: 7870 +2024-09-30T08:46:14.126723Z INFO fork_choice_control::block_processor: Validating block with slot: 7871 +2024-09-30T08:46:14.127133Z INFO fork_choice_control::block_processor: Validating block with slot: 7872 +2024-09-30T08:46:14.127738Z INFO fork_choice_control::block_processor: Validating block with slot: 7873 +2024-09-30T08:46:14.128536Z INFO fork_choice_control::block_processor: Validating block with slot: 7874 +2024-09-30T08:46:14.128753Z INFO fork_choice_control::block_processor: Validating block with slot: 7875 +2024-09-30T08:46:14.130155Z INFO fork_choice_control::block_processor: Validating block with slot: 7876 +2024-09-30T08:46:14.130196Z INFO fork_choice_control::block_processor: Validating block with slot: 7878 +2024-09-30T08:46:14.131078Z INFO fork_choice_control::block_processor: Validating block with slot: 7879 +2024-09-30T08:46:14.131187Z INFO fork_choice_control::block_processor: Validating block with slot: 7877 +2024-09-30T08:46:14.131344Z INFO fork_choice_control::block_processor: Validating block with slot: 7880 +2024-09-30T08:46:14.131603Z INFO fork_choice_control::block_processor: Validating block with slot: 7881 +2024-09-30T08:46:14.132593Z INFO fork_choice_control::block_processor: Validating block with slot: 7882 +2024-09-30T08:46:14.132683Z INFO fork_choice_control::block_processor: Validating block with slot: 7883 +2024-09-30T08:46:14.133122Z INFO fork_choice_control::block_processor: Validating block with slot: 7884 +2024-09-30T08:46:14.133640Z INFO fork_choice_control::block_processor: Validating block with slot: 7885 +2024-09-30T08:46:14.133832Z INFO fork_choice_control::block_processor: Validating block with slot: 7888 +2024-09-30T08:46:14.134037Z INFO fork_choice_control::block_processor: Validating block with slot: 7889 +2024-09-30T08:46:14.134083Z INFO fork_choice_control::block_processor: Validating block with slot: 7890 +2024-09-30T08:46:14.134116Z INFO fork_choice_control::block_processor: Validating block with slot: 7886 +2024-09-30T08:46:14.134531Z INFO fork_choice_control::block_processor: Validating block with slot: 7887 +2024-09-30T08:46:14.135123Z INFO fork_choice_control::block_processor: Validating block with slot: 7891 +2024-09-30T08:46:14.135320Z INFO fork_choice_control::block_processor: Validating block with slot: 7892 +2024-09-30T08:46:14.135388Z INFO fork_choice_control::block_processor: Validating block with slot: 7893 +2024-09-30T08:46:14.135480Z INFO fork_choice_control::block_processor: Validating block with slot: 7894 +2024-09-30T08:46:14.136093Z INFO fork_choice_control::block_processor: Validating block with slot: 7895 +2024-09-30T08:46:14.136205Z INFO fork_choice_control::block_processor: Validating block with slot: 7896 +2024-09-30T08:46:14.137285Z INFO fork_choice_control::block_processor: Validating block with slot: 7897 +2024-09-30T08:46:14.138081Z INFO fork_choice_control::block_processor: Validating block with slot: 7898 +2024-09-30T08:46:14.138145Z INFO fork_choice_control::block_processor: Validating block with slot: 7899 +2024-09-30T08:46:14.138248Z INFO fork_choice_control::block_processor: Validating block with slot: 7902 +2024-09-30T08:46:14.138498Z INFO fork_choice_control::block_processor: Validating block with slot: 7903 +2024-09-30T08:46:14.138855Z INFO fork_choice_control::block_processor: Validating block with slot: 7900 +2024-09-30T08:46:14.139042Z INFO fork_choice_control::block_processor: Validating block with slot: 7904 +2024-09-30T08:46:14.139170Z INFO fork_choice_control::block_processor: Validating block with slot: 7905 +2024-09-30T08:46:14.139646Z INFO fork_choice_control::block_processor: Validating block with slot: 7906 +2024-09-30T08:46:14.139896Z INFO fork_choice_control::block_processor: Validating block with slot: 7907 +2024-09-30T08:46:14.140127Z INFO fork_choice_control::block_processor: Validating block with slot: 7908 +2024-09-30T08:46:14.140251Z INFO fork_choice_control::block_processor: Validating block with slot: 7909 +2024-09-30T08:46:14.141785Z INFO fork_choice_control::block_processor: Validating block with slot: 7910 +2024-09-30T08:46:14.142253Z INFO fork_choice_control::block_processor: Validating block with slot: 7210 +2024-09-30T08:46:14.142556Z INFO fork_choice_control::block_processor: Validating block with slot: 7901 +2024-09-30T08:46:14.142842Z INFO fork_choice_control::block_processor: Validating block with slot: 7911 +2024-09-30T08:46:14.144130Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x70a4ca34ba18b63981acbd02d8d3403f7afc6da81f847a5857783f8bfa32d9e0, slot: 7210 +2024-09-30T08:46:14.150722Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7210 +2024-09-30T08:46:14.150740Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7210 +2024-09-30T08:46:14.165344Z INFO fork_choice_control::block_processor: Validating block with slot: 7211 +2024-09-30T08:46:14.167482Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x90a919567885fdcc3ca00f9df2139e355a97ba314d1d72ee0da2b738a819d405, slot: 7211 +2024-09-30T08:46:14.175940Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7211 +2024-09-30T08:46:14.175962Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7211 +2024-09-30T08:46:14.181262Z INFO fork_choice_control::block_processor: Validating block with slot: 7912 +2024-09-30T08:46:14.190916Z INFO fork_choice_control::block_processor: Validating block with slot: 7212 +2024-09-30T08:46:14.192531Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x897f4ae0a8755f7e5a22624a3d06e68276f7321b9e76fb329f23a7f7021e09fe, slot: 7212 +2024-09-30T08:46:14.199487Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7212 +2024-09-30T08:46:14.199500Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7212 +2024-09-30T08:46:14.213280Z INFO fork_choice_control::block_processor: Validating block with slot: 7213 +2024-09-30T08:46:14.214677Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb40277a2b03165a924426364674d12eda92dd90ce5bf37b56d2de8ca2f8f3b13, slot: 7213 +2024-09-30T08:46:14.221513Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7213 +2024-09-30T08:46:14.221534Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7213 +2024-09-30T08:46:14.236175Z INFO fork_choice_control::block_processor: Validating block with slot: 7214 +2024-09-30T08:46:14.237545Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x20ce0c9ca733081d5fcf7f9db262c9a607f5da9d0fb12fe6cd3301b7e14f9a59, slot: 7214 +2024-09-30T08:46:14.244051Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7214 +2024-09-30T08:46:14.244069Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7214 +2024-09-30T08:46:14.258457Z INFO fork_choice_control::block_processor: Validating block with slot: 7215 +2024-09-30T08:46:14.260020Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3f6ec2d9f5ddc74d2a96efc986fe834ee21a74f114097b7e644b26da7ef1c3da, slot: 7215 +2024-09-30T08:46:14.267095Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7215 +2024-09-30T08:46:14.267111Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7215 +2024-09-30T08:46:14.281148Z INFO fork_choice_control::block_processor: Validating block with slot: 7216 +2024-09-30T08:46:14.282380Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf9ddb3085026acb7510e64b4244cc3b4d17eddb1e035afe46c78f75c3a428fd3, slot: 7216 +2024-09-30T08:46:14.288752Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7216 +2024-09-30T08:46:14.288783Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7216 +2024-09-30T08:46:14.303024Z INFO fork_choice_control::block_processor: Validating block with slot: 7217 +2024-09-30T08:46:14.304100Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x44a08c0f90bfee405e6e60be152c9f4433a89bf0c0818a4e17d8e6752cd00c23, slot: 7217 +2024-09-30T08:46:14.309894Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7217 +2024-09-30T08:46:14.309916Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7217 +2024-09-30T08:46:14.324712Z INFO fork_choice_control::block_processor: Validating block with slot: 7218 +2024-09-30T08:46:14.325771Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe45e5f1e6232c7ea5a887e3efcc15b5e0ce78b66e949b08b6c5f381ae367d6a5, slot: 7218 +2024-09-30T08:46:14.331784Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7218 +2024-09-30T08:46:14.331800Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7218 +2024-09-30T08:46:14.346828Z INFO fork_choice_control::block_processor: Validating block with slot: 7219 +2024-09-30T08:46:14.353386Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x437e67c569d7a15f55647d5d5ea3a6e07a98244af03fc31af28fab2c8cd14bb8, slot: 7219 +2024-09-30T08:46:14.396039Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7219 +2024-09-30T08:46:14.396059Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7219 +2024-09-30T08:46:14.410864Z INFO fork_choice_control::block_processor: Validating block with slot: 7220 +2024-09-30T08:46:14.417507Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4e76d2eb709e7ae1347042aa8103a632b5302220eb1c1634f041bed93cc2a7b9, slot: 7220 +2024-09-30T08:46:14.436469Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7220 +2024-09-30T08:46:14.436490Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7220 +2024-09-30T08:46:14.451361Z INFO fork_choice_control::block_processor: Validating block with slot: 7221 +2024-09-30T08:46:14.459371Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x16347efe2ed41ed9cd8a97030043c7ad9877cae28a3fd42d77548b1adf9c229d, slot: 7221 +2024-09-30T08:46:14.482103Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7221 +2024-09-30T08:46:14.482123Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7221 +2024-09-30T08:46:14.498408Z INFO fork_choice_control::block_processor: Validating block with slot: 7222 +2024-09-30T08:46:14.504989Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdbc8817fb7aa375b17f5ecf2bb03747be5dec61b26081ae2392fbb825a0265ce, slot: 7222 +2024-09-30T08:46:14.524151Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7222 +2024-09-30T08:46:14.524173Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7222 +2024-09-30T08:46:14.540394Z INFO fork_choice_control::block_processor: Validating block with slot: 7223 +2024-09-30T08:46:14.547063Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9c63dfd84722fc183585069cc6099d8704e16b8f3621d555aea9b46a16075988, slot: 7223 +2024-09-30T08:46:14.568098Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7223 +2024-09-30T08:46:14.568119Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7223 +2024-09-30T08:46:14.590797Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 224, root: 0xd201c8a470174b5899bc901fd671ca1ade4548cd4f5d1c1604d40e42b67c6431, head slot: 7223, head root: 0x9c63dfd84722fc183585069cc6099d8704e16b8f3621d555aea9b46a16075988) +2024-09-30T08:46:14.590839Z INFO fork_choice_control::block_processor: Validating block with slot: 7224 +2024-09-30T08:46:14.597363Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8010458171f45aa306bc6c5cc348e2a0f69878307f95e150bd86e41311818a75, slot: 7224 +2024-09-30T08:46:14.618116Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7224 +2024-09-30T08:46:14.618135Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7224 +2024-09-30T08:46:14.634472Z INFO fork_choice_control::block_processor: Validating block with slot: 7225 +2024-09-30T08:46:14.641106Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2ab57095e48ae4f22076c88f551d03002edc30918ef08eaea26fb13575e1bed7, slot: 7225 +2024-09-30T08:46:14.677380Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7225 +2024-09-30T08:46:14.677403Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7225 +2024-09-30T08:46:14.696569Z INFO fork_choice_control::block_processor: Validating block with slot: 7226 +2024-09-30T08:46:14.703906Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9836ffa7d79e2c4274d6c25d1c2501cfa8ae9e12806d08a3e53490264c3d73b1, slot: 7226 +2024-09-30T08:46:14.726166Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7226 +2024-09-30T08:46:14.726186Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7226 +2024-09-30T08:46:14.731438Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 7168 +2024-09-30T08:46:14.744882Z INFO fork_choice_control::block_processor: Validating block with slot: 7227 +2024-09-30T08:46:14.753295Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x65239a66cc8c4ee70712dab5307a880e3a4775d71cd68866ef085ad35fdec54e, slot: 7227 +2024-09-30T08:46:14.776853Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7227 +2024-09-30T08:46:14.776877Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7227 +2024-09-30T08:46:14.789856Z INFO fork_choice_control::storage: saving state in slot 7168 +2024-09-30T08:46:14.795911Z INFO fork_choice_control::block_processor: Validating block with slot: 7228 +2024-09-30T08:46:14.803264Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa73a3c3d48756c163f3fcdce626f88d87618f49c9ad86f25b1d208d035455121, slot: 7228 +2024-09-30T08:46:14.823365Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7228 +2024-09-30T08:46:14.823387Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7228 +2024-09-30T08:46:14.842844Z INFO fork_choice_control::block_processor: Validating block with slot: 7229 +2024-09-30T08:46:14.850218Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9bd9e296e73a321e90ce98384c37f273986f1b75f07c18b0768972c3fd2f31e9, slot: 7229 +2024-09-30T08:46:14.872247Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7229 +2024-09-30T08:46:14.872267Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7229 +2024-09-30T08:46:14.892252Z INFO fork_choice_control::block_processor: Validating block with slot: 7231 +2024-09-30T08:46:14.901439Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9699f35f03b22ec6d7580e9e0c172c8e3bbfa701c2e17ae919dc5d0989ded989, slot: 7231 +2024-09-30T08:46:14.929034Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7231 +2024-09-30T08:46:14.929056Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7231 +2024-09-30T08:46:14.949381Z INFO fork_choice_control::block_processor: Validating block with slot: 7232 +2024-09-30T08:46:14.957581Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x69cf05e9a75fa4be776f53f8cbb307caf6154e36d889759d6e43754f235f4967, slot: 7232 +2024-09-30T08:46:15.097213Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7232 +2024-09-30T08:46:15.097240Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7232 +2024-09-30T08:46:15.108692Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7232) +2024-09-30T08:46:15.108879Z INFO fork_choice_control::block_processor: Validating block with slot: 7233 +2024-09-30T08:46:15.116973Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4a9706cb9224fc10b3371a290fc00eda6f11d628ba3c2f50bafd8ed965919579, slot: 7233 +2024-09-30T08:46:15.211095Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7233 +2024-09-30T08:46:15.211119Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7233 +2024-09-30T08:46:15.222838Z INFO fork_choice_control::block_processor: Validating block with slot: 7234 +2024-09-30T08:46:15.229669Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe1f460ab1c12052900b1b7ac8e279a12368498b6f8d7b46ffd3ba8653dc34cd7, slot: 7234 +2024-09-30T08:46:15.250307Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7234 +2024-09-30T08:46:15.250329Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7234 +2024-09-30T08:46:15.261641Z INFO fork_choice_control::block_processor: Validating block with slot: 7235 +2024-09-30T08:46:15.269475Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0bef7b570b56304c8085df5ae09030428a97291ec6733819f8c095904e1bfff3, slot: 7235 +2024-09-30T08:46:15.295232Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7235 +2024-09-30T08:46:15.295256Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7235 +2024-09-30T08:46:15.310198Z INFO fork_choice_control::block_processor: Validating block with slot: 7236 +2024-09-30T08:46:15.317534Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9a675e9cdfec81e07979bdaf61009fdda8a02744ad8cf9cd2f09d1f879663efb, slot: 7236 +2024-09-30T08:46:15.341585Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7236 +2024-09-30T08:46:15.341611Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7236 +2024-09-30T08:46:15.358541Z INFO fork_choice_control::block_processor: Validating block with slot: 7238 +2024-09-30T08:46:15.366602Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdbc06f71b19cc80c93ce3867f3d3ccd31fe587124d1874a6cc5ef795848fc955, slot: 7238 +2024-09-30T08:46:15.395396Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7238 +2024-09-30T08:46:15.395419Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7238 +2024-09-30T08:46:15.408954Z INFO fork_choice_control::block_processor: Validating block with slot: 7239 +2024-09-30T08:46:15.416712Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x296df5f33fb625296949981f30e54642dad7b5361beefa3cfcd7f6055697408c, slot: 7239 +2024-09-30T08:46:15.437828Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7239 +2024-09-30T08:46:15.437858Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7239 +2024-09-30T08:46:15.451688Z INFO fork_choice_control::block_processor: Validating block with slot: 7240 +2024-09-30T08:46:15.458728Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x35cf96dfdb9a0fc74f6e04d861f084f264321d443248fb0850b76c93fa97dbb7, slot: 7240 +2024-09-30T08:46:15.479080Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7240 +2024-09-30T08:46:15.479107Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7240 +2024-09-30T08:46:15.493182Z INFO fork_choice_control::block_processor: Validating block with slot: 7241 +2024-09-30T08:46:15.500936Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe9d0389f9490f6c9e418f313099d334c65529a0a834b1b50baec38b038da2b37, slot: 7241 +2024-09-30T08:46:15.523264Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7241 +2024-09-30T08:46:15.523284Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7241 +2024-09-30T08:46:15.536336Z INFO fork_choice_control::block_processor: Validating block with slot: 7242 +2024-09-30T08:46:15.542799Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x65e6826bc6f394d95035ddf9fad8fd7feb0203ab513ee53bea782f7dfc8d4c2a, slot: 7242 +2024-09-30T08:46:15.561125Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7242 +2024-09-30T08:46:15.561148Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7242 +2024-09-30T08:46:15.574643Z INFO fork_choice_control::block_processor: Validating block with slot: 7243 +2024-09-30T08:46:15.582135Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeb7efcf675ae7027892b27eeaf3a979ca99b2f48cc4fb6151c8610e3cc6f99d8, slot: 7243 +2024-09-30T08:46:15.604112Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7243 +2024-09-30T08:46:15.604134Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7243 +2024-09-30T08:46:15.617091Z INFO fork_choice_control::block_processor: Validating block with slot: 7244 +2024-09-30T08:46:15.623476Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x64e8a8348395aaa92df714b99b4ddcaa884f5eb60065d9937f637ec6c268a0b3, slot: 7244 +2024-09-30T08:46:15.640951Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7244 +2024-09-30T08:46:15.640974Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7244 +2024-09-30T08:46:15.654687Z INFO fork_choice_control::block_processor: Validating block with slot: 7245 +2024-09-30T08:46:15.661252Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5e9094bb167a31b455eba8c23adbeb224cd414cd18ab8e08903fe750fa625794, slot: 7245 +2024-09-30T08:46:15.680449Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7245 +2024-09-30T08:46:15.680471Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7245 +2024-09-30T08:46:15.694715Z INFO fork_choice_control::block_processor: Validating block with slot: 7246 +2024-09-30T08:46:15.701364Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd682ad94e67e82f00017c1fbf589d30a13a9e90da7bcbb5080e64a1a95d4b8c1, slot: 7246 +2024-09-30T08:46:15.718855Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7246 +2024-09-30T08:46:15.718876Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7246 +2024-09-30T08:46:15.733026Z INFO fork_choice_control::block_processor: Validating block with slot: 7247 +2024-09-30T08:46:15.741539Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa5c72f501a39db7c78cc4859be584fadbf6527e25b456a2f6a280adb68c7efb9, slot: 7247 +2024-09-30T08:46:15.764576Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7247 +2024-09-30T08:46:15.764599Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7247 +2024-09-30T08:46:15.778779Z INFO fork_choice_control::block_processor: Validating block with slot: 7248 +2024-09-30T08:46:15.785004Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc61de917890e51e7de4ca84947b65a528f72d5de86440f787a7099fea6affdd9, slot: 7248 +2024-09-30T08:46:15.803471Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7248 +2024-09-30T08:46:15.803491Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7248 +2024-09-30T08:46:15.818470Z INFO fork_choice_control::block_processor: Validating block with slot: 7249 +2024-09-30T08:46:15.824962Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe75444261dac1be20896dfeaad0e59288ad4515c741bc975d7c11b28d21d33ea, slot: 7249 +2024-09-30T08:46:15.844588Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7249 +2024-09-30T08:46:15.844608Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7249 +2024-09-30T08:46:15.860764Z INFO fork_choice_control::block_processor: Validating block with slot: 7250 +2024-09-30T08:46:15.867106Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x03bbf9fc76f914e088eb64b59f4439bb279a0393c212e0c32cff5f681dd090b9, slot: 7250 +2024-09-30T08:46:15.884948Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7250 +2024-09-30T08:46:15.884968Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7250 +2024-09-30T08:46:15.900488Z INFO fork_choice_control::block_processor: Validating block with slot: 7251 +2024-09-30T08:46:15.907198Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6bf04d67045966360995a9e396814badcf2fa6911a747b9aaaf9c19c148a97f0, slot: 7251 +2024-09-30T08:46:15.926564Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7251 +2024-09-30T08:46:15.926585Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7251 +2024-09-30T08:46:15.943319Z INFO fork_choice_control::block_processor: Validating block with slot: 7252 +2024-09-30T08:46:15.950906Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf2b7db49d633ec294ba167fc8fb4d28018c3a4fb74126233935f36864f287892, slot: 7252 +2024-09-30T08:46:15.971160Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7252 +2024-09-30T08:46:15.971183Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7252 +2024-09-30T08:46:15.986022Z INFO fork_choice_control::block_processor: Validating block with slot: 7253 +2024-09-30T08:46:15.992488Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2c90be35c0e8a24187f27c4bd2d727d7e9dabbb6eb5e4bf80f9e1956645c9e38, slot: 7253 +2024-09-30T08:46:16.010762Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7253 +2024-09-30T08:46:16.010785Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7253 +2024-09-30T08:46:16.026628Z INFO fork_choice_control::block_processor: Validating block with slot: 7254 +2024-09-30T08:46:16.033531Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb27aea69b488379a60aaac2aadfe5677713eadb3bd95678d342e05b146a55492, slot: 7254 +2024-09-30T08:46:16.053288Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7254 +2024-09-30T08:46:16.053308Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7254 +2024-09-30T08:46:16.069968Z INFO fork_choice_control::block_processor: Validating block with slot: 7255 +2024-09-30T08:46:16.076509Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x86a5db283b1454d7a4f0e6be7bd265e0a7e3eebc85374f4b652d5206021cb16e, slot: 7255 +2024-09-30T08:46:16.095313Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7255 +2024-09-30T08:46:16.095333Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7255 +2024-09-30T08:46:16.116482Z INFO fork_choice_control::block_processor: Validating block with slot: 7256 +2024-09-30T08:46:16.116488Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 225, root: 0x8fc44f186d592e97eacd6dd4285b180d363785056775903ce39641df9b177d8b, head slot: 7255, head root: 0x86a5db283b1454d7a4f0e6be7bd265e0a7e3eebc85374f4b652d5206021cb16e) +2024-09-30T08:46:16.124058Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfd962c80de92a2a08fd70d47aebbef8119d6f87ff58cf2f2a3f0f1e44531c27e, slot: 7256 +2024-09-30T08:46:16.147815Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7256 +2024-09-30T08:46:16.147838Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7256 +2024-09-30T08:46:16.165492Z INFO fork_choice_control::block_processor: Validating block with slot: 7257 +2024-09-30T08:46:16.172436Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf694db89854c47728b298aa917103670a54e2256e16d7df602ea4e7df772436b, slot: 7257 +2024-09-30T08:46:16.192966Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7257 +2024-09-30T08:46:16.192989Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7257 +2024-09-30T08:46:16.211286Z INFO fork_choice_control::block_processor: Validating block with slot: 7258 +2024-09-30T08:46:16.218353Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2b4be9e4ef59a3e5ff97f07a509a43ed8a350f874cda217e4cceebf7de771fd4, slot: 7258 +2024-09-30T08:46:16.238736Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7258 +2024-09-30T08:46:16.238761Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7258 +2024-09-30T08:46:16.254095Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 7200 +2024-09-30T08:46:16.257865Z INFO fork_choice_control::block_processor: Validating block with slot: 7259 +2024-09-30T08:46:16.265009Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2f6f85645c4f13e2fc79fb64ad4b08507145d83993793ed0ce89ceb69164be37, slot: 7259 +2024-09-30T08:46:16.285432Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7259 +2024-09-30T08:46:16.285452Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7259 +2024-09-30T08:46:16.304315Z INFO fork_choice_control::block_processor: Validating block with slot: 7260 +2024-09-30T08:46:16.310108Z INFO fork_choice_control::storage: saving state in slot 7168 +2024-09-30T08:46:16.311630Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5429372c44802994fba50adc153b125fa57760b38f999f5be4ad71a835daf9ff, slot: 7260 +2024-09-30T08:46:16.334254Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7260 +2024-09-30T08:46:16.334274Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7260 +2024-09-30T08:46:16.354075Z INFO fork_choice_control::block_processor: Validating block with slot: 7261 +2024-09-30T08:46:16.361852Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcd05666a2e4cf0a78a97e0c65525fc00965a9fd6ef1e361ff570f5776e49420e, slot: 7261 +2024-09-30T08:46:16.388338Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7261 +2024-09-30T08:46:16.388360Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7261 +2024-09-30T08:46:16.408126Z INFO fork_choice_control::block_processor: Validating block with slot: 7262 +2024-09-30T08:46:16.415346Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf5531afe344a9ff3eef23a4b9fb3963f763f14efb72c48b162ce0347088ef4f8, slot: 7262 +2024-09-30T08:46:16.436480Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7262 +2024-09-30T08:46:16.436503Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7262 +2024-09-30T08:46:16.456261Z INFO fork_choice_control::block_processor: Validating block with slot: 7263 +2024-09-30T08:46:16.463873Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x34840858076eb1285f88009179af46bbfbfc9f489f4337c0edc8cf75a7527e1e, slot: 7263 +2024-09-30T08:46:16.485402Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7263 +2024-09-30T08:46:16.485421Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7263 +2024-09-30T08:46:16.508129Z INFO fork_choice_control::block_processor: Validating block with slot: 7264 +2024-09-30T08:46:16.515518Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x297b972e8bef34e7bc94bce089ba0ee83b901608752054f02e49cfe6d527f1c5, slot: 7264 +2024-09-30T08:46:16.593982Z WARN discv5::service: FINDNODE request failed with partial results node_id=0x2e26..153d addr=198.200.84.45:9010 error=Timeout received=6 expected=3 +2024-09-30T08:46:16.690023Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7264 +2024-09-30T08:46:16.690053Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7264 +2024-09-30T08:46:16.701321Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7264) +2024-09-30T08:46:16.701436Z INFO fork_choice_control::block_processor: Validating block with slot: 7265 +2024-09-30T08:46:16.709605Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xea282e53da46eaa30786bead3b0da49d779bbef211bb3fcc01e66f7860588edf, slot: 7265 +2024-09-30T08:46:16.801426Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7265 +2024-09-30T08:46:16.801449Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7265 +2024-09-30T08:46:16.813198Z INFO fork_choice_control::block_processor: Validating block with slot: 7266 +2024-09-30T08:46:16.820439Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x527392887d8299a6b83b3f9dd694fd810b09952a724704250e0a41e6b5f812d4, slot: 7266 +2024-09-30T08:46:16.842223Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7266 +2024-09-30T08:46:16.842248Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7266 +2024-09-30T08:46:16.854273Z INFO fork_choice_control::block_processor: Validating block with slot: 7267 +2024-09-30T08:46:16.861664Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x52e8de842d079c341212b1fd533d1b8ea78f837dd4c07bea1a8d5c8496a86166, slot: 7267 +2024-09-30T08:46:16.883364Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7267 +2024-09-30T08:46:16.883387Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7267 +2024-09-30T08:46:16.895927Z INFO fork_choice_control::block_processor: Validating block with slot: 7268 +2024-09-30T08:46:16.902521Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0a505766be0e331f5ead94f5c6e554d3a04a174446d6f3f6eb305a85af117d88, slot: 7268 +2024-09-30T08:46:16.923445Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7268 +2024-09-30T08:46:16.923470Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7268 +2024-09-30T08:46:16.936392Z INFO fork_choice_control::block_processor: Validating block with slot: 7269 +2024-09-30T08:46:16.946827Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb630963680186ae7db519466dd29d290097f2630a7a22c0af7570a2cf7502465, slot: 7269 +2024-09-30T08:46:16.978221Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7269 +2024-09-30T08:46:16.978243Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7269 +2024-09-30T08:46:16.991377Z INFO fork_choice_control::block_processor: Validating block with slot: 7270 +2024-09-30T08:46:16.996548Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc7943b890e0ee93bbff043322e09818e5689b83bbf968e7ae7c8a3bf71c5e710, slot: 7270 +2024-09-30T08:46:17.008201Z INFO fork_choice_control::block_processor: Validating block with slot: 8041 +2024-09-30T08:46:17.008995Z INFO fork_choice_control::block_processor: Validating block with slot: 8042 +2024-09-30T08:46:17.009140Z INFO fork_choice_control::block_processor: Validating block with slot: 8043 +2024-09-30T08:46:17.016182Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7270 +2024-09-30T08:46:17.016199Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7270 +2024-09-30T08:46:17.016675Z INFO fork_choice_control::block_processor: Validating block with slot: 8044 +2024-09-30T08:46:17.016692Z INFO fork_choice_control::block_processor: Validating block with slot: 8045 +2024-09-30T08:46:17.016696Z INFO fork_choice_control::block_processor: Validating block with slot: 8046 +2024-09-30T08:46:17.016783Z INFO fork_choice_control::block_processor: Validating block with slot: 8047 +2024-09-30T08:46:17.016887Z INFO fork_choice_control::block_processor: Validating block with slot: 8048 +2024-09-30T08:46:17.029410Z INFO fork_choice_control::block_processor: Validating block with slot: 7271 +2024-09-30T08:46:17.030496Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6f7645ea82f89352f8232bef9b774fff19deb93496cafa2c3290fa4a6e965ffa, slot: 7271 +2024-09-30T08:46:17.036427Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7271 +2024-09-30T08:46:17.036441Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7271 +2024-09-30T08:46:17.049039Z INFO fork_choice_control::block_processor: Validating block with slot: 7272 +2024-09-30T08:46:17.050836Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4c3bb6c6d51c9ad7d5a01b69ad207aa65353308380f5e4f52047dc2a7d0e4714, slot: 7272 +2024-09-30T08:46:17.059348Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7272 +2024-09-30T08:46:17.059368Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7272 +2024-09-30T08:46:17.072881Z INFO fork_choice_control::block_processor: Validating block with slot: 7273 +2024-09-30T08:46:17.074091Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xde09552a95bc6ec9e981a092c2c5dcf130b92ae35b85a5134d3d179d8a173113, slot: 7273 +2024-09-30T08:46:17.080854Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7273 +2024-09-30T08:46:17.080870Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7273 +2024-09-30T08:46:17.095476Z INFO fork_choice_control::block_processor: Validating block with slot: 7274 +2024-09-30T08:46:17.097124Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7b0c327424f4204850ad929d65b5682516a52f9ecf210f91c986e32fd59fd8d5, slot: 7274 +2024-09-30T08:46:17.104873Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7274 +2024-09-30T08:46:17.104892Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7274 +2024-09-30T08:46:17.119143Z INFO fork_choice_control::block_processor: Validating block with slot: 7275 +2024-09-30T08:46:17.121589Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5f54bb307b698f4b25aeb61a024bc2b9e5271a6abaea0f74eac9a8e2c8f40930, slot: 7275 +2024-09-30T08:46:17.130472Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7275 +2024-09-30T08:46:17.130491Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7275 +2024-09-30T08:46:17.145122Z INFO fork_choice_control::block_processor: Validating block with slot: 7276 +2024-09-30T08:46:17.146191Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbf253ef899fde970ee06b0564d4597e9683ef10e9557cb04a2bf35ae943f682c, slot: 7276 +2024-09-30T08:46:17.152708Z INFO fork_choice_control::block_processor: Validating block with slot: 8049 +2024-09-30T08:46:17.152735Z INFO fork_choice_control::block_processor: Validating block with slot: 8051 +2024-09-30T08:46:17.152731Z INFO fork_choice_control::block_processor: Validating block with slot: 8050 +2024-09-30T08:46:17.153716Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7276 +2024-09-30T08:46:17.153735Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7276 +2024-09-30T08:46:17.168861Z INFO fork_choice_control::block_processor: Validating block with slot: 7277 +2024-09-30T08:46:17.169960Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaf50792423bf76540f63e5fff18f812f09c2d49a379a877091863f2e515d4018, slot: 7277 +2024-09-30T08:46:17.178148Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7277 +2024-09-30T08:46:17.178203Z INFO fork_choice_control::block_processor: Validating block with slot: 8052 +2024-09-30T08:46:17.178216Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7277 +2024-09-30T08:46:17.178224Z INFO fork_choice_control::block_processor: Validating block with slot: 8053 +2024-09-30T08:46:17.178328Z INFO fork_choice_control::block_processor: Validating block with slot: 8054 +2024-09-30T08:46:17.178404Z INFO fork_choice_control::block_processor: Validating block with slot: 8055 +2024-09-30T08:46:17.178846Z INFO fork_choice_control::block_processor: Validating block with slot: 8056 +2024-09-30T08:46:17.179952Z INFO fork_choice_control::block_processor: Validating block with slot: 8057 +2024-09-30T08:46:17.180466Z INFO fork_choice_control::block_processor: Validating block with slot: 8059 +2024-09-30T08:46:17.181095Z INFO fork_choice_control::block_processor: Validating block with slot: 8060 +2024-09-30T08:46:17.181368Z INFO fork_choice_control::block_processor: Validating block with slot: 8061 +2024-09-30T08:46:17.185025Z INFO fork_choice_control::block_processor: Validating block with slot: 8062 +2024-09-30T08:46:17.185306Z INFO fork_choice_control::block_processor: Validating block with slot: 8063 +2024-09-30T08:46:17.187774Z INFO fork_choice_control::block_processor: Validating block with slot: 8064 +2024-09-30T08:46:17.188730Z INFO fork_choice_control::block_processor: Validating block with slot: 8065 +2024-09-30T08:46:17.195485Z INFO fork_choice_control::block_processor: Validating block with slot: 7278 +2024-09-30T08:46:17.197329Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6e9b6386f3a94cb6085a9b46b0d31937359ede0f0e1b580a800f13110299ad9e, slot: 7278 +2024-09-30T08:46:17.209476Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7278 +2024-09-30T08:46:17.209501Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7278 +2024-09-30T08:46:17.226314Z INFO fork_choice_control::block_processor: Validating block with slot: 7279 +2024-09-30T08:46:17.227690Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x02ac841c0c47a41ffee0c608388c61653286bc9ba3901f04bf3499827967a271, slot: 7279 +2024-09-30T08:46:17.234298Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7279 +2024-09-30T08:46:17.234313Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7279 +2024-09-30T08:46:17.249390Z INFO fork_choice_control::block_processor: Validating block with slot: 7280 +2024-09-30T08:46:17.251298Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x38be82e91868efb48d2875a3120fa76d0e88fb5edc10fc96a18657c11ca6f18c, slot: 7280 +2024-09-30T08:46:17.260838Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7280 +2024-09-30T08:46:17.260856Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7280 +2024-09-30T08:46:17.276248Z INFO fork_choice_control::block_processor: Validating block with slot: 7282 +2024-09-30T08:46:17.278096Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc4c2371b5c48209626336dea6a17a126996a056b0027d896c6990a9369adc50d, slot: 7282 +2024-09-30T08:46:17.287604Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7282 +2024-09-30T08:46:17.287623Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7282 +2024-09-30T08:46:17.302997Z INFO fork_choice_control::block_processor: Validating block with slot: 7283 +2024-09-30T08:46:17.304743Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x19b84130a3d7de7ecfd1c4f99036a9aac096c604f79999e7e56f472451982aab, slot: 7283 +2024-09-30T08:46:17.312518Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7283 +2024-09-30T08:46:17.312535Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7283 +2024-09-30T08:46:17.313893Z INFO fork_choice_control::block_processor: Validating block with slot: 8066 +2024-09-30T08:46:17.313896Z INFO fork_choice_control::block_processor: Validating block with slot: 8068 +2024-09-30T08:46:17.313919Z INFO fork_choice_control::block_processor: Validating block with slot: 8067 +2024-09-30T08:46:17.313955Z INFO fork_choice_control::block_processor: Validating block with slot: 8069 +2024-09-30T08:46:17.324618Z INFO fork_choice_control::block_processor: Validating block with slot: 8070 +2024-09-30T08:46:17.324639Z INFO fork_choice_control::block_processor: Validating block with slot: 8071 +2024-09-30T08:46:17.324713Z INFO fork_choice_control::block_processor: Validating block with slot: 8072 +2024-09-30T08:46:17.329177Z INFO fork_choice_control::block_processor: Validating block with slot: 7284 +2024-09-30T08:46:17.331041Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3a0a75c8d0b8dd90a66b59e72a7fb8b40238fb0e9a620c8a759739d86d1a518a, slot: 7284 +2024-09-30T08:46:17.340414Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7284 +2024-09-30T08:46:17.340437Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7284 +2024-09-30T08:46:17.358292Z INFO fork_choice_control::block_processor: Validating block with slot: 7285 +2024-09-30T08:46:17.359493Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8817e9c8688848d9326248b3999ded67f6db39de3112e30e909ac363a9b10314, slot: 7285 +2024-09-30T08:46:17.367906Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7285 +2024-09-30T08:46:17.367924Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7285 +2024-09-30T08:46:17.377250Z INFO fork_choice_control::block_processor: Validating block with slot: 8073 +2024-09-30T08:46:17.377255Z INFO fork_choice_control::block_processor: Validating block with slot: 8075 +2024-09-30T08:46:17.377272Z INFO fork_choice_control::block_processor: Validating block with slot: 8074 +2024-09-30T08:46:17.377301Z INFO fork_choice_control::block_processor: Validating block with slot: 8076 +2024-09-30T08:46:17.377863Z INFO fork_choice_control::block_processor: Validating block with slot: 8078 +2024-09-30T08:46:17.377872Z INFO fork_choice_control::block_processor: Validating block with slot: 8077 +2024-09-30T08:46:17.378373Z INFO fork_choice_control::block_processor: Validating block with slot: 8079 +2024-09-30T08:46:17.379011Z INFO fork_choice_control::block_processor: Validating block with slot: 8080 +2024-09-30T08:46:17.379456Z INFO fork_choice_control::block_processor: Validating block with slot: 8081 +2024-09-30T08:46:17.380094Z INFO fork_choice_control::block_processor: Validating block with slot: 8082 +2024-09-30T08:46:17.380770Z INFO fork_choice_control::block_processor: Validating block with slot: 8083 +2024-09-30T08:46:17.380855Z INFO fork_choice_control::block_processor: Validating block with slot: 8084 +2024-09-30T08:46:17.381155Z INFO fork_choice_control::block_processor: Validating block with slot: 8085 +2024-09-30T08:46:17.381428Z INFO fork_choice_control::block_processor: Validating block with slot: 8086 +2024-09-30T08:46:17.381667Z INFO fork_choice_control::block_processor: Validating block with slot: 8087 +2024-09-30T08:46:17.382589Z INFO fork_choice_control::block_processor: Validating block with slot: 8088 +2024-09-30T08:46:17.382748Z INFO fork_choice_control::block_processor: Validating block with slot: 8089 +2024-09-30T08:46:17.383640Z INFO fork_choice_control::block_processor: Validating block with slot: 8090 +2024-09-30T08:46:17.383827Z INFO fork_choice_control::block_processor: Validating block with slot: 8091 +2024-09-30T08:46:17.384016Z INFO fork_choice_control::block_processor: Validating block with slot: 8092 +2024-09-30T08:46:17.384145Z INFO fork_choice_control::block_processor: Validating block with slot: 8093 +2024-09-30T08:46:17.384906Z INFO fork_choice_control::block_processor: Validating block with slot: 8094 +2024-09-30T08:46:17.385577Z INFO fork_choice_control::block_processor: Validating block with slot: 8095 +2024-09-30T08:46:17.386094Z INFO fork_choice_control::block_processor: Validating block with slot: 8096 +2024-09-30T08:46:17.386250Z INFO fork_choice_control::block_processor: Validating block with slot: 8097 +2024-09-30T08:46:17.386301Z INFO fork_choice_control::block_processor: Validating block with slot: 8098 +2024-09-30T08:46:17.386421Z INFO fork_choice_control::block_processor: Validating block with slot: 8099 +2024-09-30T08:46:17.387343Z INFO fork_choice_control::block_processor: Validating block with slot: 8100 +2024-09-30T08:46:17.387404Z INFO fork_choice_control::block_processor: Validating block with slot: 8102 +2024-09-30T08:46:17.387858Z INFO fork_choice_control::block_processor: Validating block with slot: 8103 +2024-09-30T08:46:17.388088Z INFO fork_choice_control::block_processor: Validating block with slot: 7286 +2024-09-30T08:46:17.388191Z INFO fork_choice_control::block_processor: Validating block with slot: 8101 +2024-09-30T08:46:17.390642Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfcb9cfdc2339673e15a554fce188bb973baaa45f5beb5ceecd58ba11700cef81, slot: 7286 +2024-09-30T08:46:17.398274Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7286 +2024-09-30T08:46:17.398302Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7286 +2024-09-30T08:46:17.416608Z INFO fork_choice_control::block_processor: Validating block with slot: 7287 +2024-09-30T08:46:17.418275Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x64f959375fa92e83843e59ba30534ee7c8768c9740757907ec1421b36e9b9cf8, slot: 7287 +2024-09-30T08:46:17.426013Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7287 +2024-09-30T08:46:17.426033Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7287 +2024-09-30T08:46:17.447946Z INFO fork_choice_control::block_processor: Validating block with slot: 7288 +2024-09-30T08:46:17.447992Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 226, root: 0x69cf05e9a75fa4be776f53f8cbb307caf6154e36d889759d6e43754f235f4967, head slot: 7287, head root: 0x64f959375fa92e83843e59ba30534ee7c8768c9740757907ec1421b36e9b9cf8) +2024-09-30T08:46:17.449074Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa25270b095ce81daf78df2af9a632bcddc8fcbd98e80cdb054fe83c0bb77aa7f, slot: 7288 +2024-09-30T08:46:17.456729Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7288 +2024-09-30T08:46:17.456753Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7288 +2024-09-30T08:46:17.475228Z INFO fork_choice_control::block_processor: Validating block with slot: 7289 +2024-09-30T08:46:17.476426Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0be32d018b2403a605aa12b54523f1862afa95a03eaeecf0402ffd96652afe00, slot: 7289 +2024-09-30T08:46:17.483542Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7289 +2024-09-30T08:46:17.483556Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7289 +2024-09-30T08:46:17.493821Z INFO fork_choice_control::block_processor: Validating block with slot: 7979 +2024-09-30T08:46:17.493833Z INFO fork_choice_control::block_processor: Validating block with slot: 7978 +2024-09-30T08:46:17.493846Z INFO fork_choice_control::block_processor: Validating block with slot: 7977 +2024-09-30T08:46:17.493858Z INFO fork_choice_control::block_processor: Validating block with slot: 7980 +2024-09-30T08:46:17.498940Z INFO fork_choice_control::block_processor: Validating block with slot: 7981 +2024-09-30T08:46:17.502941Z INFO fork_choice_control::block_processor: Validating block with slot: 7290 +2024-09-30T08:46:17.503108Z INFO fork_choice_control::block_processor: Validating block with slot: 7982 +2024-09-30T08:46:17.503268Z INFO fork_choice_control::block_processor: Validating block with slot: 7983 +2024-09-30T08:46:17.503341Z INFO fork_choice_control::block_processor: Validating block with slot: 7984 +2024-09-30T08:46:17.504104Z INFO fork_choice_control::block_processor: Validating block with slot: 7985 +2024-09-30T08:46:17.505044Z INFO fork_choice_control::block_processor: Validating block with slot: 7986 +2024-09-30T08:46:17.508476Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf3282779f5836352b184d6449aea0d1d379a207a9041d91937da9e2b123b5254, slot: 7290 +2024-09-30T08:46:17.513753Z INFO fork_choice_control::block_processor: Validating block with slot: 7987 +2024-09-30T08:46:17.514234Z INFO fork_choice_control::block_processor: Validating block with slot: 7988 +2024-09-30T08:46:17.514602Z INFO fork_choice_control::block_processor: Validating block with slot: 7989 +2024-09-30T08:46:17.517055Z INFO fork_choice_control::block_processor: Validating block with slot: 7990 +2024-09-30T08:46:17.517877Z INFO fork_choice_control::block_processor: Validating block with slot: 7991 +2024-09-30T08:46:17.524795Z INFO fork_choice_control::block_processor: Validating block with slot: 7994 +2024-09-30T08:46:17.524859Z INFO fork_choice_control::block_processor: Validating block with slot: 7995 +2024-09-30T08:46:17.524887Z INFO fork_choice_control::block_processor: Validating block with slot: 7996 +2024-09-30T08:46:17.526169Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7290 +2024-09-30T08:46:17.526212Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7290 +2024-09-30T08:46:17.526332Z INFO fork_choice_control::block_processor: Validating block with slot: 7997 +2024-09-30T08:46:17.528603Z INFO fork_choice_control::block_processor: Validating block with slot: 7998 +2024-09-30T08:46:17.549784Z INFO fork_choice_control::block_processor: Validating block with slot: 7291 +2024-09-30T08:46:17.552263Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x96efb09db16bf96873e256b30dd7d0af507420bf208b7331f3c53e9813c50a8c, slot: 7291 +2024-09-30T08:46:17.572805Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7291 +2024-09-30T08:46:17.572830Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7291 +2024-09-30T08:46:17.594076Z INFO fork_choice_control::block_processor: Validating block with slot: 7292 +2024-09-30T08:46:17.595448Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3a967f41dee1418e4484988f431c59a52a2faba059a5ee9ec7fe11d87eb9aaf5, slot: 7292 +2024-09-30T08:46:17.599696Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 7232 +2024-09-30T08:46:17.607559Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7292 +2024-09-30T08:46:17.607581Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7292 +2024-09-30T08:46:17.608661Z INFO fork_choice_control::block_processor: Validating block with slot: 8001 +2024-09-30T08:46:17.608689Z INFO fork_choice_control::block_processor: Validating block with slot: 7999 +2024-09-30T08:46:17.608722Z INFO fork_choice_control::block_processor: Validating block with slot: 8004 +2024-09-30T08:46:17.608788Z INFO fork_choice_control::block_processor: Validating block with slot: 8005 +2024-09-30T08:46:17.608795Z INFO fork_choice_control::block_processor: Validating block with slot: 8000 +2024-09-30T08:46:17.608850Z INFO fork_choice_control::block_processor: Validating block with slot: 8003 +2024-09-30T08:46:17.611029Z INFO fork_choice_control::block_processor: Validating block with slot: 8006 +2024-09-30T08:46:17.611026Z INFO fork_choice_control::block_processor: Validating block with slot: 8002 +2024-09-30T08:46:17.611697Z INFO fork_choice_control::block_processor: Validating block with slot: 8007 +2024-09-30T08:46:17.612046Z INFO fork_choice_control::block_processor: Validating block with slot: 8008 +2024-09-30T08:46:17.612626Z INFO fork_choice_control::block_processor: Validating block with slot: 8009 +2024-09-30T08:46:17.612744Z INFO fork_choice_control::block_processor: Validating block with slot: 8010 +2024-09-30T08:46:17.614506Z INFO fork_choice_control::block_processor: Validating block with slot: 8011 +2024-09-30T08:46:17.614757Z INFO fork_choice_control::block_processor: Validating block with slot: 8016 +2024-09-30T08:46:17.615226Z INFO fork_choice_control::block_processor: Validating block with slot: 8017 +2024-09-30T08:46:17.616402Z INFO fork_choice_control::block_processor: Validating block with slot: 8018 +2024-09-30T08:46:17.616992Z INFO fork_choice_control::block_processor: Validating block with slot: 8019 +2024-09-30T08:46:17.618193Z INFO fork_choice_control::block_processor: Validating block with slot: 8020 +2024-09-30T08:46:17.618555Z INFO fork_choice_control::block_processor: Validating block with slot: 8021 +2024-09-30T08:46:17.619592Z INFO fork_choice_control::block_processor: Validating block with slot: 8022 +2024-09-30T08:46:17.620236Z INFO fork_choice_control::block_processor: Validating block with slot: 8023 +2024-09-30T08:46:17.622492Z INFO fork_choice_control::block_processor: Validating block with slot: 8024 +2024-09-30T08:46:17.622854Z INFO fork_choice_control::block_processor: Validating block with slot: 8026 +2024-09-30T08:46:17.623031Z INFO fork_choice_control::block_processor: Validating block with slot: 8013 +2024-09-30T08:46:17.624031Z INFO fork_choice_control::block_processor: Validating block with slot: 8027 +2024-09-30T08:46:17.624276Z INFO fork_choice_control::block_processor: Validating block with slot: 8028 +2024-09-30T08:46:17.625369Z INFO fork_choice_control::block_processor: Validating block with slot: 8029 +2024-09-30T08:46:17.625488Z INFO fork_choice_control::block_processor: Validating block with slot: 8014 +2024-09-30T08:46:17.626545Z INFO fork_choice_control::block_processor: Validating block with slot: 8030 +2024-09-30T08:46:17.626673Z INFO fork_choice_control::block_processor: Validating block with slot: 8031 +2024-09-30T08:46:17.627887Z INFO fork_choice_control::block_processor: Validating block with slot: 8033 +2024-09-30T08:46:17.628138Z INFO fork_choice_control::block_processor: Validating block with slot: 8034 +2024-09-30T08:46:17.628556Z INFO fork_choice_control::block_processor: Validating block with slot: 8035 +2024-09-30T08:46:17.628744Z INFO fork_choice_control::block_processor: Validating block with slot: 8036 +2024-09-30T08:46:17.629825Z INFO fork_choice_control::block_processor: Validating block with slot: 8037 +2024-09-30T08:46:17.629916Z INFO fork_choice_control::block_processor: Validating block with slot: 8039 +2024-09-30T08:46:17.631236Z INFO fork_choice_control::block_processor: Validating block with slot: 8038 +2024-09-30T08:46:17.631259Z INFO fork_choice_control::block_processor: Validating block with slot: 8104 +2024-09-30T08:46:17.631580Z INFO fork_choice_control::block_processor: Validating block with slot: 7913 +2024-09-30T08:46:17.632879Z INFO fork_choice_control::block_processor: Validating block with slot: 7914 +2024-09-30T08:46:17.633815Z INFO fork_choice_control::block_processor: Validating block with slot: 7915 +2024-09-30T08:46:17.634373Z INFO fork_choice_control::block_processor: Validating block with slot: 7916 +2024-09-30T08:46:17.634601Z INFO fork_choice_control::block_processor: Validating block with slot: 7917 +2024-09-30T08:46:17.634852Z INFO fork_choice_control::block_processor: Validating block with slot: 7918 +2024-09-30T08:46:17.635221Z INFO fork_choice_control::block_processor: Validating block with slot: 7919 +2024-09-30T08:46:17.635454Z INFO fork_choice_control::block_processor: Validating block with slot: 7294 +2024-09-30T08:46:17.636465Z INFO fork_choice_control::block_processor: Validating block with slot: 8025 +2024-09-30T08:46:17.636642Z INFO fork_choice_control::block_processor: Validating block with slot: 8015 +2024-09-30T08:46:17.642814Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x96bce689a88561ee6d6203f941c0d4342b7dcd55d58bf00b7be4acf4ec8a4360, slot: 7294 +2024-09-30T08:46:17.663738Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7294 +2024-09-30T08:46:17.663761Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7294 +2024-09-30T08:46:17.687389Z INFO fork_choice_control::block_processor: Validating block with slot: 7295 +2024-09-30T08:46:17.689324Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x70bd7f691e96ff12e69c4874194df15f085f47a9584d83e997b2d15c40db8558, slot: 7295 +2024-09-30T08:46:17.701692Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7295 +2024-09-30T08:46:17.701711Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7295 +2024-09-30T08:46:17.725661Z INFO fork_choice_control::block_processor: Validating block with slot: 7296 +2024-09-30T08:46:17.727091Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb1afe2d67626c34f974794334aa9a5053c7bc7a2751548ab23f428dbc4169d42, slot: 7296 +2024-09-30T08:46:17.733640Z INFO fork_choice_control::block_processor: Validating block with slot: 7923 +2024-09-30T08:46:17.733655Z INFO fork_choice_control::block_processor: Validating block with slot: 7920 +2024-09-30T08:46:17.733692Z INFO fork_choice_control::block_processor: Validating block with slot: 7926 +2024-09-30T08:46:17.733689Z INFO fork_choice_control::block_processor: Validating block with slot: 7924 +2024-09-30T08:46:17.733794Z INFO fork_choice_control::block_processor: Validating block with slot: 7921 +2024-09-30T08:46:17.734383Z INFO fork_choice_control::block_processor: Validating block with slot: 7922 +2024-09-30T08:46:17.734403Z INFO fork_choice_control::block_processor: Validating block with slot: 7925 +2024-09-30T08:46:17.734762Z INFO fork_choice_control::block_processor: Validating block with slot: 7927 +2024-09-30T08:46:17.735946Z INFO fork_choice_control::block_processor: Validating block with slot: 7928 +2024-09-30T08:46:17.736168Z INFO fork_choice_control::block_processor: Validating block with slot: 7929 +2024-09-30T08:46:17.736678Z INFO fork_choice_control::block_processor: Validating block with slot: 7930 +2024-09-30T08:46:17.738093Z INFO fork_choice_control::block_processor: Validating block with slot: 7931 +2024-09-30T08:46:17.738447Z INFO fork_choice_control::block_processor: Validating block with slot: 7932 +2024-09-30T08:46:17.738475Z INFO fork_choice_control::block_processor: Validating block with slot: 7933 +2024-09-30T08:46:17.738782Z INFO fork_choice_control::block_processor: Validating block with slot: 7936 +2024-09-30T08:46:17.738871Z INFO fork_choice_control::block_processor: Validating block with slot: 7934 +2024-09-30T08:46:17.739837Z INFO fork_choice_control::block_processor: Validating block with slot: 7937 +2024-09-30T08:46:17.739865Z INFO fork_choice_control::block_processor: Validating block with slot: 7938 +2024-09-30T08:46:17.739892Z INFO fork_choice_control::block_processor: Validating block with slot: 7939 +2024-09-30T08:46:17.740918Z INFO fork_choice_control::block_processor: Validating block with slot: 7940 +2024-09-30T08:46:17.741303Z INFO fork_choice_control::block_processor: Validating block with slot: 7941 +2024-09-30T08:46:17.742112Z INFO fork_choice_control::block_processor: Validating block with slot: 7942 +2024-09-30T08:46:17.742279Z INFO fork_choice_control::block_processor: Validating block with slot: 7944 +2024-09-30T08:46:17.742703Z INFO fork_choice_control::block_processor: Validating block with slot: 7935 +2024-09-30T08:46:17.743538Z INFO fork_choice_control::block_processor: Validating block with slot: 7945 +2024-09-30T08:46:17.744620Z INFO fork_choice_control::block_processor: Validating block with slot: 7946 +2024-09-30T08:46:17.744667Z INFO fork_choice_control::block_processor: Validating block with slot: 7947 +2024-09-30T08:46:17.745248Z INFO fork_choice_control::block_processor: Validating block with slot: 7948 +2024-09-30T08:46:17.746017Z INFO fork_choice_control::block_processor: Validating block with slot: 7949 +2024-09-30T08:46:17.746882Z INFO fork_choice_control::block_processor: Validating block with slot: 7950 +2024-09-30T08:46:17.747100Z INFO fork_choice_control::block_processor: Validating block with slot: 7951 +2024-09-30T08:46:17.747673Z INFO fork_choice_control::block_processor: Validating block with slot: 7952 +2024-09-30T08:46:17.748916Z INFO fork_choice_control::block_processor: Validating block with slot: 7953 +2024-09-30T08:46:17.749014Z INFO fork_choice_control::block_processor: Validating block with slot: 7943 +2024-09-30T08:46:17.749160Z INFO fork_choice_control::block_processor: Validating block with slot: 7954 +2024-09-30T08:46:17.749197Z INFO fork_choice_control::block_processor: Validating block with slot: 7955 +2024-09-30T08:46:17.750044Z INFO fork_choice_control::block_processor: Validating block with slot: 7956 +2024-09-30T08:46:17.750538Z INFO fork_choice_control::block_processor: Validating block with slot: 7957 +2024-09-30T08:46:17.751220Z INFO fork_choice_control::block_processor: Validating block with slot: 7958 +2024-09-30T08:46:17.752055Z INFO fork_choice_control::block_processor: Validating block with slot: 7959 +2024-09-30T08:46:17.752674Z INFO fork_choice_control::block_processor: Validating block with slot: 7960 +2024-09-30T08:46:17.753420Z INFO fork_choice_control::block_processor: Validating block with slot: 7962 +2024-09-30T08:46:17.753554Z INFO fork_choice_control::block_processor: Validating block with slot: 7961 +2024-09-30T08:46:17.753695Z INFO fork_choice_control::block_processor: Validating block with slot: 7963 +2024-09-30T08:46:17.754178Z INFO fork_choice_control::block_processor: Validating block with slot: 7964 +2024-09-30T08:46:17.754418Z INFO fork_choice_control::block_processor: Validating block with slot: 7965 +2024-09-30T08:46:17.754593Z INFO fork_choice_control::block_processor: Validating block with slot: 7966 +2024-09-30T08:46:17.755031Z INFO fork_choice_control::block_processor: Validating block with slot: 7967 +2024-09-30T08:46:17.756476Z INFO fork_choice_control::block_processor: Validating block with slot: 7968 +2024-09-30T08:46:17.756919Z INFO fork_choice_control::block_processor: Validating block with slot: 7971 +2024-09-30T08:46:17.757487Z INFO fork_choice_control::block_processor: Validating block with slot: 7972 +2024-09-30T08:46:17.758092Z INFO fork_choice_control::block_processor: Validating block with slot: 7973 +2024-09-30T08:46:17.758326Z INFO fork_choice_control::block_processor: Validating block with slot: 7969 +2024-09-30T08:46:17.758555Z INFO fork_choice_control::block_processor: Validating block with slot: 7974 +2024-09-30T08:46:17.759267Z INFO fork_choice_control::block_processor: Validating block with slot: 7975 +2024-09-30T08:46:17.759713Z INFO fork_choice_control::block_processor: Validating block with slot: 7976 +2024-09-30T08:46:17.761157Z INFO fork_choice_control::block_processor: Validating block with slot: 7970 +2024-09-30T08:46:17.858720Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7296 +2024-09-30T08:46:17.858750Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7296 +2024-09-30T08:46:17.871392Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7296) +2024-09-30T08:46:17.871560Z INFO fork_choice_control::block_processor: Validating block with slot: 7297 +2024-09-30T08:46:17.874315Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5de13634773be4403f382142041d64d9fc3bef88caf5b14d7ef0607fd1c6f483, slot: 7297 +2024-09-30T08:46:17.965627Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7297 +2024-09-30T08:46:17.965648Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7297 +2024-09-30T08:46:17.979103Z INFO fork_choice_control::block_processor: Validating block with slot: 7298 +2024-09-30T08:46:17.980558Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe0092890c1003b654c073ca8c3427c0c23a9a3375cf497358d179c01ecc2aac7, slot: 7298 +2024-09-30T08:46:17.989389Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7298 +2024-09-30T08:46:17.989415Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7298 +2024-09-30T08:46:18.002678Z INFO fork_choice_control::block_processor: Validating block with slot: 7299 +2024-09-30T08:46:18.004345Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8e9cccc63b0e8bfc3f6d6b116ce710aba8202df7c526b76e0014dddb6c7ac980, slot: 7299 +2024-09-30T08:46:18.012230Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7299 +2024-09-30T08:46:18.012250Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7299 +2024-09-30T08:46:18.025479Z INFO fork_choice_control::block_processor: Validating block with slot: 7300 +2024-09-30T08:46:18.027512Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe4704920039160922911815d4f66c6568dc938d4b5eea3ab89088efedca1452c, slot: 7300 +2024-09-30T08:46:18.037970Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7300 +2024-09-30T08:46:18.037987Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7300 +2024-09-30T08:46:18.051681Z INFO fork_choice_control::block_processor: Validating block with slot: 7301 +2024-09-30T08:46:18.053224Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x312ea5deffda33f196f304ad9564ccd91e238ab5c7a9873fc3c663feaa64392a, slot: 7301 +2024-09-30T08:46:18.062785Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7301 +2024-09-30T08:46:18.062804Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7301 +2024-09-30T08:46:18.077727Z INFO fork_choice_control::block_processor: Validating block with slot: 7302 +2024-09-30T08:46:18.079552Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x93fb79217ea49920260e217b34cb955cfd6e3e7a852defbf7c0f6b9d26772e80, slot: 7302 +2024-09-30T08:46:18.090151Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7302 +2024-09-30T08:46:18.090174Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7302 +2024-09-30T08:46:18.105032Z INFO fork_choice_control::block_processor: Validating block with slot: 7303 +2024-09-30T08:46:18.107020Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcef2af3841fa77b39da8fb7a89e14feaa9503c0a487a535e0ec04c363d1631ea, slot: 7303 +2024-09-30T08:46:18.116578Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7303 +2024-09-30T08:46:18.116598Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7303 +2024-09-30T08:46:18.131597Z INFO fork_choice_control::block_processor: Validating block with slot: 7304 +2024-09-30T08:46:18.132684Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0a27bee57b3aad0a8475aca39dd1e5ce53baf669f52c52b1d28dfbd770f6b973, slot: 7304 +2024-09-30T08:46:18.140149Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7304 +2024-09-30T08:46:18.140166Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7304 +2024-09-30T08:46:18.155931Z INFO fork_choice_control::block_processor: Validating block with slot: 7305 +2024-09-30T08:46:18.157393Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7ad146cfc787fced3b81952d22d7212e3e4262a8ee4a49b16470224ad6d89950, slot: 7305 +2024-09-30T08:46:18.165324Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7305 +2024-09-30T08:46:18.165343Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7305 +2024-09-30T08:46:18.179962Z INFO fork_choice_control::block_processor: Validating block with slot: 7306 +2024-09-30T08:46:18.181028Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6a558ec6d0f5005667d04fa333931bd654cb2e2175a2247714f1ebcdfa9ca9e1, slot: 7306 +2024-09-30T08:46:18.187406Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7306 +2024-09-30T08:46:18.187430Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7306 +2024-09-30T08:46:18.202305Z INFO fork_choice_control::block_processor: Validating block with slot: 7307 +2024-09-30T08:46:18.204445Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf1f5fdca81754cb7b99ef75dcffb6a3c6f4e7bd05c23a14c01b7357fb2ec5b2b, slot: 7307 +2024-09-30T08:46:18.212859Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7307 +2024-09-30T08:46:18.212881Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7307 +2024-09-30T08:46:18.228368Z INFO fork_choice_control::block_processor: Validating block with slot: 7308 +2024-09-30T08:46:18.229579Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x844d2e52b8d817072dfdffc5023dabd65825ab46df72600d771f340cc21916fd, slot: 7308 +2024-09-30T08:46:18.235661Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7308 +2024-09-30T08:46:18.235674Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7308 +2024-09-30T08:46:18.251742Z INFO fork_choice_control::block_processor: Validating block with slot: 7309 +2024-09-30T08:46:18.253150Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x31b30995ba6f0a06ac812252eb8efa610774a63a9ad210dfd900c34f5aed1896, slot: 7309 +2024-09-30T08:46:18.265410Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7309 +2024-09-30T08:46:18.265436Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7309 +2024-09-30T08:46:18.275375Z INFO runtime::runtime: saving current chain before exit… +2024-09-30T08:46:18.282893Z INFO fork_choice_control::block_processor: Validating block with slot: 7310 +2024-09-30T08:46:18.284562Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x686c61e08167b406901a47f294786700c3f397306b813ecf39d7acaceeaaa7e9, slot: 7310 +2024-09-30T08:46:18.294970Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7310 +2024-09-30T08:46:18.294990Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7310 +2024-09-30T08:46:18.441320Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 7232 +2024-09-30T08:46:18.622100Z INFO fork_choice_control::mutator: chain saved (finalized blocks: 1, unfinalized blocks: 74) +2024-09-30T09:03:03.396860Z INFO logging: Tracing initialized successfully. +2024-09-30T09:03:03.399605Z INFO grandine: Grandine firing up... +2024-09-30T09:03:03.506506Z INFO grandine: starting beacon node +2024-09-30T09:03:03.507059Z INFO grandine::grandine_config: network: mainnet +2024-09-30T09:03:03.507078Z INFO grandine::grandine_config: data directory: "/Users/mercynaps/.grandine/mainnet" +2024-09-30T09:03:03.507090Z INFO grandine::grandine_config: Eth2 database upper limit: 256.0 GiB +2024-09-30T09:03:03.507110Z INFO grandine::grandine_config: Eth1 database upper limit: 16.0 GiB +2024-09-30T09:03:03.508207Z INFO grandine::grandine_config: Eth1 RPC URLs: [] +2024-09-30T09:03:03.509346Z INFO grandine::grandine_config: graffiti: [0x4772616e64696e652f302e342e312d3138613435663700000000000000000000] +2024-09-30T09:03:03.509373Z INFO grandine::grandine_config: HTTP API address: 127.0.0.1:5052 +2024-09-30T09:03:03.509382Z INFO grandine::grandine_config: validator API disabled +2024-09-30T09:03:03.509390Z INFO grandine::grandine_config: archival interval: 32 epochs +2024-09-30T09:03:03.509566Z INFO grandine::grandine_config: slasher enabled: false +2024-09-30T09:03:03.509613Z INFO grandine::grandine_config: client version: Grandine/0.4.1-18a45f7/aarch64-macos +2024-09-30T09:03:03.509638Z INFO grandine::grandine_config: suggested fee recipient: 0xe7cf…1f1b +2024-09-30T09:03:03.509649Z INFO grandine::grandine_config: back sync enabled: false +2024-09-30T09:03:03.554700Z INFO database: database: /Users/mercynaps/.grandine/mainnet/beacon/eth1_cache with name eth1 +2024-09-30T09:03:05.148386Z INFO database: database: /Users/mercynaps/.grandine/mainnet/beacon/beacon_fork_choice with name beacon_fork_choice +2024-09-30T09:03:05.302766Z INFO fork_choice_control::storage: loaded state at slot 7232 +2024-09-30T09:03:07.572282Z INFO fork_choice_store::state_cache_processor: Creating new StateCacheProcessor with lock timeout of 1.5s +2024-09-30T09:03:07.711131Z INFO fork_choice_control::block_processor: Validating block with slot: 7233 +2024-09-30T09:03:07.719371Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4a9706cb9224fc10b3371a290fc00eda6f11d628ba3c2f50bafd8ed965919579, slot: 7233 +2024-09-30T09:03:07.927373Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7233 +2024-09-30T09:03:07.927397Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7233 +2024-09-30T09:03:07.939120Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7232) +2024-09-30T09:03:07.941095Z INFO fork_choice_control::block_processor: Validating block with slot: 7234 +2024-09-30T09:03:07.948287Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe1f460ab1c12052900b1b7ac8e279a12368498b6f8d7b46ffd3ba8653dc34cd7, slot: 7234 +2024-09-30T09:03:07.964148Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7234 +2024-09-30T09:03:07.964169Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7234 +2024-09-30T09:03:07.975305Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7232) +2024-09-30T09:03:07.975680Z INFO fork_choice_control::block_processor: Validating block with slot: 7235 +2024-09-30T09:03:07.982951Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0bef7b570b56304c8085df5ae09030428a97291ec6733819f8c095904e1bfff3, slot: 7235 +2024-09-30T09:03:07.999004Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7235 +2024-09-30T09:03:07.999038Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7235 +2024-09-30T09:03:08.011506Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7232) +2024-09-30T09:03:08.011891Z INFO fork_choice_control::block_processor: Validating block with slot: 7236 +2024-09-30T09:03:08.019000Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9a675e9cdfec81e07979bdaf61009fdda8a02744ad8cf9cd2f09d1f879663efb, slot: 7236 +2024-09-30T09:03:08.033409Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7236 +2024-09-30T09:03:08.033432Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7236 +2024-09-30T09:03:08.044702Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7232) +2024-09-30T09:03:08.045086Z INFO fork_choice_control::block_processor: Validating block with slot: 7238 +2024-09-30T09:03:08.052566Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdbc06f71b19cc80c93ce3867f3d3ccd31fe587124d1874a6cc5ef795848fc955, slot: 7238 +2024-09-30T09:03:08.077814Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7238 +2024-09-30T09:03:08.077835Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7238 +2024-09-30T09:03:08.089735Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7232) +2024-09-30T09:03:08.090121Z INFO fork_choice_control::block_processor: Validating block with slot: 7239 +2024-09-30T09:03:08.096893Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x296df5f33fb625296949981f30e54642dad7b5361beefa3cfcd7f6055697408c, slot: 7239 +2024-09-30T09:03:08.110032Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7239 +2024-09-30T09:03:08.110048Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7239 +2024-09-30T09:03:08.122368Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7232) +2024-09-30T09:03:08.122740Z INFO fork_choice_control::block_processor: Validating block with slot: 7240 +2024-09-30T09:03:08.128981Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x35cf96dfdb9a0fc74f6e04d861f084f264321d443248fb0850b76c93fa97dbb7, slot: 7240 +2024-09-30T09:03:08.141727Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7240 +2024-09-30T09:03:08.141747Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7240 +2024-09-30T09:03:08.154734Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7232) +2024-09-30T09:03:08.155179Z INFO fork_choice_control::block_processor: Validating block with slot: 7241 +2024-09-30T09:03:08.162521Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe9d0389f9490f6c9e418f313099d334c65529a0a834b1b50baec38b038da2b37, slot: 7241 +2024-09-30T09:03:08.176885Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7241 +2024-09-30T09:03:08.176904Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7241 +2024-09-30T09:03:08.189432Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7232) +2024-09-30T09:03:08.189793Z INFO fork_choice_control::block_processor: Validating block with slot: 7242 +2024-09-30T09:03:08.196225Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x65e6826bc6f394d95035ddf9fad8fd7feb0203ab513ee53bea782f7dfc8d4c2a, slot: 7242 +2024-09-30T09:03:08.209138Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7242 +2024-09-30T09:03:08.209151Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7242 +2024-09-30T09:03:08.222070Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7232) +2024-09-30T09:03:08.222494Z INFO fork_choice_control::block_processor: Validating block with slot: 7243 +2024-09-30T09:03:08.230413Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeb7efcf675ae7027892b27eeaf3a979ca99b2f48cc4fb6151c8610e3cc6f99d8, slot: 7243 +2024-09-30T09:03:08.245179Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7243 +2024-09-30T09:03:08.245209Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7243 +2024-09-30T09:03:08.258304Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7232) +2024-09-30T09:03:08.258677Z INFO fork_choice_control::block_processor: Validating block with slot: 7244 +2024-09-30T09:03:08.265205Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x64e8a8348395aaa92df714b99b4ddcaa884f5eb60065d9937f637ec6c268a0b3, slot: 7244 +2024-09-30T09:03:08.277901Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7244 +2024-09-30T09:03:08.277918Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7244 +2024-09-30T09:03:08.291173Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7232) +2024-09-30T09:03:08.291536Z INFO fork_choice_control::block_processor: Validating block with slot: 7245 +2024-09-30T09:03:08.298202Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5e9094bb167a31b455eba8c23adbeb224cd414cd18ab8e08903fe750fa625794, slot: 7245 +2024-09-30T09:03:08.311178Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7245 +2024-09-30T09:03:08.311193Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7245 +2024-09-30T09:03:08.324951Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7232) +2024-09-30T09:03:08.325326Z INFO fork_choice_control::block_processor: Validating block with slot: 7246 +2024-09-30T09:03:08.331651Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd682ad94e67e82f00017c1fbf589d30a13a9e90da7bcbb5080e64a1a95d4b8c1, slot: 7246 +2024-09-30T09:03:08.344799Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7246 +2024-09-30T09:03:08.344814Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7246 +2024-09-30T09:03:08.358391Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7232) +2024-09-30T09:03:08.358801Z INFO fork_choice_control::block_processor: Validating block with slot: 7247 +2024-09-30T09:03:08.366747Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa5c72f501a39db7c78cc4859be584fadbf6527e25b456a2f6a280adb68c7efb9, slot: 7247 +2024-09-30T09:03:08.382525Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7247 +2024-09-30T09:03:08.382548Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7247 +2024-09-30T09:03:08.396469Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7232) +2024-09-30T09:03:08.396838Z INFO fork_choice_control::block_processor: Validating block with slot: 7248 +2024-09-30T09:03:08.403186Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc61de917890e51e7de4ca84947b65a528f72d5de86440f787a7099fea6affdd9, slot: 7248 +2024-09-30T09:03:08.416404Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7248 +2024-09-30T09:03:08.416430Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7248 +2024-09-30T09:03:08.430605Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7232) +2024-09-30T09:03:08.431044Z INFO fork_choice_control::block_processor: Validating block with slot: 7249 +2024-09-30T09:03:08.437562Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe75444261dac1be20896dfeaad0e59288ad4515c741bc975d7c11b28d21d33ea, slot: 7249 +2024-09-30T09:03:08.451213Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7249 +2024-09-30T09:03:08.451233Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7249 +2024-09-30T09:03:08.465981Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7232) +2024-09-30T09:03:08.466382Z INFO fork_choice_control::block_processor: Validating block with slot: 7250 +2024-09-30T09:03:08.472797Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x03bbf9fc76f914e088eb64b59f4439bb279a0393c212e0c32cff5f681dd090b9, slot: 7250 +2024-09-30T09:03:08.485908Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7250 +2024-09-30T09:03:08.485930Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7250 +2024-09-30T09:03:08.500655Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7232) +2024-09-30T09:03:08.501037Z INFO fork_choice_control::block_processor: Validating block with slot: 7251 +2024-09-30T09:03:08.507230Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6bf04d67045966360995a9e396814badcf2fa6911a747b9aaaf9c19c148a97f0, slot: 7251 +2024-09-30T09:03:08.520110Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7251 +2024-09-30T09:03:08.520133Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7251 +2024-09-30T09:03:08.536094Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7232) +2024-09-30T09:03:08.536524Z INFO fork_choice_control::block_processor: Validating block with slot: 7252 +2024-09-30T09:03:08.543627Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf2b7db49d633ec294ba167fc8fb4d28018c3a4fb74126233935f36864f287892, slot: 7252 +2024-09-30T09:03:08.557740Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7252 +2024-09-30T09:03:08.557765Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7252 +2024-09-30T09:03:08.573084Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7232) +2024-09-30T09:03:08.573464Z INFO fork_choice_control::block_processor: Validating block with slot: 7253 +2024-09-30T09:03:08.579863Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2c90be35c0e8a24187f27c4bd2d727d7e9dabbb6eb5e4bf80f9e1956645c9e38, slot: 7253 +2024-09-30T09:03:08.592611Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7253 +2024-09-30T09:03:08.592635Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7253 +2024-09-30T09:03:08.607863Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7232) +2024-09-30T09:03:08.608242Z INFO fork_choice_control::block_processor: Validating block with slot: 7254 +2024-09-30T09:03:08.615384Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb27aea69b488379a60aaac2aadfe5677713eadb3bd95678d342e05b146a55492, slot: 7254 +2024-09-30T09:03:08.630158Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7254 +2024-09-30T09:03:08.630179Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7254 +2024-09-30T09:03:08.645425Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7232) +2024-09-30T09:03:08.645798Z INFO fork_choice_control::block_processor: Validating block with slot: 7255 +2024-09-30T09:03:08.652288Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x86a5db283b1454d7a4f0e6be7bd265e0a7e3eebc85374f4b652d5206021cb16e, slot: 7255 +2024-09-30T09:03:08.667174Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7255 +2024-09-30T09:03:08.667198Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7255 +2024-09-30T09:03:08.685324Z INFO fork_choice_control::block_processor: Validating block with slot: 7256 +2024-09-30T09:03:08.692947Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfd962c80de92a2a08fd70d47aebbef8119d6f87ff58cf2f2a3f0f1e44531c27e, slot: 7256 +2024-09-30T09:03:08.707649Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7256 +2024-09-30T09:03:08.707671Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7256 +2024-09-30T09:03:08.724008Z INFO fork_choice_control::block_processor: Validating block with slot: 7257 +2024-09-30T09:03:08.730436Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf694db89854c47728b298aa917103670a54e2256e16d7df602ea4e7df772436b, slot: 7257 +2024-09-30T09:03:08.743099Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7257 +2024-09-30T09:03:08.743114Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7257 +2024-09-30T09:03:08.759483Z INFO fork_choice_control::block_processor: Validating block with slot: 7258 +2024-09-30T09:03:08.765900Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2b4be9e4ef59a3e5ff97f07a509a43ed8a350f874cda217e4cceebf7de771fd4, slot: 7258 +2024-09-30T09:03:08.778414Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7258 +2024-09-30T09:03:08.778431Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7258 +2024-09-30T09:03:08.794980Z INFO fork_choice_control::block_processor: Validating block with slot: 7259 +2024-09-30T09:03:08.801361Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2f6f85645c4f13e2fc79fb64ad4b08507145d83993793ed0ce89ceb69164be37, slot: 7259 +2024-09-30T09:03:08.815809Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7259 +2024-09-30T09:03:08.815829Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7259 +2024-09-30T09:03:08.832556Z INFO fork_choice_control::block_processor: Validating block with slot: 7260 +2024-09-30T09:03:08.839052Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5429372c44802994fba50adc153b125fa57760b38f999f5be4ad71a835daf9ff, slot: 7260 +2024-09-30T09:03:08.852085Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7260 +2024-09-30T09:03:08.852105Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7260 +2024-09-30T09:03:08.869096Z INFO fork_choice_control::block_processor: Validating block with slot: 7261 +2024-09-30T09:03:08.875956Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcd05666a2e4cf0a78a97e0c65525fc00965a9fd6ef1e361ff570f5776e49420e, slot: 7261 +2024-09-30T09:03:08.890319Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7261 +2024-09-30T09:03:08.890341Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7261 +2024-09-30T09:03:08.907577Z INFO fork_choice_control::block_processor: Validating block with slot: 7262 +2024-09-30T09:03:08.914003Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf5531afe344a9ff3eef23a4b9fb3963f763f14efb72c48b162ce0347088ef4f8, slot: 7262 +2024-09-30T09:03:08.926783Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7262 +2024-09-30T09:03:08.926797Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7262 +2024-09-30T09:03:08.944107Z INFO fork_choice_control::block_processor: Validating block with slot: 7263 +2024-09-30T09:03:08.950556Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x34840858076eb1285f88009179af46bbfbfc9f489f4337c0edc8cf75a7527e1e, slot: 7263 +2024-09-30T09:03:08.963936Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7263 +2024-09-30T09:03:08.963960Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7263 +2024-09-30T09:03:08.981525Z INFO fork_choice_control::block_processor: Validating block with slot: 7264 +2024-09-30T09:03:08.987887Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x297b972e8bef34e7bc94bce089ba0ee83b901608752054f02e49cfe6d527f1c5, slot: 7264 +2024-09-30T09:03:09.052833Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7264 +2024-09-30T09:03:09.052853Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7264 +2024-09-30T09:03:09.065086Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7264) +2024-09-30T09:03:09.065557Z INFO fork_choice_control::block_processor: Validating block with slot: 7265 +2024-09-30T09:03:09.073908Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xea282e53da46eaa30786bead3b0da49d779bbef211bb3fcc01e66f7860588edf, slot: 7265 +2024-09-30T09:03:09.166004Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7265 +2024-09-30T09:03:09.166025Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7265 +2024-09-30T09:03:09.177061Z INFO fork_choice_control::block_processor: Validating block with slot: 7266 +2024-09-30T09:03:09.183813Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x527392887d8299a6b83b3f9dd694fd810b09952a724704250e0a41e6b5f812d4, slot: 7266 +2024-09-30T09:03:09.198900Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7266 +2024-09-30T09:03:09.198924Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7266 +2024-09-30T09:03:09.210698Z INFO fork_choice_control::block_processor: Validating block with slot: 7267 +2024-09-30T09:03:09.217663Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x52e8de842d079c341212b1fd533d1b8ea78f837dd4c07bea1a8d5c8496a86166, slot: 7267 +2024-09-30T09:03:09.233403Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7267 +2024-09-30T09:03:09.233426Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7267 +2024-09-30T09:03:09.245963Z INFO fork_choice_control::block_processor: Validating block with slot: 7268 +2024-09-30T09:03:09.253236Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0a505766be0e331f5ead94f5c6e554d3a04a174446d6f3f6eb305a85af117d88, slot: 7268 +2024-09-30T09:03:09.268259Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7268 +2024-09-30T09:03:09.268282Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7268 +2024-09-30T09:03:09.280740Z INFO fork_choice_control::block_processor: Validating block with slot: 7269 +2024-09-30T09:03:09.290970Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb630963680186ae7db519466dd29d290097f2630a7a22c0af7570a2cf7502465, slot: 7269 +2024-09-30T09:03:09.312159Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7269 +2024-09-30T09:03:09.312185Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7269 +2024-09-30T09:03:09.325521Z INFO fork_choice_control::block_processor: Validating block with slot: 7270 +2024-09-30T09:03:09.330705Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc7943b890e0ee93bbff043322e09818e5689b83bbf968e7ae7c8a3bf71c5e710, slot: 7270 +2024-09-30T09:03:09.341098Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7270 +2024-09-30T09:03:09.341121Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7270 +2024-09-30T09:03:09.354832Z INFO fork_choice_control::block_processor: Validating block with slot: 7271 +2024-09-30T09:03:09.356030Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6f7645ea82f89352f8232bef9b774fff19deb93496cafa2c3290fa4a6e965ffa, slot: 7271 +2024-09-30T09:03:09.359058Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7271 +2024-09-30T09:03:09.359068Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7271 +2024-09-30T09:03:09.373312Z INFO fork_choice_control::block_processor: Validating block with slot: 7272 +2024-09-30T09:03:09.375276Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4c3bb6c6d51c9ad7d5a01b69ad207aa65353308380f5e4f52047dc2a7d0e4714, slot: 7272 +2024-09-30T09:03:09.379717Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7272 +2024-09-30T09:03:09.379731Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7272 +2024-09-30T09:03:09.392888Z INFO fork_choice_control::block_processor: Validating block with slot: 7273 +2024-09-30T09:03:09.393998Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xde09552a95bc6ec9e981a092c2c5dcf130b92ae35b85a5134d3d179d8a173113, slot: 7273 +2024-09-30T09:03:09.396901Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7273 +2024-09-30T09:03:09.396921Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7273 +2024-09-30T09:03:09.410169Z INFO fork_choice_control::block_processor: Validating block with slot: 7274 +2024-09-30T09:03:09.411785Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7b0c327424f4204850ad929d65b5682516a52f9ecf210f91c986e32fd59fd8d5, slot: 7274 +2024-09-30T09:03:09.415624Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7274 +2024-09-30T09:03:09.415644Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7274 +2024-09-30T09:03:09.429367Z INFO fork_choice_control::block_processor: Validating block with slot: 7275 +2024-09-30T09:03:09.431661Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5f54bb307b698f4b25aeb61a024bc2b9e5271a6abaea0f74eac9a8e2c8f40930, slot: 7275 +2024-09-30T09:03:09.436351Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7275 +2024-09-30T09:03:09.436362Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7275 +2024-09-30T09:03:09.450693Z INFO fork_choice_control::block_processor: Validating block with slot: 7276 +2024-09-30T09:03:09.451697Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbf253ef899fde970ee06b0564d4597e9683ef10e9557cb04a2bf35ae943f682c, slot: 7276 +2024-09-30T09:03:09.454140Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7276 +2024-09-30T09:03:09.454150Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7276 +2024-09-30T09:03:09.468216Z INFO fork_choice_control::block_processor: Validating block with slot: 7277 +2024-09-30T09:03:09.469297Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaf50792423bf76540f63e5fff18f812f09c2d49a379a877091863f2e515d4018, slot: 7277 +2024-09-30T09:03:09.471975Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7277 +2024-09-30T09:03:09.471985Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7277 +2024-09-30T09:03:09.486338Z INFO fork_choice_control::block_processor: Validating block with slot: 7278 +2024-09-30T09:03:09.487965Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6e9b6386f3a94cb6085a9b46b0d31937359ede0f0e1b580a800f13110299ad9e, slot: 7278 +2024-09-30T09:03:09.491621Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7278 +2024-09-30T09:03:09.491631Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7278 +2024-09-30T09:03:09.506227Z INFO fork_choice_control::block_processor: Validating block with slot: 7279 +2024-09-30T09:03:09.507433Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x02ac841c0c47a41ffee0c608388c61653286bc9ba3901f04bf3499827967a271, slot: 7279 +2024-09-30T09:03:09.510371Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7279 +2024-09-30T09:03:09.510383Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7279 +2024-09-30T09:03:09.525357Z INFO fork_choice_control::block_processor: Validating block with slot: 7280 +2024-09-30T09:03:09.527236Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x38be82e91868efb48d2875a3120fa76d0e88fb5edc10fc96a18657c11ca6f18c, slot: 7280 +2024-09-30T09:03:09.531550Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7280 +2024-09-30T09:03:09.531570Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7280 +2024-09-30T09:03:09.546209Z INFO fork_choice_control::block_processor: Validating block with slot: 7282 +2024-09-30T09:03:09.548065Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc4c2371b5c48209626336dea6a17a126996a056b0027d896c6990a9369adc50d, slot: 7282 +2024-09-30T09:03:09.681202Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7282 +2024-09-30T09:03:09.681226Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7282 +2024-09-30T09:03:09.696245Z INFO fork_choice_control::block_processor: Validating block with slot: 7283 +2024-09-30T09:03:09.697968Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x19b84130a3d7de7ecfd1c4f99036a9aac096c604f79999e7e56f472451982aab, slot: 7283 +2024-09-30T09:03:09.701729Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7283 +2024-09-30T09:03:09.701741Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7283 +2024-09-30T09:03:09.717738Z INFO fork_choice_control::block_processor: Validating block with slot: 7284 +2024-09-30T09:03:09.719357Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3a0a75c8d0b8dd90a66b59e72a7fb8b40238fb0e9a620c8a759739d86d1a518a, slot: 7284 +2024-09-30T09:03:09.723001Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7284 +2024-09-30T09:03:09.723011Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7284 +2024-09-30T09:03:09.738972Z INFO fork_choice_control::block_processor: Validating block with slot: 7285 +2024-09-30T09:03:09.740058Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8817e9c8688848d9326248b3999ded67f6db39de3112e30e909ac363a9b10314, slot: 7285 +2024-09-30T09:03:09.742754Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7285 +2024-09-30T09:03:09.742763Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7285 +2024-09-30T09:03:09.758816Z INFO fork_choice_control::block_processor: Validating block with slot: 7286 +2024-09-30T09:03:09.760027Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfcb9cfdc2339673e15a554fce188bb973baaa45f5beb5ceecd58ba11700cef81, slot: 7286 +2024-09-30T09:03:09.763000Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7286 +2024-09-30T09:03:09.763017Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7286 +2024-09-30T09:03:09.779321Z INFO fork_choice_control::block_processor: Validating block with slot: 7287 +2024-09-30T09:03:09.780920Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x64f959375fa92e83843e59ba30534ee7c8768c9740757907ec1421b36e9b9cf8, slot: 7287 +2024-09-30T09:03:09.784420Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7287 +2024-09-30T09:03:09.784436Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7287 +2024-09-30T09:03:09.802378Z INFO fork_choice_control::block_processor: Validating block with slot: 7288 +2024-09-30T09:03:09.803665Z INFO fork_choice_control::block_processor: Validating block with slot: 7289 +2024-09-30T09:03:09.804909Z INFO fork_choice_control::block_processor: Validating block with slot: 7290 +2024-09-30T09:03:09.806584Z INFO fork_choice_control::block_processor: Validating block with slot: 7291 +2024-09-30T09:03:09.808230Z INFO fork_choice_control::block_processor: Validating block with slot: 7292 +2024-09-30T09:03:09.809434Z INFO fork_choice_control::block_processor: Validating block with slot: 7294 +2024-09-30T09:03:09.813446Z INFO fork_choice_control::block_processor: Validating block with slot: 7295 +2024-09-30T09:03:09.814498Z INFO fork_choice_control::block_processor: Validating block with slot: 7296 +2024-09-30T09:03:09.815739Z INFO fork_choice_control::block_processor: Validating block with slot: 7297 +2024-09-30T09:03:09.818343Z INFO fork_choice_control::block_processor: Validating block with slot: 7298 +2024-09-30T09:03:09.819648Z INFO fork_choice_control::block_processor: Validating block with slot: 7299 +2024-09-30T09:03:09.821069Z INFO fork_choice_control::block_processor: Validating block with slot: 7300 +2024-09-30T09:03:09.822855Z INFO fork_choice_control::block_processor: Validating block with slot: 7301 +2024-09-30T09:03:09.824222Z INFO fork_choice_control::block_processor: Validating block with slot: 7302 +2024-09-30T09:03:09.825886Z INFO fork_choice_control::block_processor: Validating block with slot: 7303 +2024-09-30T09:03:09.827685Z INFO fork_choice_control::block_processor: Validating block with slot: 7304 +2024-09-30T09:03:09.828667Z INFO fork_choice_control::block_processor: Validating block with slot: 7305 +2024-09-30T09:03:09.829929Z INFO fork_choice_control::block_processor: Validating block with slot: 7306 +2024-09-30T09:03:09.830968Z INFO fork_choice_control::block_processor: Validating block with slot: 7307 +2024-09-30T09:03:09.833007Z INFO fork_choice_control::block_processor: Validating block with slot: 7308 +2024-09-30T09:03:09.834061Z INFO fork_choice_control::block_processor: Validating block with slot: 7309 +2024-09-30T09:03:09.838235Z INFO database: database: /Users/mercynaps/.grandine/mainnet/beacon/sync with name sync +2024-09-30T09:03:09.842238Z INFO database: database: /Users/mercynaps/.grandine/mainnet/validator with name proposer-configs +2024-09-30T09:03:09.883490Z INFO discv5::service: Discv5 Service started mode=Ip4 +2024-09-30T09:03:09.916018Z INFO libp2p_swarm: local_peer_id=16Uiu2HAm1MjWUF4J3qsovL8Wzccfuzy28tTQ8dmA2sazksHeR3bs +2024-09-30T09:03:09.923229Z INFO fork_choice_control::block_processor: Validating block with slot: 7288 +2024-09-30T09:03:09.924614Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa25270b095ce81daf78df2af9a632bcddc8fcbd98e80cdb054fe83c0bb77aa7f, slot: 7288 +2024-09-30T09:03:09.927600Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7288 +2024-09-30T09:03:09.927614Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7288 +2024-09-30T09:03:09.944744Z INFO fork_choice_control::block_processor: Validating block with slot: 7289 +2024-09-30T09:03:09.945913Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0be32d018b2403a605aa12b54523f1862afa95a03eaeecf0402ffd96652afe00, slot: 7289 +2024-09-30T09:03:09.948874Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7289 +2024-09-30T09:03:09.948893Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7289 +2024-09-30T09:03:09.965593Z INFO fork_choice_control::block_processor: Validating block with slot: 7290 +2024-09-30T09:03:09.967240Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf3282779f5836352b184d6449aea0d1d379a207a9041d91937da9e2b123b5254, slot: 7290 +2024-09-30T09:03:09.970999Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7290 +2024-09-30T09:03:09.971009Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7290 +2024-09-30T09:03:09.988541Z INFO fork_choice_control::block_processor: Validating block with slot: 7291 +2024-09-30T09:03:09.990174Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x96efb09db16bf96873e256b30dd7d0af507420bf208b7331f3c53e9813c50a8c, slot: 7291 +2024-09-30T09:03:09.993936Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7291 +2024-09-30T09:03:09.993945Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7291 +2024-09-30T09:03:10.011385Z INFO fork_choice_control::block_processor: Validating block with slot: 7292 +2024-09-30T09:03:10.012552Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3a967f41dee1418e4484988f431c59a52a2faba059a5ee9ec7fe11d87eb9aaf5, slot: 7292 +2024-09-30T09:03:10.015668Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7292 +2024-09-30T09:03:10.015691Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7292 +2024-09-30T09:03:10.033385Z INFO fork_choice_control::block_processor: Validating block with slot: 7294 +2024-09-30T09:03:10.037416Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x96bce689a88561ee6d6203f941c0d4342b7dcd55d58bf00b7be4acf4ec8a4360, slot: 7294 +2024-09-30T09:03:10.057704Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7294 +2024-09-30T09:03:10.057725Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7294 +2024-09-30T09:03:10.075790Z INFO fork_choice_control::block_processor: Validating block with slot: 7295 +2024-09-30T09:03:10.076767Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x70bd7f691e96ff12e69c4874194df15f085f47a9584d83e997b2d15c40db8558, slot: 7295 +2024-09-30T09:03:10.079498Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7295 +2024-09-30T09:03:10.079517Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7295 +2024-09-30T09:03:10.098153Z INFO fork_choice_control::block_processor: Validating block with slot: 7296 +2024-09-30T09:03:10.099259Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb1afe2d67626c34f974794334aa9a5053c7bc7a2751548ab23f428dbc4169d42, slot: 7296 +2024-09-30T09:03:10.150178Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7296 +2024-09-30T09:03:10.150202Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7296 +2024-09-30T09:03:10.161731Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7296) +2024-09-30T09:03:10.161858Z INFO fork_choice_control::block_processor: Validating block with slot: 7297 +2024-09-30T09:03:10.164544Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5de13634773be4403f382142041d64d9fc3bef88caf5b14d7ef0607fd1c6f483, slot: 7297 +2024-09-30T09:03:10.237121Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7297 +2024-09-30T09:03:10.237143Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7297 +2024-09-30T09:03:10.248693Z INFO fork_choice_control::block_processor: Validating block with slot: 7298 +2024-09-30T09:03:10.249934Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe0092890c1003b654c073ca8c3427c0c23a9a3375cf497358d179c01ecc2aac7, slot: 7298 +2024-09-30T09:03:10.252917Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7298 +2024-09-30T09:03:10.252928Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7298 +2024-09-30T09:03:10.264671Z INFO fork_choice_control::block_processor: Validating block with slot: 7299 +2024-09-30T09:03:10.266044Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8e9cccc63b0e8bfc3f6d6b116ce710aba8202df7c526b76e0014dddb6c7ac980, slot: 7299 +2024-09-30T09:03:10.269260Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7299 +2024-09-30T09:03:10.269270Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7299 +2024-09-30T09:03:10.281607Z INFO fork_choice_control::block_processor: Validating block with slot: 7300 +2024-09-30T09:03:10.283553Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe4704920039160922911815d4f66c6568dc938d4b5eea3ab89088efedca1452c, slot: 7300 +2024-09-30T09:03:10.287568Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7300 +2024-09-30T09:03:10.287577Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7300 +2024-09-30T09:03:10.300179Z INFO fork_choice_control::block_processor: Validating block with slot: 7301 +2024-09-30T09:03:10.301541Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x312ea5deffda33f196f304ad9564ccd91e238ab5c7a9873fc3c663feaa64392a, slot: 7301 +2024-09-30T09:03:10.304805Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7301 +2024-09-30T09:03:10.304815Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7301 +2024-09-30T09:03:10.317415Z INFO fork_choice_control::block_processor: Validating block with slot: 7302 +2024-09-30T09:03:10.319102Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x93fb79217ea49920260e217b34cb955cfd6e3e7a852defbf7c0f6b9d26772e80, slot: 7302 +2024-09-30T09:03:10.323034Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7302 +2024-09-30T09:03:10.323054Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7302 +2024-09-30T09:03:10.336343Z INFO fork_choice_control::block_processor: Validating block with slot: 7303 +2024-09-30T09:03:10.338177Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcef2af3841fa77b39da8fb7a89e14feaa9503c0a487a535e0ec04c363d1631ea, slot: 7303 +2024-09-30T09:03:10.342275Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7303 +2024-09-30T09:03:10.342288Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7303 +2024-09-30T09:03:10.355744Z INFO fork_choice_control::block_processor: Validating block with slot: 7304 +2024-09-30T09:03:10.356746Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0a27bee57b3aad0a8475aca39dd1e5ce53baf669f52c52b1d28dfbd770f6b973, slot: 7304 +2024-09-30T09:03:10.359339Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7304 +2024-09-30T09:03:10.359349Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7304 +2024-09-30T09:03:10.373095Z INFO fork_choice_control::block_processor: Validating block with slot: 7305 +2024-09-30T09:03:10.374455Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7ad146cfc787fced3b81952d22d7212e3e4262a8ee4a49b16470224ad6d89950, slot: 7305 +2024-09-30T09:03:10.377510Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7305 +2024-09-30T09:03:10.377520Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7305 +2024-09-30T09:03:10.392299Z INFO fork_choice_control::block_processor: Validating block with slot: 7306 +2024-09-30T09:03:10.393351Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6a558ec6d0f5005667d04fa333931bd654cb2e2175a2247714f1ebcdfa9ca9e1, slot: 7306 +2024-09-30T09:03:10.396135Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7306 +2024-09-30T09:03:10.396157Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7306 +2024-09-30T09:03:10.409915Z INFO fork_choice_control::block_processor: Validating block with slot: 7307 +2024-09-30T09:03:10.412057Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf1f5fdca81754cb7b99ef75dcffb6a3c6f4e7bd05c23a14c01b7357fb2ec5b2b, slot: 7307 +2024-09-30T09:03:10.416459Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7307 +2024-09-30T09:03:10.416473Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7307 +2024-09-30T09:03:10.430316Z INFO fork_choice_control::block_processor: Validating block with slot: 7308 +2024-09-30T09:03:10.431413Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x844d2e52b8d817072dfdffc5023dabd65825ab46df72600d771f340cc21916fd, slot: 7308 +2024-09-30T09:03:10.434105Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7308 +2024-09-30T09:03:10.434115Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7308 +2024-09-30T09:03:10.448546Z INFO fork_choice_control::block_processor: Validating block with slot: 7309 +2024-09-30T09:03:10.449644Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x31b30995ba6f0a06ac812252eb8efa610774a63a9ad210dfd900c34f5aed1896, slot: 7309 +2024-09-30T09:03:10.452440Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7309 +2024-09-30T09:03:10.452451Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7309 +2024-09-30T09:03:19.958407Z INFO http_api::task: HTTP server listening on 127.0.0.1:5052 +2024-09-30T09:03:23.434593Z INFO fork_choice_control::block_processor: Validating block with slot: 7438 +2024-09-30T09:03:23.438616Z INFO fork_choice_control::block_processor: Validating block with slot: 7439 +2024-09-30T09:03:23.473554Z INFO fork_choice_control::block_processor: Validating block with slot: 7440 +2024-09-30T09:03:23.473571Z INFO fork_choice_control::block_processor: Validating block with slot: 7441 +2024-09-30T09:03:23.484596Z INFO fork_choice_control::block_processor: Validating block with slot: 7442 +2024-09-30T09:03:23.512026Z INFO fork_choice_control::block_processor: Validating block with slot: 7443 +2024-09-30T09:03:23.582578Z INFO fork_choice_control::block_processor: Validating block with slot: 7444 +2024-09-30T09:03:23.589330Z INFO fork_choice_control::block_processor: Validating block with slot: 7445 +2024-09-30T09:03:23.611721Z INFO fork_choice_control::block_processor: Validating block with slot: 7446 +2024-09-30T09:03:23.667037Z INFO fork_choice_control::block_processor: Validating block with slot: 7447 +2024-09-30T09:03:23.892804Z INFO fork_choice_control::block_processor: Validating block with slot: 7449 +2024-09-30T09:03:23.892801Z INFO fork_choice_control::block_processor: Validating block with slot: 7448 +2024-09-30T09:03:23.913512Z INFO fork_choice_control::block_processor: Validating block with slot: 7450 +2024-09-30T09:03:23.916989Z INFO fork_choice_control::block_processor: Validating block with slot: 7451 +2024-09-30T09:03:23.928184Z INFO fork_choice_control::block_processor: Validating block with slot: 7452 +2024-09-30T09:03:23.994053Z INFO fork_choice_control::block_processor: Validating block with slot: 7454 +2024-09-30T09:03:23.994103Z INFO fork_choice_control::block_processor: Validating block with slot: 7453 +2024-09-30T09:03:23.994126Z INFO fork_choice_control::block_processor: Validating block with slot: 7455 +2024-09-30T09:03:23.994273Z INFO fork_choice_control::block_processor: Validating block with slot: 7456 +2024-09-30T09:03:23.999761Z INFO fork_choice_control::block_processor: Validating block with slot: 7457 +2024-09-30T09:03:24.040223Z INFO fork_choice_control::block_processor: Validating block with slot: 7458 +2024-09-30T09:03:24.066379Z INFO fork_choice_control::block_processor: Validating block with slot: 7459 +2024-09-30T09:03:24.081446Z INFO fork_choice_control::block_processor: Validating block with slot: 7460 +2024-09-30T09:03:24.085420Z INFO fork_choice_control::block_processor: Validating block with slot: 7461 +2024-09-30T09:03:24.096442Z INFO fork_choice_control::block_processor: Validating block with slot: 7462 +2024-09-30T09:03:24.100777Z INFO fork_choice_control::block_processor: Validating block with slot: 7463 +2024-09-30T09:03:24.116754Z INFO fork_choice_control::block_processor: Validating block with slot: 7464 +2024-09-30T09:03:24.131348Z INFO fork_choice_control::block_processor: Validating block with slot: 7465 +2024-09-30T09:03:24.140061Z INFO fork_choice_control::block_processor: Validating block with slot: 7466 +2024-09-30T09:03:24.439491Z INFO fork_choice_control::block_processor: Validating block with slot: 7467 +2024-09-30T09:03:24.439496Z INFO fork_choice_control::block_processor: Validating block with slot: 7468 +2024-09-30T09:03:24.439532Z INFO fork_choice_control::block_processor: Validating block with slot: 7470 +2024-09-30T09:03:24.439571Z INFO fork_choice_control::block_processor: Validating block with slot: 7469 +2024-09-30T09:03:24.439612Z INFO fork_choice_control::block_processor: Validating block with slot: 7471 +2024-09-30T09:03:24.439842Z INFO fork_choice_control::block_processor: Validating block with slot: 7472 +2024-09-30T09:03:24.440991Z INFO fork_choice_control::block_processor: Validating block with slot: 7473 +2024-09-30T09:03:24.442654Z INFO fork_choice_control::block_processor: Validating block with slot: 7474 +2024-09-30T09:03:24.442837Z INFO fork_choice_control::block_processor: Validating block with slot: 7475 +2024-09-30T09:03:24.444032Z INFO fork_choice_control::block_processor: Validating block with slot: 7476 +2024-09-30T09:03:24.444373Z INFO fork_choice_control::block_processor: Validating block with slot: 7477 +2024-09-30T09:03:24.444534Z INFO fork_choice_control::block_processor: Validating block with slot: 7478 +2024-09-30T09:03:24.444810Z INFO fork_choice_control::block_processor: Validating block with slot: 7479 +2024-09-30T09:03:24.444975Z INFO fork_choice_control::block_processor: Validating block with slot: 7480 +2024-09-30T09:03:24.446046Z INFO fork_choice_control::block_processor: Validating block with slot: 7481 +2024-09-30T09:03:24.446174Z INFO fork_choice_control::block_processor: Validating block with slot: 7482 +2024-09-30T09:03:24.449367Z INFO fork_choice_control::block_processor: Validating block with slot: 7483 +2024-09-30T09:03:24.466707Z INFO fork_choice_control::block_processor: Validating block with slot: 7484 +2024-09-30T09:03:24.485477Z INFO fork_choice_control::block_processor: Validating block with slot: 7485 +2024-09-30T09:03:24.485475Z INFO fork_choice_control::block_processor: Validating block with slot: 7486 +2024-09-30T09:03:24.505600Z INFO fork_choice_control::block_processor: Validating block with slot: 7488 +2024-09-30T09:03:24.505603Z INFO fork_choice_control::block_processor: Validating block with slot: 7487 +2024-09-30T09:03:24.525227Z INFO fork_choice_control::block_processor: Validating block with slot: 7489 +2024-09-30T09:03:24.525236Z INFO fork_choice_control::block_processor: Validating block with slot: 7490 +2024-09-30T09:03:24.533757Z INFO fork_choice_control::block_processor: Validating block with slot: 7491 +2024-09-30T09:03:24.544592Z INFO fork_choice_control::block_processor: Validating block with slot: 7492 +2024-09-30T09:03:24.544598Z INFO fork_choice_control::block_processor: Validating block with slot: 7493 +2024-09-30T09:03:24.596692Z INFO fork_choice_control::block_processor: Validating block with slot: 7494 +2024-09-30T09:03:24.596741Z INFO fork_choice_control::block_processor: Validating block with slot: 7497 +2024-09-30T09:03:24.596700Z INFO fork_choice_control::block_processor: Validating block with slot: 7496 +2024-09-30T09:03:24.596802Z INFO fork_choice_control::block_processor: Validating block with slot: 7498 +2024-09-30T09:03:24.597046Z INFO fork_choice_control::block_processor: Validating block with slot: 7499 +2024-09-30T09:03:24.597821Z INFO fork_choice_control::block_processor: Validating block with slot: 7500 +2024-09-30T09:03:24.615554Z INFO fork_choice_control::block_processor: Validating block with slot: 7374 +2024-09-30T09:03:24.615594Z INFO fork_choice_control::block_processor: Validating block with slot: 7501 +2024-09-30T09:03:24.627034Z INFO fork_choice_control::block_processor: Validating block with slot: 7376 +2024-09-30T09:03:24.627069Z INFO fork_choice_control::block_processor: Validating block with slot: 7375 +2024-09-30T09:03:24.642751Z INFO fork_choice_control::block_processor: Validating block with slot: 7310 +2024-09-30T09:03:24.644570Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x686c61e08167b406901a47f294786700c3f397306b813ecf39d7acaceeaaa7e9, slot: 7310 +2024-09-30T09:03:24.673578Z INFO fork_choice_control::block_processor: Validating block with slot: 7378 +2024-09-30T09:03:24.673593Z INFO fork_choice_control::block_processor: Validating block with slot: 7377 +2024-09-30T09:03:24.730768Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7310 +2024-09-30T09:03:24.730793Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7310 +2024-09-30T09:03:24.786489Z INFO fork_choice_control::block_processor: Validating block with slot: 7379 +2024-09-30T09:03:24.789444Z INFO fork_choice_control::block_processor: Validating block with slot: 7380 +2024-09-30T09:03:24.797731Z INFO fork_choice_control::block_processor: Validating block with slot: 7382 +2024-09-30T09:03:24.797728Z INFO fork_choice_control::block_processor: Validating block with slot: 7381 +2024-09-30T09:03:24.816681Z INFO fork_choice_control::block_processor: Validating block with slot: 7384 +2024-09-30T09:03:24.816694Z INFO fork_choice_control::block_processor: Validating block with slot: 7383 +2024-09-30T09:03:24.816789Z INFO fork_choice_control::block_processor: Validating block with slot: 7385 +2024-09-30T09:03:24.825096Z INFO fork_choice_control::block_processor: Validating block with slot: 7387 +2024-09-30T09:03:24.825093Z INFO fork_choice_control::block_processor: Validating block with slot: 7386 +2024-09-30T09:03:24.831798Z INFO fork_choice_control::block_processor: Validating block with slot: 7388 +2024-09-30T09:03:24.831801Z INFO fork_choice_control::block_processor: Validating block with slot: 7389 +2024-09-30T09:03:24.842048Z INFO fork_choice_control::block_processor: Validating block with slot: 7390 +2024-09-30T09:03:24.848162Z INFO fork_choice_control::block_processor: Validating block with slot: 7391 +2024-09-30T09:03:24.861602Z INFO fork_choice_control::block_processor: Validating block with slot: 7392 +2024-09-30T09:03:24.877935Z INFO fork_choice_control::block_processor: Validating block with slot: 7393 +2024-09-30T09:03:24.891198Z INFO fork_choice_control::block_processor: Validating block with slot: 7394 +2024-09-30T09:03:24.891200Z INFO fork_choice_control::block_processor: Validating block with slot: 7395 +2024-09-30T09:03:24.898571Z INFO fork_choice_control::block_processor: Validating block with slot: 7396 +2024-09-30T09:03:24.903864Z INFO fork_choice_control::block_processor: Validating block with slot: 7397 +2024-09-30T09:03:24.903870Z INFO fork_choice_control::block_processor: Validating block with slot: 7398 +2024-09-30T09:03:24.910674Z INFO fork_choice_control::block_processor: Validating block with slot: 7399 +2024-09-30T09:03:24.910767Z INFO fork_choice_control::block_processor: Validating block with slot: 7400 +2024-09-30T09:03:24.920915Z INFO fork_choice_control::block_processor: Validating block with slot: 7401 +2024-09-30T09:03:24.931178Z INFO fork_choice_control::block_processor: Validating block with slot: 7402 +2024-09-30T09:03:24.937447Z INFO fork_choice_control::block_processor: Validating block with slot: 7403 +2024-09-30T09:03:24.946114Z INFO fork_choice_control::block_processor: Validating block with slot: 7405 +2024-09-30T09:03:24.946117Z INFO fork_choice_control::block_processor: Validating block with slot: 7404 +2024-09-30T09:03:24.964499Z INFO fork_choice_control::block_processor: Validating block with slot: 7407 +2024-09-30T09:03:24.964496Z INFO fork_choice_control::block_processor: Validating block with slot: 7406 +2024-09-30T09:03:24.968653Z INFO fork_choice_control::block_processor: Validating block with slot: 7408 +2024-09-30T09:03:24.968683Z INFO fork_choice_control::block_processor: Validating block with slot: 7409 +2024-09-30T09:03:25.000186Z INFO fork_choice_control::block_processor: Validating block with slot: 7410 +2024-09-30T09:03:25.008045Z INFO fork_choice_control::block_processor: Validating block with slot: 7412 +2024-09-30T09:03:25.008050Z INFO fork_choice_control::block_processor: Validating block with slot: 7411 +2024-09-30T09:03:25.008088Z INFO fork_choice_control::block_processor: Validating block with slot: 7413 +2024-09-30T09:03:25.014704Z INFO fork_choice_control::block_processor: Validating block with slot: 7415 +2024-09-30T09:03:25.014716Z INFO fork_choice_control::block_processor: Validating block with slot: 7417 +2024-09-30T09:03:25.014722Z INFO fork_choice_control::block_processor: Validating block with slot: 7414 +2024-09-30T09:03:25.014734Z INFO fork_choice_control::block_processor: Validating block with slot: 7416 +2024-09-30T09:03:25.029390Z INFO fork_choice_control::block_processor: Validating block with slot: 7419 +2024-09-30T09:03:25.029393Z INFO fork_choice_control::block_processor: Validating block with slot: 7418 +2024-09-30T09:03:25.036394Z INFO fork_choice_control::block_processor: Validating block with slot: 7420 +2024-09-30T09:03:25.050897Z INFO fork_choice_control::block_processor: Validating block with slot: 7421 +2024-09-30T09:03:25.054766Z INFO fork_choice_control::block_processor: Validating block with slot: 7422 +2024-09-30T09:03:25.063512Z INFO fork_choice_control::block_processor: Validating block with slot: 7423 +2024-09-30T09:03:25.073129Z INFO fork_choice_control::block_processor: Validating block with slot: 7424 +2024-09-30T09:03:25.073231Z INFO fork_choice_control::block_processor: Validating block with slot: 7426 +2024-09-30T09:03:25.075511Z INFO fork_choice_control::block_processor: Validating block with slot: 7427 +2024-09-30T09:03:25.079980Z INFO fork_choice_control::block_processor: Validating block with slot: 7428 +2024-09-30T09:03:25.081369Z INFO fork_choice_control::block_processor: Validating block with slot: 7429 +2024-09-30T09:03:25.089320Z INFO fork_choice_control::block_processor: Validating block with slot: 7430 +2024-09-30T09:03:25.089325Z INFO fork_choice_control::block_processor: Validating block with slot: 7431 +2024-09-30T09:03:25.108974Z INFO fork_choice_control::block_processor: Validating block with slot: 7432 +2024-09-30T09:03:25.108976Z INFO fork_choice_control::block_processor: Validating block with slot: 7433 +2024-09-30T09:03:25.116049Z INFO fork_choice_control::block_processor: Validating block with slot: 7435 +2024-09-30T09:03:25.121868Z INFO fork_choice_control::block_processor: Validating block with slot: 7436 +2024-09-30T09:03:25.121871Z INFO fork_choice_control::block_processor: Validating block with slot: 7437 +2024-09-30T09:03:25.126313Z INFO fork_choice_control::block_processor: Validating block with slot: 7311 +2024-09-30T09:03:25.128271Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd9efbd61e6ab2f6713eb47cff0068ce9e332134c411334b1e137f6be36f08475, slot: 7311 +2024-09-30T09:03:25.134511Z INFO fork_choice_control::block_processor: Validating block with slot: 7312 +2024-09-30T09:03:25.145354Z INFO fork_choice_control::block_processor: Validating block with slot: 7313 +2024-09-30T09:03:25.153751Z INFO fork_choice_control::block_processor: Validating block with slot: 7314 +2024-09-30T09:03:25.155540Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7311 +2024-09-30T09:03:25.155554Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7311 +2024-09-30T09:03:25.167925Z INFO fork_choice_control::block_processor: Validating block with slot: 7316 +2024-09-30T09:03:25.167929Z INFO fork_choice_control::block_processor: Validating block with slot: 7315 +2024-09-30T09:03:25.170735Z INFO fork_choice_control::block_processor: Validating block with slot: 7312 +2024-09-30T09:03:25.172369Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x621ff6311cc7d9fa359696a2c0e4f11d970d8e8eaa7dca442d3bb4aada6e219e, slot: 7312 +2024-09-30T09:03:25.187067Z INFO fork_choice_control::block_processor: Validating block with slot: 7318 +2024-09-30T09:03:25.187079Z INFO fork_choice_control::block_processor: Validating block with slot: 7317 +2024-09-30T09:03:25.200394Z INFO fork_choice_control::block_processor: Validating block with slot: 7319 +2024-09-30T09:03:25.200448Z INFO fork_choice_control::block_processor: Validating block with slot: 7320 +2024-09-30T09:03:25.201941Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7312 +2024-09-30T09:03:25.201956Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7312 +2024-09-30T09:03:25.216983Z INFO fork_choice_control::block_processor: Validating block with slot: 7313 +2024-09-30T09:03:25.219170Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2df2190368dccfe6e0fa0cc5bfe2bec852467197bdd212f56bdc084cb1441898, slot: 7313 +2024-09-30T09:03:25.229507Z INFO fork_choice_control::block_processor: Validating block with slot: 7322 +2024-09-30T09:03:25.229552Z INFO fork_choice_control::block_processor: Validating block with slot: 7321 +2024-09-30T09:03:25.234559Z INFO fork_choice_control::block_processor: Validating block with slot: 7324 +2024-09-30T09:03:25.234628Z INFO fork_choice_control::block_processor: Validating block with slot: 7323 +2024-09-30T09:03:25.245715Z INFO fork_choice_control::block_processor: Validating block with slot: 7325 +2024-09-30T09:03:25.247264Z INFO fork_choice_control::block_processor: Validating block with slot: 7326 +2024-09-30T09:03:25.256099Z INFO fork_choice_control::block_processor: Validating block with slot: 7327 +2024-09-30T09:03:25.256155Z INFO fork_choice_control::block_processor: Validating block with slot: 7328 +2024-09-30T09:03:25.256396Z INFO fork_choice_control::block_processor: Validating block with slot: 7329 +2024-09-30T09:03:25.261335Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7313 +2024-09-30T09:03:25.261356Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7313 +2024-09-30T09:03:25.267836Z INFO fork_choice_control::block_processor: Validating block with slot: 7332 +2024-09-30T09:03:25.267854Z INFO fork_choice_control::block_processor: Validating block with slot: 7331 +2024-09-30T09:03:25.267965Z INFO fork_choice_control::block_processor: Validating block with slot: 7333 +2024-09-30T09:03:25.287574Z INFO fork_choice_control::block_processor: Validating block with slot: 7314 +2024-09-30T09:03:25.289627Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcdb7301e1aa03f7bf7fd49cc39ce33436d5b372783cf9d04d9a899c225f241c5, slot: 7314 +2024-09-30T09:03:25.299859Z INFO fork_choice_control::block_processor: Validating block with slot: 7334 +2024-09-30T09:03:25.299913Z INFO fork_choice_control::block_processor: Validating block with slot: 7335 +2024-09-30T09:03:25.304656Z INFO fork_choice_control::block_processor: Validating block with slot: 7337 +2024-09-30T09:03:25.304713Z INFO fork_choice_control::block_processor: Validating block with slot: 7336 +2024-09-30T09:03:25.305890Z INFO fork_choice_control::block_processor: Validating block with slot: 7338 +2024-09-30T09:03:25.312757Z INFO fork_choice_control::block_processor: Validating block with slot: 7339 +2024-09-30T09:03:25.312765Z INFO fork_choice_control::block_processor: Validating block with slot: 7340 +2024-09-30T09:03:25.313303Z INFO fork_choice_control::block_processor: Validating block with slot: 7341 +2024-09-30T09:03:25.321177Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7314 +2024-09-30T09:03:25.321190Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7314 +2024-09-30T09:03:25.322050Z INFO fork_choice_control::block_processor: Validating block with slot: 7342 +2024-09-30T09:03:25.322061Z INFO fork_choice_control::block_processor: Validating block with slot: 7343 +2024-09-30T09:03:25.336622Z INFO fork_choice_control::block_processor: Validating block with slot: 7345 +2024-09-30T09:03:25.336627Z INFO fork_choice_control::block_processor: Validating block with slot: 7346 +2024-09-30T09:03:25.336666Z INFO fork_choice_control::block_processor: Validating block with slot: 7347 +2024-09-30T09:03:25.337287Z INFO fork_choice_control::block_processor: Validating block with slot: 7315 +2024-09-30T09:03:25.339301Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4a5b9e634aa0e6899aee8e7bd0447a4053d1a0a6d1f03e306dc714b4787f8044, slot: 7315 +2024-09-30T09:03:25.340127Z INFO fork_choice_control::block_processor: Validating block with slot: 7348 +2024-09-30T09:03:25.344177Z INFO fork_choice_control::block_processor: Validating block with slot: 7350 +2024-09-30T09:03:25.344483Z INFO fork_choice_control::block_processor: Validating block with slot: 7351 +2024-09-30T09:03:25.366285Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7315 +2024-09-30T09:03:25.366305Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7315 +2024-09-30T09:03:25.382462Z INFO fork_choice_control::block_processor: Validating block with slot: 7316 +2024-09-30T09:03:25.383695Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3d5a3dd6006fb90acac284f0e3d508365eab877bdd034163f8a29c2368f20fa1, slot: 7316 +2024-09-30T09:03:25.403630Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7316 +2024-09-30T09:03:25.403644Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7316 +2024-09-30T09:03:25.419715Z INFO fork_choice_control::block_processor: Validating block with slot: 7317 +2024-09-30T09:03:25.420948Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa7c9e92e701c136f2ca668769585620eb097366e481cb8fafb001853377a6aa1, slot: 7317 +2024-09-30T09:03:25.434359Z INFO fork_choice_control::block_processor: Validating block with slot: 7352 +2024-09-30T09:03:25.439071Z INFO fork_choice_control::block_processor: Validating block with slot: 7353 +2024-09-30T09:03:25.439092Z INFO fork_choice_control::block_processor: Validating block with slot: 7354 +2024-09-30T09:03:25.439124Z INFO fork_choice_control::block_processor: Validating block with slot: 7355 +2024-09-30T09:03:25.439740Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7317 +2024-09-30T09:03:25.439753Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7317 +2024-09-30T09:03:25.456087Z INFO fork_choice_control::block_processor: Validating block with slot: 7318 +2024-09-30T09:03:25.457058Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xec6d9f835a9c4093f33a8ff8f1bdc32cbb0b2c5f05d6c70941ca01ef016fbcc0, slot: 7318 +2024-09-30T09:03:25.475616Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7318 +2024-09-30T09:03:25.475636Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7318 +2024-09-30T09:03:25.491983Z INFO fork_choice_control::block_processor: Validating block with slot: 7319 +2024-09-30T09:03:25.492969Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeaac70feec6b94bc1a16cb02fe39dc3f0ae9e61eb8f2519b56f5136644afe28a, slot: 7319 +2024-09-30T09:03:25.512448Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7319 +2024-09-30T09:03:25.512470Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7319 +2024-09-30T09:03:25.535033Z INFO fork_choice_control::block_processor: Validating block with slot: 7320 +2024-09-30T09:03:25.535038Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 227, root: 0x297b972e8bef34e7bc94bce089ba0ee83b901608752054f02e49cfe6d527f1c5, head slot: 7319, head root: 0xeaac70feec6b94bc1a16cb02fe39dc3f0ae9e61eb8f2519b56f5136644afe28a) +2024-09-30T09:03:25.536167Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x200340e49afdf113e6c153fa18ad3e9cd0c1c76f34c69cff778ff29c6810093d, slot: 7320 +2024-09-30T09:03:25.561043Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7320 +2024-09-30T09:03:25.561064Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7320 +2024-09-30T09:03:25.578339Z INFO fork_choice_control::block_processor: Validating block with slot: 7321 +2024-09-30T09:03:25.579703Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc4ec335b7f2e7f7deb19d70adc03e5a7b4a1513c0f17b3eefb70c9ef0ae293e2, slot: 7321 +2024-09-30T09:03:25.602266Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7321 +2024-09-30T09:03:25.602289Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7321 +2024-09-30T09:03:25.619769Z INFO fork_choice_control::block_processor: Validating block with slot: 7322 +2024-09-30T09:03:25.620896Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xac7c59b16629ef5b6b6b22407444292c725be017e38254c5bea4c33eb1edd3bc, slot: 7322 +2024-09-30T09:03:25.641632Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7322 +2024-09-30T09:03:25.641649Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7322 +2024-09-30T09:03:25.659168Z INFO fork_choice_control::block_processor: Validating block with slot: 7323 +2024-09-30T09:03:25.660192Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe9f77d2d5d232aac23c8262e59e064dda49d860c1077e301013f69cdb3eddb52, slot: 7323 +2024-09-30T09:03:25.680384Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7323 +2024-09-30T09:03:25.680406Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7323 +2024-09-30T09:03:25.683243Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 7264 +2024-09-30T09:03:25.698755Z INFO fork_choice_control::block_processor: Validating block with slot: 7324 +2024-09-30T09:03:25.699747Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9c2ae7cc5b03a25ea653b239de2aee4e912ecf86e59acf2e9fdb97a986f0aa26, slot: 7324 +2024-09-30T09:03:25.720792Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7324 +2024-09-30T09:03:25.720812Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7324 +2024-09-30T09:03:25.739343Z INFO fork_choice_control::block_processor: Validating block with slot: 7325 +2024-09-30T09:03:25.740332Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x61b6176157d11c87ffd90b957754e01071bc1350d4eb1be9754164f7ffd7c65e, slot: 7325 +2024-09-30T09:03:25.760486Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7325 +2024-09-30T09:03:25.760508Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7325 +2024-09-30T09:03:25.778181Z INFO fork_choice_control::block_processor: Validating block with slot: 7326 +2024-09-30T09:03:25.779884Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2ecec64175b3092615b6e38e64860aab9dced11f252e32b652f9dec2d2a6f119, slot: 7326 +2024-09-30T09:03:25.802347Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7326 +2024-09-30T09:03:25.802363Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7326 +2024-09-30T09:03:25.820662Z INFO fork_choice_control::block_processor: Validating block with slot: 7327 +2024-09-30T09:03:25.822548Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeea2d06a347b2b6d7822ad42f659756d10792fcd971db19fbbfe3794ece8c9c3, slot: 7327 +2024-09-30T09:03:25.857413Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7327 +2024-09-30T09:03:25.857434Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7327 +2024-09-30T09:03:25.875848Z INFO fork_choice_control::block_processor: Validating block with slot: 7356 +2024-09-30T09:03:25.875869Z INFO fork_choice_control::block_processor: Validating block with slot: 7360 +2024-09-30T09:03:25.875885Z INFO fork_choice_control::block_processor: Validating block with slot: 7359 +2024-09-30T09:03:25.875952Z INFO fork_choice_control::block_processor: Validating block with slot: 7361 +2024-09-30T09:03:25.875976Z INFO fork_choice_control::block_processor: Validating block with slot: 7357 +2024-09-30T09:03:25.876086Z INFO fork_choice_control::block_processor: Validating block with slot: 7358 +2024-09-30T09:03:25.876579Z INFO fork_choice_control::block_processor: Validating block with slot: 7363 +2024-09-30T09:03:25.877658Z INFO fork_choice_control::block_processor: Validating block with slot: 7364 +2024-09-30T09:03:25.878576Z INFO fork_choice_control::block_processor: Validating block with slot: 7365 +2024-09-30T09:03:25.878637Z INFO fork_choice_control::block_processor: Validating block with slot: 7366 +2024-09-30T09:03:25.878804Z INFO fork_choice_control::block_processor: Validating block with slot: 7367 +2024-09-30T09:03:25.878807Z INFO fork_choice_control::block_processor: Validating block with slot: 7368 +2024-09-30T09:03:25.879883Z INFO fork_choice_control::block_processor: Validating block with slot: 7369 +2024-09-30T09:03:25.879962Z INFO fork_choice_control::block_processor: Validating block with slot: 7370 +2024-09-30T09:03:25.880113Z INFO fork_choice_control::block_processor: Validating block with slot: 7371 +2024-09-30T09:03:25.880860Z INFO fork_choice_control::block_processor: Validating block with slot: 7372 +2024-09-30T09:03:25.881269Z INFO fork_choice_control::block_processor: Validating block with slot: 7373 +2024-09-30T09:03:25.882958Z INFO fork_choice_control::block_processor: Validating block with slot: 7328 +2024-09-30T09:03:25.884364Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf70f90774d3c1ef3a7df58416ff2b5daf5189ec6b8a7b352ed282d459d9714a8, slot: 7328 +2024-09-30T09:03:25.985713Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7328 +2024-09-30T09:03:25.985737Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7328 +2024-09-30T09:03:25.996902Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7328) +2024-09-30T09:03:25.997102Z INFO fork_choice_control::block_processor: Validating block with slot: 7329 +2024-09-30T09:03:25.998054Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x41c426b5ee9573b528fabe05e20dbaf3d6dd316d800afc0e97d6c60a906416ee, slot: 7329 +2024-09-30T09:03:26.080253Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7329 +2024-09-30T09:03:26.080272Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7329 +2024-09-30T09:03:26.092067Z INFO fork_choice_control::block_processor: Validating block with slot: 7331 +2024-09-30T09:03:26.094844Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0fb2fc5ed32a0ae1af05732e9724a81551c719eb4558e71c74121dd096d0109d, slot: 7331 +2024-09-30T09:03:26.118177Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7331 +2024-09-30T09:03:26.118197Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7331 +2024-09-30T09:03:26.130820Z INFO fork_choice_control::block_processor: Validating block with slot: 7332 +2024-09-30T09:03:26.132031Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa92f6a7222f8ed08745ab4f002d035ee26696acc9a65ed29b3c4b1c8f901b758, slot: 7332 +2024-09-30T09:03:26.144684Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7332 +2024-09-30T09:03:26.144703Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7332 +2024-09-30T09:03:26.157414Z INFO fork_choice_control::block_processor: Validating block with slot: 7333 +2024-09-30T09:03:26.158911Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xefb8543d851ef6754cc849e6a7ab079240f7cd3147daa703168faefc65251554, slot: 7333 +2024-09-30T09:03:26.173373Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7333 +2024-09-30T09:03:26.173394Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7333 +2024-09-30T09:03:26.186543Z INFO fork_choice_control::block_processor: Validating block with slot: 7334 +2024-09-30T09:03:26.189353Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xecbee391c2a246ced940f0721872a8de4e802d41b1ed100b42dfef82044db556, slot: 7334 +2024-09-30T09:03:26.208963Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7334 +2024-09-30T09:03:26.208983Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7334 +2024-09-30T09:03:26.222118Z INFO fork_choice_control::block_processor: Validating block with slot: 7335 +2024-09-30T09:03:26.223245Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7c708be0108dbf3ecdf699958d5aaa477e3dbdba0b434c15e828a4adeff22273, slot: 7335 +2024-09-30T09:03:26.237570Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7335 +2024-09-30T09:03:26.237588Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7335 +2024-09-30T09:03:26.251396Z INFO fork_choice_control::block_processor: Validating block with slot: 7336 +2024-09-30T09:03:26.253361Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb13dbce5f1f0c1c8143684a2d68ac72d2d3bcdcf5a876e222ad6d8a1d9064406, slot: 7336 +2024-09-30T09:03:26.271115Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7336 +2024-09-30T09:03:26.271136Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7336 +2024-09-30T09:03:26.285786Z INFO fork_choice_control::block_processor: Validating block with slot: 7337 +2024-09-30T09:03:26.287140Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe56cd2cab61c4a6a7c444dcc81adee7b9142a08548f71e06d378a9d29ef07283, slot: 7337 +2024-09-30T09:03:26.305151Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7337 +2024-09-30T09:03:26.305175Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7337 +2024-09-30T09:03:26.321177Z INFO fork_choice_control::block_processor: Validating block with slot: 7338 +2024-09-30T09:03:26.322319Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x61fdb8f7d06f4ebef29b8466d843d52fbf8239816d651a0e6c288d7eb34fe3dd, slot: 7338 +2024-09-30T09:03:26.339051Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7338 +2024-09-30T09:03:26.339074Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7338 +2024-09-30T09:03:26.353217Z INFO fork_choice_control::block_processor: Validating block with slot: 7339 +2024-09-30T09:03:26.355070Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x58da108daefba835c6286a642743922e5e9cbbe058bfb9d9b328bfd9f59fa230, slot: 7339 +2024-09-30T09:03:26.372074Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7339 +2024-09-30T09:03:26.372095Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7339 +2024-09-30T09:03:26.385842Z INFO fork_choice_control::block_processor: Validating block with slot: 7340 +2024-09-30T09:03:26.386813Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe0ef785adb010364401cfd1801f43b5a45067a40832ba3eaeb3f38e1974f775b, slot: 7340 +2024-09-30T09:03:26.398087Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7340 +2024-09-30T09:03:26.398110Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7340 +2024-09-30T09:03:26.411835Z INFO fork_choice_control::block_processor: Validating block with slot: 7341 +2024-09-30T09:03:26.413231Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3eb52f97466bcdb69427b750c2739fd95786b968bc0176a7f62860ae482d476a, slot: 7341 +2024-09-30T09:03:26.424312Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7341 +2024-09-30T09:03:26.424325Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7341 +2024-09-30T09:03:26.438188Z INFO fork_choice_control::block_processor: Validating block with slot: 7342 +2024-09-30T09:03:26.441865Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd7f825fbee1f46403fcc9bdf1d0118f046cdc52777132e2b6bbee7be9a149ff9, slot: 7342 +2024-09-30T09:03:26.461563Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7342 +2024-09-30T09:03:26.461586Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7342 +2024-09-30T09:03:26.475768Z INFO fork_choice_control::block_processor: Validating block with slot: 7343 +2024-09-30T09:03:26.477044Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x635802df59b79edf60cc789bc3cd867d2052dc4a25fc6f289250db2f6fe2cecb, slot: 7343 +2024-09-30T09:03:26.490657Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7343 +2024-09-30T09:03:26.490675Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7343 +2024-09-30T09:03:26.505263Z INFO fork_choice_control::block_processor: Validating block with slot: 7345 +2024-09-30T09:03:26.508523Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x21faa73add6351b4c4b416e87186d9960466f90ca9c16bc234178147ecb5fcfa, slot: 7345 +2024-09-30T09:03:26.531094Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7345 +2024-09-30T09:03:26.531115Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7345 +2024-09-30T09:03:26.546421Z INFO fork_choice_control::block_processor: Validating block with slot: 7346 +2024-09-30T09:03:26.547412Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3e9c5a38cda6e19fcca762824d831475d2749c5e870e234e0be703cfadfbe77d, slot: 7346 +2024-09-30T09:03:26.560977Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7346 +2024-09-30T09:03:26.560998Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7346 +2024-09-30T09:03:26.576140Z INFO fork_choice_control::block_processor: Validating block with slot: 7347 +2024-09-30T09:03:26.577277Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x005987f99d9bbb52c349b465fd00bf7aa5fc59cc611e2c2e43dbcd7129a7662f, slot: 7347 +2024-09-30T09:03:26.587367Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7347 +2024-09-30T09:03:26.587383Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7347 +2024-09-30T09:03:26.603023Z INFO fork_choice_control::block_processor: Validating block with slot: 7348 +2024-09-30T09:03:26.604532Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x71f615bc0337d7a1fa852ba97e619926ca6ca858da0087b5c027507510cec6ea, slot: 7348 +2024-09-30T09:03:26.620253Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7348 +2024-09-30T09:03:26.620276Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7348 +2024-09-30T09:03:26.636463Z INFO fork_choice_control::block_processor: Validating block with slot: 7350 +2024-09-30T09:03:26.638406Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe3c6aff92d0c91b386e5f90a102abc41027a3eef1414412d45c3e55b9126b351, slot: 7350 +2024-09-30T09:03:26.659099Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7350 +2024-09-30T09:03:26.659120Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7350 +2024-09-30T09:03:26.675213Z INFO fork_choice_control::block_processor: Validating block with slot: 7351 +2024-09-30T09:03:26.676450Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x47bae1ef94dce6b5b64b90a805252c51c1e2e76dcb468fb7edc6ccfb5614edba, slot: 7351 +2024-09-30T09:03:26.689208Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7351 +2024-09-30T09:03:26.689230Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7351 +2024-09-30T09:03:26.711417Z INFO fork_choice_control::block_processor: Validating block with slot: 7352 +2024-09-30T09:03:26.711420Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 228, root: 0xb1afe2d67626c34f974794334aa9a5053c7bc7a2751548ab23f428dbc4169d42, head slot: 7351, head root: 0x47bae1ef94dce6b5b64b90a805252c51c1e2e76dcb468fb7edc6ccfb5614edba) +2024-09-30T09:03:26.712816Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf4cbadba24f0a41a0e3b73d7ae72c7b1db3bff089b4ac5983ea6ba345cf28134, slot: 7352 +2024-09-30T09:03:26.726076Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7352 +2024-09-30T09:03:26.726105Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7352 +2024-09-30T09:03:26.743263Z INFO fork_choice_control::block_processor: Validating block with slot: 7353 +2024-09-30T09:03:26.744374Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6efe211fe639f5e63a5e486991fa3fa5f9da43207f2ffbf73c0493d679e44cd4, slot: 7353 +2024-09-30T09:03:26.755787Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7353 +2024-09-30T09:03:26.755806Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7353 +2024-09-30T09:03:26.772813Z INFO fork_choice_control::block_processor: Validating block with slot: 7354 +2024-09-30T09:03:26.774081Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc9aee2657fa5d32f89eec204f561131a8c24b49202809ff701d704cde73abb25, slot: 7354 +2024-09-30T09:03:26.786627Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7354 +2024-09-30T09:03:26.786648Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7354 +2024-09-30T09:03:26.805864Z INFO fork_choice_control::block_processor: Validating block with slot: 7355 +2024-09-30T09:03:26.807148Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5c4f395bf0ec2e3a86923477ce85d2c22cdc575f922f62fcc8d6a68117944c8c, slot: 7355 +2024-09-30T09:03:26.819777Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7355 +2024-09-30T09:03:26.819799Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7355 +2024-09-30T09:03:26.837619Z INFO fork_choice_control::block_processor: Validating block with slot: 7356 +2024-09-30T09:03:26.838601Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe2b0cede4fca2e52ccd43964a4360841a1b71564412651d754aa63dea3bbf41a, slot: 7356 +2024-09-30T09:03:26.849350Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 7296 +2024-09-30T09:03:26.852854Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7356 +2024-09-30T09:03:26.852865Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7356 +2024-09-30T09:03:26.871248Z INFO fork_choice_control::block_processor: Validating block with slot: 7357 +2024-09-30T09:03:26.872609Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x84662990ca73815193adb02b2343bac412cee86e0c286e67fd058223ed33eccf, slot: 7357 +2024-09-30T09:03:26.886496Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7357 +2024-09-30T09:03:26.886517Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7357 +2024-09-30T09:03:26.905048Z INFO fork_choice_control::block_processor: Validating block with slot: 7358 +2024-09-30T09:03:26.906866Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfa021001cd827bf109659565c896d432afc17ae629e29bf70303ef080a8e3397, slot: 7358 +2024-09-30T09:03:26.921042Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7358 +2024-09-30T09:03:26.921060Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7358 +2024-09-30T09:03:26.939839Z INFO fork_choice_control::block_processor: Validating block with slot: 7359 +2024-09-30T09:03:26.942557Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf955526a53e8e4d812cb8892db7faa1ec09b722e4f7dac3c77d231ca927957ea, slot: 7359 +2024-09-30T09:03:26.959501Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7359 +2024-09-30T09:03:26.959525Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7359 +2024-09-30T09:03:26.978757Z INFO fork_choice_control::block_processor: Validating block with slot: 7360 +2024-09-30T09:03:26.980197Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0d03ce9b7d8327b6718aa3271b72ae4ce22aca733ccb0e6a86d958f2615cb683, slot: 7360 +2024-09-30T09:03:27.084903Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7360 +2024-09-30T09:03:27.084928Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7360 +2024-09-30T09:03:27.096558Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7360) +2024-09-30T09:03:27.096679Z INFO fork_choice_control::block_processor: Validating block with slot: 7361 +2024-09-30T09:03:27.098447Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa58a6b5b13ab06eed12f5e5f513527e040d744b5bedcf738f995d90c8be2758d, slot: 7361 +2024-09-30T09:03:27.182191Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7361 +2024-09-30T09:03:27.182214Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7361 +2024-09-30T09:03:27.195111Z INFO fork_choice_control::block_processor: Validating block with slot: 7363 +2024-09-30T09:03:27.197827Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x17460b65c39950c47fa7546b8232677a28cb897037442deb5d06aef5c913173e, slot: 7363 +2024-09-30T09:03:27.210969Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7363 +2024-09-30T09:03:27.210995Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7363 +2024-09-30T09:03:27.223921Z INFO fork_choice_control::block_processor: Validating block with slot: 7364 +2024-09-30T09:03:27.225245Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x930aa34ae17912ac94707a310e6f17d54db6476f9503992f8311277807e22d0a, slot: 7364 +2024-09-30T09:03:27.232857Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7364 +2024-09-30T09:03:27.232878Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7364 +2024-09-30T09:03:27.246663Z INFO fork_choice_control::block_processor: Validating block with slot: 7365 +2024-09-30T09:03:27.248028Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa94024983c277cd7d4e5cd72fb94a419757f1163b8c0aee756e1e37881f265dd, slot: 7365 +2024-09-30T09:03:27.255376Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7365 +2024-09-30T09:03:27.255390Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7365 +2024-09-30T09:03:27.269393Z INFO fork_choice_control::block_processor: Validating block with slot: 7366 +2024-09-30T09:03:27.271676Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x807ae928a6bf2ea5a7896c4c26944f98d623efababefe48aa9e1bc2873746e61, slot: 7366 +2024-09-30T09:03:27.282652Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7366 +2024-09-30T09:03:27.282673Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7366 +2024-09-30T09:03:27.293506Z INFO fork_choice_control::block_processor: Validating block with slot: 7566 +2024-09-30T09:03:27.294673Z INFO fork_choice_control::block_processor: Validating block with slot: 7567 +2024-09-30T09:03:27.296943Z INFO fork_choice_control::block_processor: Validating block with slot: 7367 +2024-09-30T09:03:27.297146Z INFO fork_choice_control::block_processor: Validating block with slot: 7568 +2024-09-30T09:03:27.297214Z INFO fork_choice_control::block_processor: Validating block with slot: 7569 +2024-09-30T09:03:27.298732Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8c62f93464455526ba9d227959f0e017bade81988f05923d5fbf3feede23e662, slot: 7367 +2024-09-30T09:03:27.300937Z INFO fork_choice_control::block_processor: Validating block with slot: 7570 +2024-09-30T09:03:27.305068Z INFO fork_choice_control::block_processor: Validating block with slot: 7571 +2024-09-30T09:03:27.308922Z INFO fork_choice_control::block_processor: Validating block with slot: 7572 +2024-09-30T09:03:27.309117Z INFO fork_choice_control::block_processor: Validating block with slot: 7573 +2024-09-30T09:03:27.310497Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7367 +2024-09-30T09:03:27.310509Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7367 +2024-09-30T09:03:27.325150Z INFO fork_choice_control::block_processor: Validating block with slot: 7368 +2024-09-30T09:03:27.326354Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf249ce28d5a6b2a918e0353898bd5b008890aa5e26f360dbf6268e24c87d3ad7, slot: 7368 +2024-09-30T09:03:27.333064Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7368 +2024-09-30T09:03:27.333084Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7368 +2024-09-30T09:03:27.346878Z INFO fork_choice_control::block_processor: Validating block with slot: 7369 +2024-09-30T09:03:27.348443Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbf4dbb9f86d7f4d16685df31e5c0ba642c1652b34fd806bb497dc5ae3cd2afb0, slot: 7369 +2024-09-30T09:03:27.355586Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7369 +2024-09-30T09:03:27.355603Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7369 +2024-09-30T09:03:27.369500Z INFO fork_choice_control::block_processor: Validating block with slot: 7370 +2024-09-30T09:03:27.370721Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8aadc9f83b21a9f638f26757a41a2f11ce6288f3d693b786d64c4cf90f4a4392, slot: 7370 +2024-09-30T09:03:27.376952Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7370 +2024-09-30T09:03:27.376973Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7370 +2024-09-30T09:03:27.390693Z INFO fork_choice_control::block_processor: Validating block with slot: 7371 +2024-09-30T09:03:27.392043Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc1b9be351ac228a3885e37f27b6c3e2a4dcc3d60cee64cb030016e3912760fd3, slot: 7371 +2024-09-30T09:03:27.398644Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7371 +2024-09-30T09:03:27.398664Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7371 +2024-09-30T09:03:27.412811Z INFO fork_choice_control::block_processor: Validating block with slot: 7372 +2024-09-30T09:03:27.413905Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeca352328ecb0660ede28334eaf9e6aed96a1b52553c9d5a90f93eaf42488986, slot: 7372 +2024-09-30T09:03:27.419783Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7372 +2024-09-30T09:03:27.419796Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7372 +2024-09-30T09:03:27.437573Z INFO fork_choice_control::block_processor: Validating block with slot: 7373 +2024-09-30T09:03:27.439428Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x864198e077934b66c3ae2f5e65ec9eb9c7de8ea7a1d05f97dd4e167da1dc2cc2, slot: 7373 +2024-09-30T09:03:27.454652Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7373 +2024-09-30T09:03:27.454675Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7373 +2024-09-30T09:03:27.470567Z INFO fork_choice_control::block_processor: Validating block with slot: 7374 +2024-09-30T09:03:27.471804Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdebaeb8159393e9c5f307a71d151c1cc9c7d7375b8fe0d4f4f01bcab4f88bf4f, slot: 7374 +2024-09-30T09:03:27.478702Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7374 +2024-09-30T09:03:27.478721Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7374 +2024-09-30T09:03:27.493811Z INFO fork_choice_control::block_processor: Validating block with slot: 7375 +2024-09-30T09:03:27.494925Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3545aa62f6a89dfce913ddf599b27753485214caef9727c9117d6d9ba0617d69, slot: 7375 +2024-09-30T09:03:27.500782Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7375 +2024-09-30T09:03:27.500796Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7375 +2024-09-30T09:03:27.515915Z INFO fork_choice_control::block_processor: Validating block with slot: 7376 +2024-09-30T09:03:27.517012Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe71ce18eb022a3807e89d602ae58bb4bbe7408f88860037470c614f935161617, slot: 7376 +2024-09-30T09:03:27.523160Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7376 +2024-09-30T09:03:27.523171Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7376 +2024-09-30T09:03:27.538922Z INFO fork_choice_control::block_processor: Validating block with slot: 7377 +2024-09-30T09:03:27.540544Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xde68ad09534a1972e9eb454f37ec06487764105c8cde44d2983e0af85126ed9d, slot: 7377 +2024-09-30T09:03:27.548063Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7377 +2024-09-30T09:03:27.548083Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7377 +2024-09-30T09:03:27.556373Z INFO fork_choice_control::block_processor: Validating block with slot: 7577 +2024-09-30T09:03:27.556369Z INFO fork_choice_control::block_processor: Validating block with slot: 7575 +2024-09-30T09:03:27.556403Z INFO fork_choice_control::block_processor: Validating block with slot: 7574 +2024-09-30T09:03:27.556423Z INFO fork_choice_control::block_processor: Validating block with slot: 7579 +2024-09-30T09:03:27.556422Z INFO fork_choice_control::block_processor: Validating block with slot: 7580 +2024-09-30T09:03:27.556927Z INFO fork_choice_control::block_processor: Validating block with slot: 7576 +2024-09-30T09:03:27.557515Z INFO fork_choice_control::block_processor: Validating block with slot: 7581 +2024-09-30T09:03:27.557759Z INFO fork_choice_control::block_processor: Validating block with slot: 7582 +2024-09-30T09:03:27.559106Z INFO fork_choice_control::block_processor: Validating block with slot: 7583 +2024-09-30T09:03:27.559295Z INFO fork_choice_control::block_processor: Validating block with slot: 7584 +2024-09-30T09:03:27.559523Z INFO fork_choice_control::block_processor: Validating block with slot: 7578 +2024-09-30T09:03:27.559861Z INFO fork_choice_control::block_processor: Validating block with slot: 7585 +2024-09-30T09:03:27.560367Z INFO fork_choice_control::block_processor: Validating block with slot: 7586 +2024-09-30T09:03:27.561015Z INFO fork_choice_control::block_processor: Validating block with slot: 7587 +2024-09-30T09:03:27.562063Z INFO fork_choice_control::block_processor: Validating block with slot: 7588 +2024-09-30T09:03:27.563155Z INFO fork_choice_control::block_processor: Validating block with slot: 7589 +2024-09-30T09:03:27.563795Z INFO fork_choice_control::block_processor: Validating block with slot: 7378 +2024-09-30T09:03:27.565137Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9505d3f94e0220b6af436edd1e6fbd0e97eee5d3abb66037bde0f399eae1aaa4, slot: 7378 +2024-09-30T09:03:27.571599Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7378 +2024-09-30T09:03:27.571612Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7378 +2024-09-30T09:03:27.587977Z INFO fork_choice_control::block_processor: Validating block with slot: 7379 +2024-09-30T09:03:27.589480Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb430d566b0ee256f5e701fc3992725b886d2db2e9d0dc86c372df91e963a780b, slot: 7379 +2024-09-30T09:03:27.597021Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7379 +2024-09-30T09:03:27.597042Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7379 +2024-09-30T09:03:27.612733Z INFO fork_choice_control::block_processor: Validating block with slot: 7380 +2024-09-30T09:03:27.614928Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8efdb03ca5cab8ccbb3c96b41c8233fdbc437b14d96e9686b11154c89b7c547b, slot: 7380 +2024-09-30T09:03:27.623820Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7380 +2024-09-30T09:03:27.623831Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7380 +2024-09-30T09:03:27.640256Z INFO fork_choice_control::block_processor: Validating block with slot: 7381 +2024-09-30T09:03:27.642352Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdd6fd87e5fd83e7eb5e3d659c2948dc4fe818d4c8d469aa0d13251ce33b35462, slot: 7381 +2024-09-30T09:03:27.653328Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7381 +2024-09-30T09:03:27.653353Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7381 +2024-09-30T09:03:27.671040Z INFO fork_choice_control::block_processor: Validating block with slot: 7382 +2024-09-30T09:03:27.672072Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x235e9a8da43eb4645a75ccf2f4e3aed8a55454cf28a51c201c20e749794fb921, slot: 7382 +2024-09-30T09:03:27.679293Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7382 +2024-09-30T09:03:27.679316Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7382 +2024-09-30T09:03:27.684904Z INFO fork_choice_control::block_processor: Validating block with slot: 7590 +2024-09-30T09:03:27.684927Z INFO fork_choice_control::block_processor: Validating block with slot: 7592 +2024-09-30T09:03:27.684944Z INFO fork_choice_control::block_processor: Validating block with slot: 7593 +2024-09-30T09:03:27.684985Z INFO fork_choice_control::block_processor: Validating block with slot: 7591 +2024-09-30T09:03:27.685227Z INFO fork_choice_control::block_processor: Validating block with slot: 7594 +2024-09-30T09:03:27.685304Z INFO fork_choice_control::block_processor: Validating block with slot: 7595 +2024-09-30T09:03:27.685984Z INFO fork_choice_control::block_processor: Validating block with slot: 7596 +2024-09-30T09:03:27.686034Z INFO fork_choice_control::block_processor: Validating block with slot: 7597 +2024-09-30T09:03:27.686566Z INFO fork_choice_control::block_processor: Validating block with slot: 7598 +2024-09-30T09:03:27.686712Z INFO fork_choice_control::block_processor: Validating block with slot: 7599 +2024-09-30T09:03:27.687111Z INFO fork_choice_control::block_processor: Validating block with slot: 7600 +2024-09-30T09:03:27.687642Z INFO fork_choice_control::block_processor: Validating block with slot: 7601 +2024-09-30T09:03:27.687928Z INFO fork_choice_control::block_processor: Validating block with slot: 7602 +2024-09-30T09:03:27.688328Z INFO fork_choice_control::block_processor: Validating block with slot: 7603 +2024-09-30T09:03:27.688582Z INFO fork_choice_control::block_processor: Validating block with slot: 7604 +2024-09-30T09:03:27.688679Z INFO fork_choice_control::block_processor: Validating block with slot: 7605 +2024-09-30T09:03:27.689278Z INFO fork_choice_control::block_processor: Validating block with slot: 7606 +2024-09-30T09:03:27.689546Z INFO fork_choice_control::block_processor: Validating block with slot: 7608 +2024-09-30T09:03:27.689540Z INFO fork_choice_control::block_processor: Validating block with slot: 7607 +2024-09-30T09:03:27.689799Z INFO fork_choice_control::block_processor: Validating block with slot: 7609 +2024-09-30T09:03:27.690740Z INFO fork_choice_control::block_processor: Validating block with slot: 7610 +2024-09-30T09:03:27.691188Z INFO fork_choice_control::block_processor: Validating block with slot: 7611 +2024-09-30T09:03:27.691190Z INFO fork_choice_control::block_processor: Validating block with slot: 7612 +2024-09-30T09:03:27.692091Z INFO fork_choice_control::block_processor: Validating block with slot: 7613 +2024-09-30T09:03:27.692129Z INFO fork_choice_control::block_processor: Validating block with slot: 7614 +2024-09-30T09:03:27.693028Z INFO fork_choice_control::block_processor: Validating block with slot: 7615 +2024-09-30T09:03:27.693270Z INFO fork_choice_control::block_processor: Validating block with slot: 7616 +2024-09-30T09:03:27.693341Z INFO fork_choice_control::block_processor: Validating block with slot: 7617 +2024-09-30T09:03:27.693968Z INFO fork_choice_control::block_processor: Validating block with slot: 7618 +2024-09-30T09:03:27.694208Z INFO fork_choice_control::block_processor: Validating block with slot: 7619 +2024-09-30T09:03:27.694270Z INFO fork_choice_control::block_processor: Validating block with slot: 7620 +2024-09-30T09:03:27.694911Z INFO fork_choice_control::block_processor: Validating block with slot: 7621 +2024-09-30T09:03:27.695442Z INFO fork_choice_control::block_processor: Validating block with slot: 7622 +2024-09-30T09:03:27.695465Z INFO fork_choice_control::block_processor: Validating block with slot: 7623 +2024-09-30T09:03:27.695714Z INFO fork_choice_control::block_processor: Validating block with slot: 7624 +2024-09-30T09:03:27.696440Z INFO fork_choice_control::block_processor: Validating block with slot: 7625 +2024-09-30T09:03:27.696598Z INFO fork_choice_control::block_processor: Validating block with slot: 7626 +2024-09-30T09:03:27.697716Z INFO fork_choice_control::block_processor: Validating block with slot: 7383 +2024-09-30T09:03:27.699203Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0b240351c94c79ec2678b4926e12b50f972addb5b472057680c4ae1e19c05d57, slot: 7383 +2024-09-30T09:03:27.705988Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7383 +2024-09-30T09:03:27.706001Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7383 +2024-09-30T09:03:27.728586Z INFO fork_choice_control::block_processor: Validating block with slot: 7384 +2024-09-30T09:03:27.728615Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 229, root: 0xf70f90774d3c1ef3a7df58416ff2b5daf5189ec6b8a7b352ed282d459d9714a8, head slot: 7383, head root: 0x0b240351c94c79ec2678b4926e12b50f972addb5b472057680c4ae1e19c05d57) +2024-09-30T09:03:27.729574Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9426b38ff5528c6a92558ae44866043403583732ecc07507a3030f59d69c550b, slot: 7384 +2024-09-30T09:03:27.736229Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7384 +2024-09-30T09:03:27.736250Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7384 +2024-09-30T09:03:27.747408Z INFO fork_choice_control::block_processor: Validating block with slot: 7627 +2024-09-30T09:03:27.751452Z INFO fork_choice_control::block_processor: Validating block with slot: 7628 +2024-09-30T09:03:27.754034Z INFO fork_choice_control::block_processor: Validating block with slot: 7385 +2024-09-30T09:03:27.758505Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7dfc51f6d20a4c592f1c01e567ef4b9b37e3590262156ff99bfb1205241ca72b, slot: 7385 +2024-09-30T09:03:27.770755Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7385 +2024-09-30T09:03:27.770789Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7385 +2024-09-30T09:03:27.789965Z INFO fork_choice_control::block_processor: Validating block with slot: 7386 +2024-09-30T09:03:27.791624Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x69bd46b734d28f0ddc252beb3cb5e59b027e39553b65c5f654a92257e5ba6e50, slot: 7386 +2024-09-30T09:03:27.800468Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7386 +2024-09-30T09:03:27.800491Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7386 +2024-09-30T09:03:27.820930Z INFO fork_choice_control::block_processor: Validating block with slot: 7387 +2024-09-30T09:03:27.822302Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0c4d697f2c2b9d8e707275aca53fad2a77bf9214c5712c85fe0da44090059b9c, slot: 7387 +2024-09-30T09:03:27.831562Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7387 +2024-09-30T09:03:27.831581Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7387 +2024-09-30T09:03:27.852780Z INFO fork_choice_control::block_processor: Validating block with slot: 7388 +2024-09-30T09:03:27.853891Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x24f8623bce260382ff7146bc6b3f2957d5270a01c6d0a5ced53a1af74ecc085f, slot: 7388 +2024-09-30T09:03:27.862197Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7388 +2024-09-30T09:03:27.862234Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7388 +2024-09-30T09:03:27.865818Z INFO fork_choice_control::block_processor: Validating block with slot: 7629 +2024-09-30T09:03:27.865836Z INFO fork_choice_control::block_processor: Validating block with slot: 7502 +2024-09-30T09:03:27.865969Z INFO fork_choice_control::block_processor: Validating block with slot: 7503 +2024-09-30T09:03:27.866056Z INFO fork_choice_control::block_processor: Validating block with slot: 7505 +2024-09-30T09:03:27.866182Z INFO fork_choice_control::block_processor: Validating block with slot: 7506 +2024-09-30T09:03:27.866225Z INFO fork_choice_control::block_processor: Validating block with slot: 7508 +2024-09-30T09:03:27.867070Z INFO fork_choice_control::block_processor: Validating block with slot: 7509 +2024-09-30T09:03:27.867978Z INFO fork_choice_control::block_processor: Validating block with slot: 7510 +2024-09-30T09:03:27.868306Z INFO fork_choice_control::block_processor: Validating block with slot: 7511 +2024-09-30T09:03:27.869384Z INFO fork_choice_control::block_processor: Validating block with slot: 7512 +2024-09-30T09:03:27.869439Z INFO fork_choice_control::block_processor: Validating block with slot: 7513 +2024-09-30T09:03:27.870184Z INFO fork_choice_control::block_processor: Validating block with slot: 7514 +2024-09-30T09:03:27.870991Z INFO fork_choice_control::block_processor: Validating block with slot: 7515 +2024-09-30T09:03:27.872884Z INFO fork_choice_control::block_processor: Validating block with slot: 7516 +2024-09-30T09:03:27.873290Z INFO fork_choice_control::block_processor: Validating block with slot: 7517 +2024-09-30T09:03:27.873402Z INFO fork_choice_control::block_processor: Validating block with slot: 7519 +2024-09-30T09:03:27.873477Z INFO fork_choice_control::block_processor: Validating block with slot: 7520 +2024-09-30T09:03:27.875784Z INFO fork_choice_control::block_processor: Validating block with slot: 7521 +2024-09-30T09:03:27.876692Z INFO fork_choice_control::block_processor: Validating block with slot: 7525 +2024-09-30T09:03:27.876722Z INFO fork_choice_control::block_processor: Validating block with slot: 7522 +2024-09-30T09:03:27.877032Z INFO fork_choice_control::block_processor: Validating block with slot: 7507 +2024-09-30T09:03:27.877379Z INFO fork_choice_control::block_processor: Validating block with slot: 7518 +2024-09-30T09:03:27.878248Z INFO fork_choice_control::block_processor: Validating block with slot: 7527 +2024-09-30T09:03:27.879368Z INFO fork_choice_control::block_processor: Validating block with slot: 7523 +2024-09-30T09:03:27.879751Z INFO fork_choice_control::block_processor: Validating block with slot: 7524 +2024-09-30T09:03:27.879754Z INFO fork_choice_control::block_processor: Validating block with slot: 7528 +2024-09-30T09:03:27.879801Z INFO fork_choice_control::block_processor: Validating block with slot: 7529 +2024-09-30T09:03:27.880386Z INFO fork_choice_control::block_processor: Validating block with slot: 7530 +2024-09-30T09:03:27.881533Z INFO fork_choice_control::block_processor: Validating block with slot: 7531 +2024-09-30T09:03:27.882412Z INFO fork_choice_control::block_processor: Validating block with slot: 7526 +2024-09-30T09:03:27.882575Z INFO fork_choice_control::block_processor: Validating block with slot: 7534 +2024-09-30T09:03:27.882799Z INFO fork_choice_control::block_processor: Validating block with slot: 7536 +2024-09-30T09:03:27.883371Z INFO fork_choice_control::block_processor: Validating block with slot: 7532 +2024-09-30T09:03:27.883433Z INFO fork_choice_control::block_processor: Validating block with slot: 7537 +2024-09-30T09:03:27.883586Z INFO fork_choice_control::block_processor: Validating block with slot: 7538 +2024-09-30T09:03:27.884149Z INFO fork_choice_control::block_processor: Validating block with slot: 7539 +2024-09-30T09:03:27.884486Z INFO fork_choice_control::block_processor: Validating block with slot: 7540 +2024-09-30T09:03:27.884565Z INFO fork_choice_control::block_processor: Validating block with slot: 7541 +2024-09-30T09:03:27.884588Z INFO fork_choice_control::block_processor: Validating block with slot: 7542 +2024-09-30T09:03:27.884594Z INFO fork_choice_control::block_processor: Validating block with slot: 7543 +2024-09-30T09:03:27.885604Z INFO fork_choice_control::block_processor: Validating block with slot: 7544 +2024-09-30T09:03:27.886724Z INFO fork_choice_control::block_processor: Validating block with slot: 7545 +2024-09-30T09:03:27.886823Z INFO fork_choice_control::block_processor: Validating block with slot: 7546 +2024-09-30T09:03:27.887327Z INFO fork_choice_control::block_processor: Validating block with slot: 7533 +2024-09-30T09:03:27.887331Z INFO fork_choice_control::block_processor: Validating block with slot: 7547 +2024-09-30T09:03:27.887524Z INFO fork_choice_control::block_processor: Validating block with slot: 7549 +2024-09-30T09:03:27.888145Z INFO fork_choice_control::block_processor: Validating block with slot: 7550 +2024-09-30T09:03:27.888243Z INFO fork_choice_control::block_processor: Validating block with slot: 7551 +2024-09-30T09:03:27.888803Z INFO fork_choice_control::block_processor: Validating block with slot: 7552 +2024-09-30T09:03:27.890274Z INFO fork_choice_control::block_processor: Validating block with slot: 7556 +2024-09-30T09:03:27.890346Z INFO fork_choice_control::block_processor: Validating block with slot: 7557 +2024-09-30T09:03:27.890930Z INFO fork_choice_control::block_processor: Validating block with slot: 7553 +2024-09-30T09:03:27.891584Z INFO fork_choice_control::block_processor: Validating block with slot: 7548 +2024-09-30T09:03:27.891836Z INFO fork_choice_control::block_processor: Validating block with slot: 7558 +2024-09-30T09:03:27.892196Z INFO fork_choice_control::block_processor: Validating block with slot: 7555 +2024-09-30T09:03:27.893041Z INFO fork_choice_control::block_processor: Validating block with slot: 7559 +2024-09-30T09:03:27.893092Z INFO fork_choice_control::block_processor: Validating block with slot: 7560 +2024-09-30T09:03:27.893230Z INFO fork_choice_control::block_processor: Validating block with slot: 7561 +2024-09-30T09:03:27.893238Z INFO fork_choice_control::block_processor: Validating block with slot: 7562 +2024-09-30T09:03:27.894118Z INFO fork_choice_control::block_processor: Validating block with slot: 7564 +2024-09-30T09:03:27.895978Z INFO fork_choice_control::block_processor: Validating block with slot: 7565 +2024-09-30T09:03:27.895994Z INFO fork_choice_control::block_processor: Validating block with slot: 7630 +2024-09-30T09:03:27.896063Z INFO fork_choice_control::block_processor: Validating block with slot: 7554 +2024-09-30T09:03:27.896292Z INFO fork_choice_control::block_processor: Validating block with slot: 7631 +2024-09-30T09:03:27.896316Z INFO fork_choice_control::block_processor: Validating block with slot: 7634 +2024-09-30T09:03:27.896327Z INFO fork_choice_control::block_processor: Validating block with slot: 7635 +2024-09-30T09:03:27.896827Z INFO fork_choice_control::block_processor: Validating block with slot: 7632 +2024-09-30T09:03:27.897105Z INFO fork_choice_control::block_processor: Validating block with slot: 7636 +2024-09-30T09:03:27.897182Z INFO fork_choice_control::block_processor: Validating block with slot: 7633 +2024-09-30T09:03:27.897779Z INFO fork_choice_control::block_processor: Validating block with slot: 7389 +2024-09-30T09:03:27.898224Z INFO fork_choice_control::block_processor: Validating block with slot: 7637 +2024-09-30T09:03:27.899714Z INFO fork_choice_control::block_processor: Validating block with slot: 7641 +2024-09-30T09:03:27.899757Z INFO fork_choice_control::block_processor: Validating block with slot: 7643 +2024-09-30T09:03:27.900193Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf865501075dee79953e7d72843a98fe9294db4dada49251624cebf8bac79d072, slot: 7389 +2024-09-30T09:03:27.900259Z INFO fork_choice_control::block_processor: Validating block with slot: 7644 +2024-09-30T09:03:27.901111Z INFO fork_choice_control::block_processor: Validating block with slot: 7638 +2024-09-30T09:03:27.901485Z INFO fork_choice_control::block_processor: Validating block with slot: 7639 +2024-09-30T09:03:27.901816Z INFO fork_choice_control::block_processor: Validating block with slot: 7640 +2024-09-30T09:03:27.904432Z INFO fork_choice_control::block_processor: Validating block with slot: 7645 +2024-09-30T09:03:27.904540Z INFO fork_choice_control::block_processor: Validating block with slot: 7646 +2024-09-30T09:03:27.911815Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7389 +2024-09-30T09:03:27.911837Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7389 +2024-09-30T09:03:27.923025Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 7328 +2024-09-30T09:03:27.933051Z INFO fork_choice_control::block_processor: Validating block with slot: 7649 +2024-09-30T09:03:27.933063Z INFO fork_choice_control::block_processor: Validating block with slot: 7648 +2024-09-30T09:03:27.933463Z INFO fork_choice_control::block_processor: Validating block with slot: 7647 +2024-09-30T09:03:27.933492Z INFO fork_choice_control::block_processor: Validating block with slot: 7650 +2024-09-30T09:03:27.933636Z INFO fork_choice_control::block_processor: Validating block with slot: 7651 +2024-09-30T09:03:27.933783Z INFO fork_choice_control::block_processor: Validating block with slot: 7652 +2024-09-30T09:03:27.934268Z INFO fork_choice_control::block_processor: Validating block with slot: 7653 +2024-09-30T09:03:27.936270Z INFO fork_choice_control::block_processor: Validating block with slot: 7654 +2024-09-30T09:03:27.936414Z INFO fork_choice_control::block_processor: Validating block with slot: 7655 +2024-09-30T09:03:27.936699Z INFO fork_choice_control::block_processor: Validating block with slot: 7660 +2024-09-30T09:03:27.936709Z INFO fork_choice_control::block_processor: Validating block with slot: 7656 +2024-09-30T09:03:27.936804Z INFO fork_choice_control::block_processor: Validating block with slot: 7661 +2024-09-30T09:03:27.937105Z INFO fork_choice_control::block_processor: Validating block with slot: 7657 +2024-09-30T09:03:27.937697Z INFO fork_choice_control::block_processor: Validating block with slot: 7662 +2024-09-30T09:03:27.937691Z INFO fork_choice_control::block_processor: Validating block with slot: 7658 +2024-09-30T09:03:27.937748Z INFO fork_choice_control::block_processor: Validating block with slot: 7663 +2024-09-30T09:03:27.937857Z INFO fork_choice_control::block_processor: Validating block with slot: 7664 +2024-09-30T09:03:27.938811Z INFO fork_choice_control::block_processor: Validating block with slot: 7390 +2024-09-30T09:03:27.938938Z INFO fork_choice_control::block_processor: Validating block with slot: 7659 +2024-09-30T09:03:27.942184Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf3181c4bcf32324a90285221d452f26e5f763daa0a814ec2640832e48971f84b, slot: 7390 +2024-09-30T09:03:27.953918Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7390 +2024-09-30T09:03:27.953941Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7390 +2024-09-30T09:03:27.967963Z INFO fork_choice_control::block_processor: Validating block with slot: 7665 +2024-09-30T09:03:27.968002Z INFO fork_choice_control::block_processor: Validating block with slot: 7666 +2024-09-30T09:03:27.976874Z INFO fork_choice_control::block_processor: Validating block with slot: 7391 +2024-09-30T09:03:27.978197Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7c0308c8b7b725ecc6ce0383864d39da4d23b0ad70cc17845e1843cb69ef660c, slot: 7391 +2024-09-30T09:03:27.987465Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7391 +2024-09-30T09:03:27.987484Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7391 +2024-09-30T09:03:28.009156Z INFO fork_choice_control::block_processor: Validating block with slot: 7392 +2024-09-30T09:03:28.012683Z INFO fork_choice_control::block_processor: Validating block with slot: 7667 +2024-09-30T09:03:28.012773Z INFO fork_choice_control::block_processor: Validating block with slot: 7669 +2024-09-30T09:03:28.012792Z INFO fork_choice_control::block_processor: Validating block with slot: 7668 +2024-09-30T09:03:28.012883Z INFO fork_choice_control::block_processor: Validating block with slot: 7670 +2024-09-30T09:03:28.012957Z INFO fork_choice_control::block_processor: Validating block with slot: 7671 +2024-09-30T09:03:28.013072Z INFO fork_choice_control::block_processor: Validating block with slot: 7672 +2024-09-30T09:03:28.013470Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x42889a8f6ea3a2f7cc40f51d0dcbf92b318936022dd5b78d0966493ece754d08, slot: 7392 +2024-09-30T09:03:28.014291Z INFO fork_choice_control::block_processor: Validating block with slot: 7673 +2024-09-30T09:03:28.015688Z INFO fork_choice_control::block_processor: Validating block with slot: 7675 +2024-09-30T09:03:28.015702Z INFO fork_choice_control::block_processor: Validating block with slot: 7674 +2024-09-30T09:03:28.016667Z INFO fork_choice_control::block_processor: Validating block with slot: 7676 +2024-09-30T09:03:28.016699Z INFO fork_choice_control::block_processor: Validating block with slot: 7678 +2024-09-30T09:03:28.016922Z INFO fork_choice_control::block_processor: Validating block with slot: 7679 +2024-09-30T09:03:28.018187Z INFO fork_choice_control::block_processor: Validating block with slot: 7680 +2024-09-30T09:03:28.018653Z INFO fork_choice_control::block_processor: Validating block with slot: 7681 +2024-09-30T09:03:28.018715Z INFO fork_choice_control::block_processor: Validating block with slot: 7677 +2024-09-30T09:03:28.019005Z INFO fork_choice_control::block_processor: Validating block with slot: 7682 +2024-09-30T09:03:28.019195Z INFO fork_choice_control::block_processor: Validating block with slot: 7683 +2024-09-30T09:03:28.020920Z INFO fork_choice_control::block_processor: Validating block with slot: 7684 +2024-09-30T09:03:28.021415Z INFO fork_choice_control::block_processor: Validating block with slot: 7685 +2024-09-30T09:03:28.022444Z INFO fork_choice_control::block_processor: Validating block with slot: 7686 +2024-09-30T09:03:28.022600Z INFO fork_choice_control::block_processor: Validating block with slot: 7690 +2024-09-30T09:03:28.022716Z INFO fork_choice_control::block_processor: Validating block with slot: 7687 +2024-09-30T09:03:28.022724Z INFO fork_choice_control::block_processor: Validating block with slot: 7688 +2024-09-30T09:03:28.023045Z INFO fork_choice_control::block_processor: Validating block with slot: 7691 +2024-09-30T09:03:28.023228Z INFO fork_choice_control::block_processor: Validating block with slot: 7692 +2024-09-30T09:03:28.023989Z INFO fork_choice_control::block_processor: Validating block with slot: 7689 +2024-09-30T09:03:28.065925Z INFO fork_choice_control::block_processor: Validating block with slot: 7693 +2024-09-30T09:03:28.137100Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7392 +2024-09-30T09:03:28.137123Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7392 +2024-09-30T09:03:28.149808Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7392) +2024-09-30T09:03:28.149960Z INFO fork_choice_control::block_processor: Validating block with slot: 7393 +2024-09-30T09:03:28.152762Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x28732dcb94446503cade0881895704ee046b23edbe4714086bf6509e62d09d60, slot: 7393 +2024-09-30T09:03:28.234740Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7393 +2024-09-30T09:03:28.234759Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7393 +2024-09-30T09:03:28.246668Z INFO fork_choice_control::block_processor: Validating block with slot: 7394 +2024-09-30T09:03:28.248566Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa0c9b8ec51ea4ca38fc3f3557fc40f34383c1068c0717c1daa0d6ec7099a90ad, slot: 7394 +2024-09-30T09:03:28.257201Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7394 +2024-09-30T09:03:28.257217Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7394 +2024-09-30T09:03:28.269302Z INFO fork_choice_control::block_processor: Validating block with slot: 7395 +2024-09-30T09:03:28.270545Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1394dc3bda25eeb121515e85ed2604534ceb678ef62cf1dbff6644674a03a233, slot: 7395 +2024-09-30T09:03:28.278207Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7395 +2024-09-30T09:03:28.278230Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7395 +2024-09-30T09:03:28.290569Z INFO fork_choice_control::block_processor: Validating block with slot: 7396 +2024-09-30T09:03:28.291652Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa595ec6e78d1174a68496b9dc9bb28e08189a1e303d88cb988d86c395be07a01, slot: 7396 +2024-09-30T09:03:28.309828Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7396 +2024-09-30T09:03:28.310114Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7396 +2024-09-30T09:03:28.327287Z INFO fork_choice_control::block_processor: Validating block with slot: 7397 +2024-09-30T09:03:28.330695Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf7030257d9c1bde7ab3da90103d075779e1f15ac4e112c1a88d955ef1b9227f6, slot: 7397 +2024-09-30T09:03:28.339033Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7397 +2024-09-30T09:03:28.339055Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7397 +2024-09-30T09:03:28.352432Z INFO fork_choice_control::block_processor: Validating block with slot: 7398 +2024-09-30T09:03:28.353655Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xaf4f2460236c0a983c989ced113328a55e081a3eb67a188e71d0c329bf4daf43, slot: 7398 +2024-09-30T09:03:28.360527Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7398 +2024-09-30T09:03:28.360544Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7398 +2024-09-30T09:03:28.374335Z INFO fork_choice_control::block_processor: Validating block with slot: 7399 +2024-09-30T09:03:28.375533Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd6b41e894bf4a6bf5ace5a788bc1ac262ab57c5e2e59c0ae2e6cdad0cf53f835, slot: 7399 +2024-09-30T09:03:28.382899Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7399 +2024-09-30T09:03:28.382918Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7399 +2024-09-30T09:03:28.396784Z INFO fork_choice_control::block_processor: Validating block with slot: 7400 +2024-09-30T09:03:28.397834Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x40797f71d36d55dd681db136ac25bc7ee6f9e74a3700f1a53dbfe3f56eb67e67, slot: 7400 +2024-09-30T09:03:28.404516Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7400 +2024-09-30T09:03:28.404529Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7400 +2024-09-30T09:03:28.418325Z INFO fork_choice_control::block_processor: Validating block with slot: 7401 +2024-09-30T09:03:28.419426Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6bc31e228a789481fc9b327f34cfef7c98711609386508361f12b0e73de111a6, slot: 7401 +2024-09-30T09:03:28.425404Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7401 +2024-09-30T09:03:28.425414Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7401 +2024-09-30T09:03:28.438415Z INFO fork_choice_control::block_processor: Validating block with slot: 7402 +2024-09-30T09:03:28.441562Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd904f7d5b1a49aa7ca07f96fba93212091381f3c90210e0cd67ebbaf0dd8cb94, slot: 7402 +2024-09-30T09:03:28.452839Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7402 +2024-09-30T09:03:28.452858Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7402 +2024-09-30T09:03:28.466742Z INFO fork_choice_control::block_processor: Validating block with slot: 7403 +2024-09-30T09:03:28.468258Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2dce82e61e28016767708e0eea80380c589492dc2ef96c0beb57fb0b3ac59f28, slot: 7403 +2024-09-30T09:03:28.475055Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7403 +2024-09-30T09:03:28.475067Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7403 +2024-09-30T09:03:28.489376Z INFO fork_choice_control::block_processor: Validating block with slot: 7404 +2024-09-30T09:03:28.490500Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf19da3f776c5104a41ca5a94fe7e78dc114feb3af15e52add0396aa4b3e6a9c0, slot: 7404 +2024-09-30T09:03:28.496953Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7404 +2024-09-30T09:03:28.496975Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7404 +2024-09-30T09:03:28.511480Z INFO fork_choice_control::block_processor: Validating block with slot: 7405 +2024-09-30T09:03:28.512608Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x40191a197500910568dffb25e432231e691f5158f8cb4c3fbfa4a01410391d85, slot: 7405 +2024-09-30T09:03:28.518588Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7405 +2024-09-30T09:03:28.518601Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7405 +2024-09-30T09:03:28.533327Z INFO fork_choice_control::block_processor: Validating block with slot: 7406 +2024-09-30T09:03:28.536846Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc11ecb8399485e5e57440da36f3d785954dd0ed9cb418f7cc232238af80c9830, slot: 7406 +2024-09-30T09:03:28.550972Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7406 +2024-09-30T09:03:28.550989Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7406 +2024-09-30T09:03:28.566460Z INFO fork_choice_control::block_processor: Validating block with slot: 7407 +2024-09-30T09:03:28.567681Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb28ed47994fb9dd4f2ae4363a75567a96b4528fd4d140125024c32eae50eeb78, slot: 7407 +2024-09-30T09:03:28.573962Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7407 +2024-09-30T09:03:28.573975Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7407 +2024-09-30T09:03:28.589110Z INFO fork_choice_control::block_processor: Validating block with slot: 7408 +2024-09-30T09:03:28.590352Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x461fcb7d6b10186e4a5780a2d8e136494c78008debabe9f0a9fdc6e666f6ae2e, slot: 7408 +2024-09-30T09:03:28.597934Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7408 +2024-09-30T09:03:28.597954Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7408 +2024-09-30T09:03:28.613275Z INFO fork_choice_control::block_processor: Validating block with slot: 7409 +2024-09-30T09:03:28.614238Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfd7f4511e594afd58b4d6b6fef11b9a83fc0d144d26d5527633ce50770feea20, slot: 7409 +2024-09-30T09:03:28.619777Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7409 +2024-09-30T09:03:28.619791Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7409 +2024-09-30T09:03:28.636001Z INFO fork_choice_control::block_processor: Validating block with slot: 7410 +2024-09-30T09:03:28.636961Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfdf120c2706d54b153c824fa0fe067e534fe985ba02f1cd14e9bee6e602d4424, slot: 7410 +2024-09-30T09:03:28.643134Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7410 +2024-09-30T09:03:28.643150Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7410 +2024-09-30T09:03:28.659446Z INFO fork_choice_control::block_processor: Validating block with slot: 7411 +2024-09-30T09:03:28.661913Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf0f9079f0c7305bd4ff93faf9c6649905fe7e647f7dcc871f1ca0f70629183cb, slot: 7411 +2024-09-30T09:03:28.671432Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7411 +2024-09-30T09:03:28.671446Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7411 +2024-09-30T09:03:28.687700Z INFO fork_choice_control::block_processor: Validating block with slot: 7412 +2024-09-30T09:03:28.688659Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2c66dd2803e9002b559b70422168c7dd523064e374258c4e69a79abf9e324efb, slot: 7412 +2024-09-30T09:03:28.694549Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7412 +2024-09-30T09:03:28.694571Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7412 +2024-09-30T09:03:28.711619Z INFO fork_choice_control::block_processor: Validating block with slot: 7413 +2024-09-30T09:03:28.712973Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb32bd1daaa6c91cdc7943b92a48f986fa739068c912d0b67cd1f4959e44b2fe7, slot: 7413 +2024-09-30T09:03:28.719545Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7413 +2024-09-30T09:03:28.719557Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7413 +2024-09-30T09:03:28.736062Z INFO fork_choice_control::block_processor: Validating block with slot: 7414 +2024-09-30T09:03:28.737569Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x041c3453ea3f2331d734fda7bc60ddbd4aa975a4c886be4e301b0b137331cece, slot: 7414 +2024-09-30T09:03:28.744871Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7414 +2024-09-30T09:03:28.744889Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7414 +2024-09-30T09:03:28.761672Z INFO fork_choice_control::block_processor: Validating block with slot: 7415 +2024-09-30T09:03:28.762771Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfc7a26a80202419cc2f784e355a7a0c1564eab650d2f1e06bd04148a817af984, slot: 7415 +2024-09-30T09:03:28.768723Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7415 +2024-09-30T09:03:28.768734Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7415 +2024-09-30T09:03:28.791096Z INFO fork_choice_control::block_processor: Validating block with slot: 7416 +2024-09-30T09:03:28.791101Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 230, root: 0x0d03ce9b7d8327b6718aa3271b72ae4ce22aca733ccb0e6a86d958f2615cb683, head slot: 7415, head root: 0xfc7a26a80202419cc2f784e355a7a0c1564eab650d2f1e06bd04148a817af984) +2024-09-30T09:03:28.792088Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa9eb26713d8184e06df55f1e7c47b2968cf72c575fda02023518e81c5e5fba5d, slot: 7416 +2024-09-30T09:03:28.800255Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7416 +2024-09-30T09:03:28.800281Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7416 +2024-09-30T09:03:28.818707Z INFO fork_choice_control::block_processor: Validating block with slot: 7417 +2024-09-30T09:03:28.819701Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc11c38d0469a7abb51144984c54b88e9c5b21930ec7cd168c8d8cfb9574fd96b, slot: 7417 +2024-09-30T09:03:28.826494Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7417 +2024-09-30T09:03:28.826514Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7417 +2024-09-30T09:03:28.844414Z INFO fork_choice_control::block_processor: Validating block with slot: 7418 +2024-09-30T09:03:28.845418Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc4ec0191b0c35964026d70b3920f04fdaaac435684dfc2b35099a5ff0851ce8d, slot: 7418 +2024-09-30T09:03:28.851854Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7418 +2024-09-30T09:03:28.851870Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7418 +2024-09-30T09:03:28.872209Z INFO fork_choice_control::block_processor: Validating block with slot: 7419 +2024-09-30T09:03:28.873412Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeac5fee3c76a1f68228eae7064470cedb28bf943c1be216cc08ebe73eb38682f, slot: 7419 +2024-09-30T09:03:28.881658Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7419 +2024-09-30T09:03:28.881676Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7419 +2024-09-30T09:03:28.901703Z INFO fork_choice_control::block_processor: Validating block with slot: 7420 +2024-09-30T09:03:28.902894Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5c5dd348022a64e535f21032d809ed9e89da583e4db735989009184b2b535e7f, slot: 7420 +2024-09-30T09:03:28.910173Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7420 +2024-09-30T09:03:28.910197Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7420 +2024-09-30T09:03:28.930756Z INFO fork_choice_control::block_processor: Validating block with slot: 7421 +2024-09-30T09:03:28.934552Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd86d2e0817ed71aafe891519b03b964a632e5c39ef3c6d36c68c5f72565372e9, slot: 7421 +2024-09-30T09:03:28.937226Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 7360 +2024-09-30T09:03:28.951264Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7421 +2024-09-30T09:03:28.951285Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7421 +2024-09-30T09:03:28.973577Z INFO fork_choice_control::block_processor: Validating block with slot: 7422 +2024-09-30T09:03:28.976443Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x88973848430c5da5a7a31229d842a7d875db0b2ac7d60559e90affd50b8df57f, slot: 7422 +2024-09-30T09:03:28.985339Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7422 +2024-09-30T09:03:28.985361Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7422 +2024-09-30T09:03:29.005932Z INFO fork_choice_control::block_processor: Validating block with slot: 7423 +2024-09-30T09:03:29.008657Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x97fe952bae6351ebbe0613afe9db791fbbce2c214ed92e1d0eefcf1f0b999dd8, slot: 7423 +2024-09-30T09:03:29.021509Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7423 +2024-09-30T09:03:29.021533Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7423 +2024-09-30T09:03:29.042989Z INFO fork_choice_control::block_processor: Validating block with slot: 7424 +2024-09-30T09:03:29.044088Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe3def00bdea010ab85327657af2e6842bd663e8760bfb825cd2ed0de28c1655b, slot: 7424 +2024-09-30T09:03:29.153197Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7424 +2024-09-30T09:03:29.153217Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7424 +2024-09-30T09:03:29.164983Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7424) +2024-09-30T09:03:29.165203Z INFO fork_choice_control::block_processor: Validating block with slot: 7426 +2024-09-30T09:03:29.167004Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe08614b147234c1a32b911ee1e719a8899e3d66ee8d6e557aef6f9f0d3c0ace1, slot: 7426 +2024-09-30T09:03:29.245543Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7426 +2024-09-30T09:03:29.245563Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7426 +2024-09-30T09:03:29.257910Z INFO fork_choice_control::block_processor: Validating block with slot: 7427 +2024-09-30T09:03:29.259133Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x315179f234c1cad646fb7222f0a1e97d8a4e97cdcd6931140330c038ce761d5f, slot: 7427 +2024-09-30T09:03:29.266241Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7427 +2024-09-30T09:03:29.266260Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7427 +2024-09-30T09:03:29.278643Z INFO fork_choice_control::block_processor: Validating block with slot: 7428 +2024-09-30T09:03:29.281934Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7c87ec15393b2316344b53edac7ee18520184f15a4ad25f69a74e602049d73d5, slot: 7428 +2024-09-30T09:03:29.295975Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7428 +2024-09-30T09:03:29.295994Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7428 +2024-09-30T09:03:29.308925Z INFO fork_choice_control::block_processor: Validating block with slot: 7429 +2024-09-30T09:03:29.310201Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3e3fa3ee931224dd4b0ed7934fcc0ad225845912f4af0bb3cc4f96423618edd7, slot: 7429 +2024-09-30T09:03:29.317167Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7429 +2024-09-30T09:03:29.317185Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7429 +2024-09-30T09:03:29.332582Z INFO fork_choice_control::block_processor: Validating block with slot: 7430 +2024-09-30T09:03:29.334231Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5a33fe9be380b9b22d835c3c40305d20de19a289be6b81912873f11ad26504f4, slot: 7430 +2024-09-30T09:03:29.342108Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7430 +2024-09-30T09:03:29.342123Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7430 +2024-09-30T09:03:29.355510Z INFO fork_choice_control::block_processor: Validating block with slot: 7431 +2024-09-30T09:03:29.356497Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x76195c309707c8a3d4486c3a9a2821c292f5c206d57c8e9fd2f648396457b865, slot: 7431 +2024-09-30T09:03:29.363926Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7431 +2024-09-30T09:03:29.363949Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7431 +2024-09-30T09:03:29.377492Z INFO fork_choice_control::block_processor: Validating block with slot: 7432 +2024-09-30T09:03:29.379440Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1d03eebe4795443e3d3b2e0dc64de64cbdf90ffa90ae13c252d9e18d85334db3, slot: 7432 +2024-09-30T09:03:29.387977Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7432 +2024-09-30T09:03:29.387991Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7432 +2024-09-30T09:03:29.401959Z INFO fork_choice_control::block_processor: Validating block with slot: 7433 +2024-09-30T09:03:29.402953Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb7c8530f821e4c2f130558939d775a654e77888e62fb552a7fe4944385ea9464, slot: 7433 +2024-09-30T09:03:29.408832Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7433 +2024-09-30T09:03:29.408845Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7433 +2024-09-30T09:03:29.422970Z INFO fork_choice_control::block_processor: Validating block with slot: 7435 +2024-09-30T09:03:29.425457Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd0c21b91129b748064594414648af158e9f598a6f3d82fbc5ea879270c904e6b, slot: 7435 +2024-09-30T09:03:29.436611Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7435 +2024-09-30T09:03:29.436632Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7435 +2024-09-30T09:03:29.451242Z INFO fork_choice_control::block_processor: Validating block with slot: 7436 +2024-09-30T09:03:29.452368Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa4f695fe19d9154f2809a764be3e1f1a004368d3851fc539d12d095c23d2c29f, slot: 7436 +2024-09-30T09:03:29.459000Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7436 +2024-09-30T09:03:29.459015Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7436 +2024-09-30T09:03:29.474617Z INFO fork_choice_control::block_processor: Validating block with slot: 7437 +2024-09-30T09:03:29.475591Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6791f37abb2f9c09293eff5302668f82760d0e361e9c96fd7d656da9f9e82ffe, slot: 7437 +2024-09-30T09:03:29.482014Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7437 +2024-09-30T09:03:29.482038Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7437 +2024-09-30T09:03:29.498687Z INFO fork_choice_control::block_processor: Validating block with slot: 7438 +2024-09-30T09:03:29.500800Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd835a10f76e83614722fe5a13308118e7387e35c2d5e49125082d911acadadce, slot: 7438 +2024-09-30T09:03:29.510784Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7438 +2024-09-30T09:03:29.510805Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7438 +2024-09-30T09:03:29.525756Z INFO fork_choice_control::block_processor: Validating block with slot: 7439 +2024-09-30T09:03:29.526737Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x891c095ba4791db57f8ae3a9abfa00e4c06ff008573ed1e61a12d54f004861f6, slot: 7439 +2024-09-30T09:03:29.533899Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7439 +2024-09-30T09:03:29.533918Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7439 +2024-09-30T09:03:29.550480Z INFO fork_choice_control::block_processor: Validating block with slot: 7440 +2024-09-30T09:03:29.552933Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd4acd555d6d38178e498d00ccc14a5b1f3f4431a85b154f8bec599acc7fa07d3, slot: 7440 +2024-09-30T09:03:29.562025Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7440 +2024-09-30T09:03:29.562044Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7440 +2024-09-30T09:03:29.577706Z INFO fork_choice_control::block_processor: Validating block with slot: 7441 +2024-09-30T09:03:29.579161Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2d840aa5db653b09eabadbb5b32e255cb3b5951b5c58c7efd89e9826269d08f6, slot: 7441 +2024-09-30T09:03:29.585768Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7441 +2024-09-30T09:03:29.585781Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7441 +2024-09-30T09:03:29.601794Z INFO fork_choice_control::block_processor: Validating block with slot: 7442 +2024-09-30T09:03:29.602946Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc2c61ca63f9e56464d5973a5aba13719dc4fa7048f7a792bfddf8c63a299e20a, slot: 7442 +2024-09-30T09:03:29.608739Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7442 +2024-09-30T09:03:29.608751Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7442 +2024-09-30T09:03:29.624704Z INFO fork_choice_control::block_processor: Validating block with slot: 7443 +2024-09-30T09:03:29.627110Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb6fb79758da8dcc138d72203a652b5ad41e2f03d85d092336aa71188fe6c4c8f, slot: 7443 +2024-09-30T09:03:29.637959Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7443 +2024-09-30T09:03:29.637980Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7443 +2024-09-30T09:03:29.655576Z INFO fork_choice_control::block_processor: Validating block with slot: 7444 +2024-09-30T09:03:29.658874Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5ccb77f61d6aa32637c9bec0ba03d18e088b1ab6e4ccd5b655c4990a62ba7a73, slot: 7444 +2024-09-30T09:03:29.671919Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7444 +2024-09-30T09:03:29.671940Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7444 +2024-09-30T09:03:29.691034Z INFO fork_choice_control::block_processor: Validating block with slot: 7445 +2024-09-30T09:03:29.692698Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xef8939c10f6b396dccd719dbf7116b7641bd10913fb0204714e16bf020e09c58, slot: 7445 +2024-09-30T09:03:29.701140Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7445 +2024-09-30T09:03:29.701157Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7445 +2024-09-30T09:03:29.720342Z INFO fork_choice_control::block_processor: Validating block with slot: 7446 +2024-09-30T09:03:29.721428Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x50412140307903a7cccbe06ccc63c3ac3de26135618f044e91b94243d5c3b195, slot: 7446 +2024-09-30T09:03:29.728614Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7446 +2024-09-30T09:03:29.728639Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7446 +2024-09-30T09:03:29.753660Z INFO fork_choice_control::block_processor: Validating block with slot: 7447 +2024-09-30T09:03:29.753664Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 231, root: 0x42889a8f6ea3a2f7cc40f51d0dcbf92b318936022dd5b78d0966493ece754d08, head slot: 7446, head root: 0x50412140307903a7cccbe06ccc63c3ac3de26135618f044e91b94243d5c3b195) +2024-09-30T09:03:29.755357Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x699e922989c982dfe30f59d7e6d5fb2df4709a1e39d2e28bc0ff697194facd8f, slot: 7447 +2024-09-30T09:03:29.764940Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7447 +2024-09-30T09:03:29.764961Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7447 +2024-09-30T09:03:29.783338Z INFO fork_choice_control::block_processor: Validating block with slot: 7448 +2024-09-30T09:03:29.786153Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7e1c6fc0bfb6a404b6613f5c4333e3cdc45679729f158d2071616d7248be5727, slot: 7448 +2024-09-30T09:03:29.797610Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7448 +2024-09-30T09:03:29.797635Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7448 +2024-09-30T09:03:29.817476Z INFO fork_choice_control::block_processor: Validating block with slot: 7449 +2024-09-30T09:03:29.819008Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa392c98a464146219df987c4c2cc811672ebb65e63a177466927b59b3070a47c, slot: 7449 +2024-09-30T09:03:29.826717Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7449 +2024-09-30T09:03:29.826739Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7449 +2024-09-30T09:03:29.846810Z INFO fork_choice_control::block_processor: Validating block with slot: 7450 +2024-09-30T09:03:29.847878Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xce18e73942b24478d0a349370e7f70430ffbc2cbaf55a039ac830a702c4f4c5a, slot: 7450 +2024-09-30T09:03:29.854306Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7450 +2024-09-30T09:03:29.854320Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7450 +2024-09-30T09:03:29.874482Z INFO fork_choice_control::block_processor: Validating block with slot: 7451 +2024-09-30T09:03:29.875845Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd8b49f1a389eeb6776f126d7448605c91c0d28896dfb009292d0f6b2b4a5c24f, slot: 7451 +2024-09-30T09:03:29.883723Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7451 +2024-09-30T09:03:29.883748Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7451 +2024-09-30T09:03:29.897027Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 7392 +2024-09-30T09:03:29.904131Z INFO fork_choice_control::block_processor: Validating block with slot: 7452 +2024-09-30T09:03:29.905563Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x21fce85b3bfb3d80141d28fd09378d8e011d5ae236c18e8cd3fb04c39ff8655c, slot: 7452 +2024-09-30T09:03:29.914247Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7452 +2024-09-30T09:03:29.914271Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7452 +2024-09-30T09:03:29.935413Z INFO fork_choice_control::block_processor: Validating block with slot: 7453 +2024-09-30T09:03:29.937565Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc1de03a5e5d18fc4ab8451b3a01aed27e9eb06cd912a5b23f9bf363e4b6635ba, slot: 7453 +2024-09-30T09:03:29.947755Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7453 +2024-09-30T09:03:29.947778Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7453 +2024-09-30T09:03:29.968797Z INFO fork_choice_control::block_processor: Validating block with slot: 7454 +2024-09-30T09:03:29.970059Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xde88c06d896a91eed8e88bd1bba92fa2fd6cbe536706b53dfac440d8e66b307c, slot: 7454 +2024-09-30T09:03:29.977181Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7454 +2024-09-30T09:03:29.977201Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7454 +2024-09-30T09:03:29.998602Z INFO fork_choice_control::block_processor: Validating block with slot: 7455 +2024-09-30T09:03:29.999667Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5f2aec9c76e4395d4834cf196de72c3ac91d55d83842535b8ae98e3154c77b8f, slot: 7455 +2024-09-30T09:03:30.007726Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7455 +2024-09-30T09:03:30.007746Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7455 +2024-09-30T09:03:30.021090Z INFO fork_choice_control::block_processor: Validating block with slot: 7822 +2024-09-30T09:03:30.021137Z INFO fork_choice_control::block_processor: Validating block with slot: 7824 +2024-09-30T09:03:30.021145Z INFO fork_choice_control::block_processor: Validating block with slot: 7825 +2024-09-30T09:03:30.021171Z INFO fork_choice_control::block_processor: Validating block with slot: 7826 +2024-09-30T09:03:30.021405Z INFO fork_choice_control::block_processor: Validating block with slot: 7823 +2024-09-30T09:03:30.021426Z INFO fork_choice_control::block_processor: Validating block with slot: 7827 +2024-09-30T09:03:30.022529Z INFO fork_choice_control::block_processor: Validating block with slot: 7828 +2024-09-30T09:03:30.030359Z INFO fork_choice_control::block_processor: Validating block with slot: 7456 +2024-09-30T09:03:30.031442Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x543773fdf7ceceae44743db5284180c82b161811d6c659ebb06756b31de6166d, slot: 7456 +2024-09-30T09:03:30.137730Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7456 +2024-09-30T09:03:30.137750Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7456 +2024-09-30T09:03:30.149201Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7456) +2024-09-30T09:03:30.149327Z INFO fork_choice_control::block_processor: Validating block with slot: 7457 +2024-09-30T09:03:30.150413Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4462fc4ac4b027bbf507dfe268f07134cdfcc10d8d8a0eb2bda7a9780433eb28, slot: 7457 +2024-09-30T09:03:30.231766Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7457 +2024-09-30T09:03:30.231786Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7457 +2024-09-30T09:03:30.242980Z INFO fork_choice_control::block_processor: Validating block with slot: 7458 +2024-09-30T09:03:30.246835Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9c58d86b31c8972781c1bef52e0f6738e73d7ebade6845f82c796d1346a17540, slot: 7458 +2024-09-30T09:03:30.260715Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7458 +2024-09-30T09:03:30.260738Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7458 +2024-09-30T09:03:30.273307Z INFO fork_choice_control::block_processor: Validating block with slot: 7459 +2024-09-30T09:03:30.274365Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfad25c06c8fc2894b964f693e86a004fa5c0837283a1326d1c1fd929e113c72a, slot: 7459 +2024-09-30T09:03:30.281095Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7459 +2024-09-30T09:03:30.281114Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7459 +2024-09-30T09:03:30.293784Z INFO fork_choice_control::block_processor: Validating block with slot: 7460 +2024-09-30T09:03:30.294791Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbf31d15a730088466c40d8f48130f82d601b482e9cace4e5d969ece5fbf250f7, slot: 7460 +2024-09-30T09:03:30.301146Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7460 +2024-09-30T09:03:30.301160Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7460 +2024-09-30T09:03:30.314074Z INFO fork_choice_control::block_processor: Validating block with slot: 7461 +2024-09-30T09:03:30.315445Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x80d944113928a61fc06df0f8df6d98ed0cada90519761ce882261b88a0bee94b, slot: 7461 +2024-09-30T09:03:30.324254Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7461 +2024-09-30T09:03:30.324277Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7461 +2024-09-30T09:03:30.338007Z INFO fork_choice_control::block_processor: Validating block with slot: 7462 +2024-09-30T09:03:30.339771Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8f38e5cb9c7c73010383d85a28c8c057ea6dfa51cb089a357793d6f9a2738605, slot: 7462 +2024-09-30T09:03:30.350782Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7462 +2024-09-30T09:03:30.350805Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7462 +2024-09-30T09:03:30.370294Z INFO fork_choice_control::block_processor: Validating block with slot: 7463 +2024-09-30T09:03:30.371373Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x997d5e4e71762a04a642ff7dd0d5b242b63578d70e720de0c09dfd54a0998c05, slot: 7463 +2024-09-30T09:03:30.378090Z INFO fork_choice_control::block_processor: Validating block with slot: 7829 +2024-09-30T09:03:30.378095Z INFO fork_choice_control::block_processor: Validating block with slot: 7831 +2024-09-30T09:03:30.378302Z INFO fork_choice_control::block_processor: Validating block with slot: 7833 +2024-09-30T09:03:30.378374Z INFO fork_choice_control::block_processor: Validating block with slot: 7834 +2024-09-30T09:03:30.378431Z INFO fork_choice_control::block_processor: Validating block with slot: 7835 +2024-09-30T09:03:30.379107Z INFO fork_choice_control::block_processor: Validating block with slot: 7830 +2024-09-30T09:03:30.379351Z INFO fork_choice_control::block_processor: Validating block with slot: 7836 +2024-09-30T09:03:30.380388Z INFO fork_choice_control::block_processor: Validating block with slot: 7837 +2024-09-30T09:03:30.381025Z INFO fork_choice_control::block_processor: Validating block with slot: 7838 +2024-09-30T09:03:30.381389Z INFO fork_choice_control::block_processor: Validating block with slot: 7841 +2024-09-30T09:03:30.381639Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7463 +2024-09-30T09:03:30.381667Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7463 +2024-09-30T09:03:30.381739Z INFO fork_choice_control::block_processor: Validating block with slot: 7842 +2024-09-30T09:03:30.382041Z INFO fork_choice_control::block_processor: Validating block with slot: 7843 +2024-09-30T09:03:30.382161Z INFO fork_choice_control::block_processor: Validating block with slot: 7844 +2024-09-30T09:03:30.382258Z INFO fork_choice_control::block_processor: Validating block with slot: 7845 +2024-09-30T09:03:30.397655Z INFO fork_choice_control::block_processor: Validating block with slot: 7464 +2024-09-30T09:03:30.399148Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x285fa40f074ca3dafbe3695c73c3b6ef67c6599c3e9404562e05188adb851f3f, slot: 7464 +2024-09-30T09:03:30.407096Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7464 +2024-09-30T09:03:30.407109Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7464 +2024-09-30T09:03:30.421651Z INFO fork_choice_control::block_processor: Validating block with slot: 7465 +2024-09-30T09:03:30.422847Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x43b6de990afb3bda395666e16cc76903e58894560aec216ab06d4617109adcae, slot: 7465 +2024-09-30T09:03:30.430102Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7465 +2024-09-30T09:03:30.430125Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7465 +2024-09-30T09:03:30.445500Z INFO fork_choice_control::block_processor: Validating block with slot: 7466 +2024-09-30T09:03:30.446662Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6cc9d5dc8f0ddc07b103d82ed0645c82b9765d719113f54db0dedf07bb489f36, slot: 7466 +2024-09-30T09:03:30.452867Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7466 +2024-09-30T09:03:30.452881Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7466 +2024-09-30T09:03:30.467889Z INFO fork_choice_control::block_processor: Validating block with slot: 7467 +2024-09-30T09:03:30.471076Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x95c557190bfe1164b85f450b98aa0842cd386d4a2584c3626d1e12c665a68c19, slot: 7467 +2024-09-30T09:03:30.484379Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7467 +2024-09-30T09:03:30.484398Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7467 +2024-09-30T09:03:30.488623Z INFO fork_choice_control::block_processor: Validating block with slot: 7848 +2024-09-30T09:03:30.488640Z INFO fork_choice_control::block_processor: Validating block with slot: 7847 +2024-09-30T09:03:30.488662Z INFO fork_choice_control::block_processor: Validating block with slot: 7852 +2024-09-30T09:03:30.488742Z INFO fork_choice_control::block_processor: Validating block with slot: 7850 +2024-09-30T09:03:30.488742Z INFO fork_choice_control::block_processor: Validating block with slot: 7849 +2024-09-30T09:03:30.488746Z INFO fork_choice_control::block_processor: Validating block with slot: 7851 +2024-09-30T09:03:30.488928Z INFO fork_choice_control::block_processor: Validating block with slot: 7846 +2024-09-30T09:03:30.489672Z INFO fork_choice_control::block_processor: Validating block with slot: 7853 +2024-09-30T09:03:30.489761Z INFO fork_choice_control::block_processor: Validating block with slot: 7854 +2024-09-30T09:03:30.490268Z INFO fork_choice_control::block_processor: Validating block with slot: 7855 +2024-09-30T09:03:30.500257Z INFO fork_choice_control::block_processor: Validating block with slot: 7468 +2024-09-30T09:03:30.501610Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcde2dba227b160200a6bec5b0ed30b439c94be53af12a41977ce65a46d9cdb14, slot: 7468 +2024-09-30T09:03:30.510903Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7468 +2024-09-30T09:03:30.510922Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7468 +2024-09-30T09:03:30.527325Z INFO fork_choice_control::block_processor: Validating block with slot: 7469 +2024-09-30T09:03:30.528368Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2d15a765bb19e7ead7438b10dcff887c4cfd2818b4cb7c291b8ecc3de668b7a9, slot: 7469 +2024-09-30T09:03:30.535490Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7469 +2024-09-30T09:03:30.535505Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7469 +2024-09-30T09:03:30.552056Z INFO fork_choice_control::block_processor: Validating block with slot: 7470 +2024-09-30T09:03:30.553226Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3b894fe58ae031c7cff9fe2e885a80d277cc82f087b53e66e76ae0af1a65ad05, slot: 7470 +2024-09-30T09:03:30.560951Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7470 +2024-09-30T09:03:30.560973Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7470 +2024-09-30T09:03:30.577469Z INFO fork_choice_control::block_processor: Validating block with slot: 7471 +2024-09-30T09:03:30.578812Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x042fd11d0ffebfee0c358eba691b798c282a96bae1c5b9bae955befde8f4cc42, slot: 7471 +2024-09-30T09:03:30.585978Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7471 +2024-09-30T09:03:30.585992Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7471 +2024-09-30T09:03:30.602672Z INFO fork_choice_control::block_processor: Validating block with slot: 7472 +2024-09-30T09:03:30.603709Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd8e020459e7a8b452dad10da1cd100d32d1e03e0b9bf843d05f4b82fe977430a, slot: 7472 +2024-09-30T09:03:30.610428Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7472 +2024-09-30T09:03:30.610447Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7472 +2024-09-30T09:03:30.624172Z INFO fork_choice_control::block_processor: Validating block with slot: 7758 +2024-09-30T09:03:30.624186Z INFO fork_choice_control::block_processor: Validating block with slot: 7761 +2024-09-30T09:03:30.624221Z INFO fork_choice_control::block_processor: Validating block with slot: 7760 +2024-09-30T09:03:30.624229Z INFO fork_choice_control::block_processor: Validating block with slot: 7759 +2024-09-30T09:03:30.624846Z INFO fork_choice_control::block_processor: Validating block with slot: 7762 +2024-09-30T09:03:30.625363Z INFO fork_choice_control::block_processor: Validating block with slot: 7763 +2024-09-30T09:03:30.625527Z INFO fork_choice_control::block_processor: Validating block with slot: 7764 +2024-09-30T09:03:30.626675Z INFO fork_choice_control::block_processor: Validating block with slot: 7765 +2024-09-30T09:03:30.626938Z INFO fork_choice_control::block_processor: Validating block with slot: 7766 +2024-09-30T09:03:30.627710Z INFO fork_choice_control::block_processor: Validating block with slot: 7767 +2024-09-30T09:03:30.627834Z INFO fork_choice_control::block_processor: Validating block with slot: 7768 +2024-09-30T09:03:30.628194Z INFO fork_choice_control::block_processor: Validating block with slot: 7769 +2024-09-30T09:03:30.628398Z INFO fork_choice_control::block_processor: Validating block with slot: 7770 +2024-09-30T09:03:30.628547Z INFO fork_choice_control::block_processor: Validating block with slot: 7772 +2024-09-30T09:03:30.629114Z INFO fork_choice_control::block_processor: Validating block with slot: 7773 +2024-09-30T09:03:30.629145Z INFO fork_choice_control::block_processor: Validating block with slot: 7774 +2024-09-30T09:03:30.629709Z INFO fork_choice_control::block_processor: Validating block with slot: 7775 +2024-09-30T09:03:30.629963Z INFO fork_choice_control::block_processor: Validating block with slot: 7776 +2024-09-30T09:03:30.630306Z INFO fork_choice_control::block_processor: Validating block with slot: 7778 +2024-09-30T09:03:30.630616Z INFO fork_choice_control::block_processor: Validating block with slot: 7779 +2024-09-30T09:03:30.630598Z INFO fork_choice_control::block_processor: Validating block with slot: 7777 +2024-09-30T09:03:30.631130Z INFO fork_choice_control::block_processor: Validating block with slot: 7780 +2024-09-30T09:03:30.631494Z INFO fork_choice_control::block_processor: Validating block with slot: 7781 +2024-09-30T09:03:30.631688Z INFO fork_choice_control::block_processor: Validating block with slot: 7782 +2024-09-30T09:03:30.631844Z INFO fork_choice_control::block_processor: Validating block with slot: 7783 +2024-09-30T09:03:30.632150Z INFO fork_choice_control::block_processor: Validating block with slot: 7784 +2024-09-30T09:03:30.632682Z INFO fork_choice_control::block_processor: Validating block with slot: 7785 +2024-09-30T09:03:30.632772Z INFO fork_choice_control::block_processor: Validating block with slot: 7786 +2024-09-30T09:03:30.633389Z INFO fork_choice_control::block_processor: Validating block with slot: 7787 +2024-09-30T09:03:30.633697Z INFO fork_choice_control::block_processor: Validating block with slot: 7788 +2024-09-30T09:03:30.633854Z INFO fork_choice_control::block_processor: Validating block with slot: 7789 +2024-09-30T09:03:30.633921Z INFO fork_choice_control::block_processor: Validating block with slot: 7790 +2024-09-30T09:03:30.634472Z INFO fork_choice_control::block_processor: Validating block with slot: 7792 +2024-09-30T09:03:30.634625Z INFO fork_choice_control::block_processor: Validating block with slot: 7791 +2024-09-30T09:03:30.634784Z INFO fork_choice_control::block_processor: Validating block with slot: 7793 +2024-09-30T09:03:30.635003Z INFO fork_choice_control::block_processor: Validating block with slot: 7794 +2024-09-30T09:03:30.635875Z INFO fork_choice_control::block_processor: Validating block with slot: 7795 +2024-09-30T09:03:30.636080Z INFO fork_choice_control::block_processor: Validating block with slot: 7796 +2024-09-30T09:03:30.636630Z INFO fork_choice_control::block_processor: Validating block with slot: 7797 +2024-09-30T09:03:30.637145Z INFO fork_choice_control::block_processor: Validating block with slot: 7799 +2024-09-30T09:03:30.637132Z INFO fork_choice_control::block_processor: Validating block with slot: 7798 +2024-09-30T09:03:30.637194Z INFO fork_choice_control::block_processor: Validating block with slot: 7800 +2024-09-30T09:03:30.637455Z INFO fork_choice_control::block_processor: Validating block with slot: 7801 +2024-09-30T09:03:30.637928Z INFO fork_choice_control::block_processor: Validating block with slot: 7802 +2024-09-30T09:03:30.638053Z INFO fork_choice_control::block_processor: Validating block with slot: 7803 +2024-09-30T09:03:30.638467Z INFO fork_choice_control::block_processor: Validating block with slot: 7804 +2024-09-30T09:03:30.639085Z INFO fork_choice_control::block_processor: Validating block with slot: 7805 +2024-09-30T09:03:30.639112Z INFO fork_choice_control::block_processor: Validating block with slot: 7806 +2024-09-30T09:03:30.639362Z INFO fork_choice_control::block_processor: Validating block with slot: 7856 +2024-09-30T09:03:30.639480Z INFO fork_choice_control::block_processor: Validating block with slot: 7857 +2024-09-30T09:03:30.640100Z INFO fork_choice_control::block_processor: Validating block with slot: 7858 +2024-09-30T09:03:30.640933Z INFO fork_choice_control::block_processor: Validating block with slot: 7859 +2024-09-30T09:03:30.641031Z INFO fork_choice_control::block_processor: Validating block with slot: 7860 +2024-09-30T09:03:30.641113Z INFO fork_choice_control::block_processor: Validating block with slot: 7861 +2024-09-30T09:03:30.641899Z INFO fork_choice_control::block_processor: Validating block with slot: 7862 +2024-09-30T09:03:30.642043Z INFO fork_choice_control::block_processor: Validating block with slot: 7863 +2024-09-30T09:03:30.642125Z INFO fork_choice_control::block_processor: Validating block with slot: 7864 +2024-09-30T09:03:30.642553Z INFO fork_choice_control::block_processor: Validating block with slot: 7865 +2024-09-30T09:03:30.642916Z INFO fork_choice_control::block_processor: Validating block with slot: 7866 +2024-09-30T09:03:30.643496Z INFO fork_choice_control::block_processor: Validating block with slot: 7867 +2024-09-30T09:03:30.643563Z INFO fork_choice_control::block_processor: Validating block with slot: 7868 +2024-09-30T09:03:30.644073Z INFO fork_choice_control::block_processor: Validating block with slot: 7870 +2024-09-30T09:03:30.644353Z INFO fork_choice_control::block_processor: Validating block with slot: 7871 +2024-09-30T09:03:30.644576Z INFO fork_choice_control::block_processor: Validating block with slot: 7872 +2024-09-30T09:03:30.645223Z INFO fork_choice_control::block_processor: Validating block with slot: 7873 +2024-09-30T09:03:30.645363Z INFO fork_choice_control::block_processor: Validating block with slot: 7874 +2024-09-30T09:03:30.645762Z INFO fork_choice_control::block_processor: Validating block with slot: 7875 +2024-09-30T09:03:30.645988Z INFO fork_choice_control::block_processor: Validating block with slot: 7877 +2024-09-30T09:03:30.646019Z INFO fork_choice_control::block_processor: Validating block with slot: 7878 +2024-09-30T09:03:30.646232Z INFO fork_choice_control::block_processor: Validating block with slot: 7876 +2024-09-30T09:03:30.647018Z INFO fork_choice_control::block_processor: Validating block with slot: 7879 +2024-09-30T09:03:30.647103Z INFO fork_choice_control::block_processor: Validating block with slot: 7880 +2024-09-30T09:03:30.647389Z INFO fork_choice_control::block_processor: Validating block with slot: 7881 +2024-09-30T09:03:30.648341Z INFO fork_choice_control::block_processor: Validating block with slot: 7882 +2024-09-30T09:03:30.648474Z INFO fork_choice_control::block_processor: Validating block with slot: 7883 +2024-09-30T09:03:30.648510Z INFO fork_choice_control::block_processor: Validating block with slot: 7884 +2024-09-30T09:03:30.649552Z INFO fork_choice_control::block_processor: Validating block with slot: 7473 +2024-09-30T09:03:30.649539Z INFO fork_choice_control::block_processor: Validating block with slot: 7885 +2024-09-30T09:03:30.653548Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xac08af17f75f01ce408f3d074565af74bf783d3659f9a5715e5c78e3df7ef410, slot: 7473 +2024-09-30T09:03:30.667645Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7473 +2024-09-30T09:03:30.667666Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7473 +2024-09-30T09:03:30.685056Z INFO fork_choice_control::block_processor: Validating block with slot: 7474 +2024-09-30T09:03:30.686105Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xec23fa364c8d45fda02956983b87deb9f6f5ba0a951a6f613223ee35326b6ba7, slot: 7474 +2024-09-30T09:03:30.698179Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7474 +2024-09-30T09:03:30.698205Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7474 +2024-09-30T09:03:30.716913Z INFO fork_choice_control::block_processor: Validating block with slot: 7475 +2024-09-30T09:03:30.718174Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2d4701ec8dc330f3d46bf42800db6376fc9f4ccc390234f0661b5639bb279ba1, slot: 7475 +2024-09-30T09:03:30.726885Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7475 +2024-09-30T09:03:30.726902Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7475 +2024-09-30T09:03:30.745327Z INFO fork_choice_control::block_processor: Validating block with slot: 7476 +2024-09-30T09:03:30.747209Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4e46735b0715f6ef866e0eeb06e30d24eeda50b6dea617875eb8e1668b1dbe66, slot: 7476 +2024-09-30T09:03:30.754933Z INFO fork_choice_control::block_processor: Validating block with slot: 7808 +2024-09-30T09:03:30.754973Z INFO fork_choice_control::block_processor: Validating block with slot: 7807 +2024-09-30T09:03:30.755014Z INFO fork_choice_control::block_processor: Validating block with slot: 7809 +2024-09-30T09:03:30.755262Z INFO fork_choice_control::block_processor: Validating block with slot: 7810 +2024-09-30T09:03:30.755351Z INFO fork_choice_control::block_processor: Validating block with slot: 7811 +2024-09-30T09:03:30.755379Z INFO fork_choice_control::block_processor: Validating block with slot: 7812 +2024-09-30T09:03:30.756195Z INFO fork_choice_control::block_processor: Validating block with slot: 7813 +2024-09-30T09:03:30.756794Z INFO fork_choice_control::block_processor: Validating block with slot: 7814 +2024-09-30T09:03:30.757031Z INFO fork_choice_control::block_processor: Validating block with slot: 7816 +2024-09-30T09:03:30.757103Z INFO fork_choice_control::block_processor: Validating block with slot: 7817 +2024-09-30T09:03:30.757306Z INFO fork_choice_control::block_processor: Validating block with slot: 7818 +2024-09-30T09:03:30.757613Z INFO fork_choice_control::block_processor: Validating block with slot: 7820 +2024-09-30T09:03:30.758186Z INFO fork_choice_control::block_processor: Validating block with slot: 7821 +2024-09-30T09:03:30.758314Z INFO fork_choice_control::block_processor: Validating block with slot: 7694 +2024-09-30T09:03:30.758593Z INFO fork_choice_control::block_processor: Validating block with slot: 7815 +2024-09-30T09:03:30.759527Z INFO fork_choice_control::block_processor: Validating block with slot: 7695 +2024-09-30T09:03:30.759773Z INFO fork_choice_control::block_processor: Validating block with slot: 7697 +2024-09-30T09:03:30.759985Z INFO fork_choice_control::block_processor: Validating block with slot: 7698 +2024-09-30T09:03:30.760249Z INFO fork_choice_control::block_processor: Validating block with slot: 7696 +2024-09-30T09:03:30.761154Z INFO fork_choice_control::block_processor: Validating block with slot: 7699 +2024-09-30T09:03:30.761519Z INFO fork_choice_control::block_processor: Validating block with slot: 7700 +2024-09-30T09:03:30.762406Z INFO fork_choice_control::block_processor: Validating block with slot: 7702 +2024-09-30T09:03:30.762775Z INFO fork_choice_control::block_processor: Validating block with slot: 7703 +2024-09-30T09:03:30.762885Z INFO fork_choice_control::block_processor: Validating block with slot: 7704 +2024-09-30T09:03:30.764138Z INFO fork_choice_control::block_processor: Validating block with slot: 7705 +2024-09-30T09:03:30.764317Z INFO fork_choice_control::block_processor: Validating block with slot: 7706 +2024-09-30T09:03:30.764370Z INFO fork_choice_control::block_processor: Validating block with slot: 7709 +2024-09-30T09:03:30.764923Z INFO fork_choice_control::block_processor: Validating block with slot: 7710 +2024-09-30T09:03:30.765058Z INFO fork_choice_control::block_processor: Validating block with slot: 7707 +2024-09-30T09:03:30.765463Z INFO fork_choice_control::block_processor: Validating block with slot: 7711 +2024-09-30T09:03:30.765581Z INFO fork_choice_control::block_processor: Validating block with slot: 7712 +2024-09-30T09:03:30.765971Z INFO fork_choice_control::block_processor: Validating block with slot: 7713 +2024-09-30T09:03:30.766330Z INFO fork_choice_control::block_processor: Validating block with slot: 7714 +2024-09-30T09:03:30.766702Z INFO fork_choice_control::block_processor: Validating block with slot: 7715 +2024-09-30T09:03:30.767418Z INFO fork_choice_control::block_processor: Validating block with slot: 7716 +2024-09-30T09:03:30.768535Z INFO fork_choice_control::block_processor: Validating block with slot: 7717 +2024-09-30T09:03:30.768974Z INFO fork_choice_control::block_processor: Validating block with slot: 7718 +2024-09-30T09:03:30.769855Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7476 +2024-09-30T09:03:30.769903Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7476 +2024-09-30T09:03:30.770227Z INFO fork_choice_control::block_processor: Validating block with slot: 7708 +2024-09-30T09:03:30.789565Z INFO fork_choice_control::block_processor: Validating block with slot: 7477 +2024-09-30T09:03:30.790944Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2eab4a1466aca0356a93d44d04ec0d3e944bc90f2ec14d883cd28b1280660bd3, slot: 7477 +2024-09-30T09:03:30.797913Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7477 +2024-09-30T09:03:30.797934Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7477 +2024-09-30T09:03:30.816661Z INFO fork_choice_control::block_processor: Validating block with slot: 7478 +2024-09-30T09:03:30.817908Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8dbd17754f187da95af3a9f15a662ad7c4423f484e20d9e19e142e48063f03bb, slot: 7478 +2024-09-30T09:03:30.825373Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7478 +2024-09-30T09:03:30.825398Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7478 +2024-09-30T09:03:30.843125Z INFO fork_choice_control::block_processor: Validating block with slot: 7479 +2024-09-30T09:03:30.844102Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x68595b4f7fd76384d881ede11f4732f0bce45ec6d9b8570e520049a9553f26f0, slot: 7479 +2024-09-30T09:03:30.849857Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7479 +2024-09-30T09:03:30.849871Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7479 +2024-09-30T09:03:30.871985Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 232, root: 0xe3def00bdea010ab85327657af2e6842bd663e8760bfb825cd2ed0de28c1655b, head slot: 7479, head root: 0x68595b4f7fd76384d881ede11f4732f0bce45ec6d9b8570e520049a9553f26f0) +2024-09-30T09:03:30.872010Z INFO fork_choice_control::block_processor: Validating block with slot: 7480 +2024-09-30T09:03:30.874144Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x20b579bc43c6d4ebca0aee31605076763806547afe2c583ecb6d37f9dd42d164, slot: 7480 +2024-09-30T09:03:30.883211Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7480 +2024-09-30T09:03:30.883230Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7480 +2024-09-30T09:03:30.901165Z INFO fork_choice_control::block_processor: Validating block with slot: 7481 +2024-09-30T09:03:30.902706Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa49c92228117488a5d1cf564c3c6c03516dbc5a29098ca27bf7797eb0de0ecaa, slot: 7481 +2024-09-30T09:03:30.910356Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7481 +2024-09-30T09:03:30.910430Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7481 +2024-09-30T09:03:30.928954Z INFO fork_choice_control::block_processor: Validating block with slot: 7482 +2024-09-30T09:03:30.930322Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf7ec572c83b914ae71084a12c8ad65ce10c97f7c91cb2410bd69c79e44bff5c5, slot: 7482 +2024-09-30T09:03:30.941221Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7482 +2024-09-30T09:03:30.941245Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7482 +2024-09-30T09:03:30.961137Z INFO fork_choice_control::block_processor: Validating block with slot: 7483 +2024-09-30T09:03:30.965004Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4a95600d184360e516ff3c68c8994ef01b8dc278996854cdfb5cef665ce038ec, slot: 7483 +2024-09-30T09:03:30.975526Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7483 +2024-09-30T09:03:30.975550Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7483 +2024-09-30T09:03:30.995988Z INFO fork_choice_control::block_processor: Validating block with slot: 7484 +2024-09-30T09:03:30.997956Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x88b1f690321810d647048bd812a9ff5d5907623804776efd1d38dbcdca472879, slot: 7484 +2024-09-30T09:03:31.007237Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7484 +2024-09-30T09:03:31.007253Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7484 +2024-09-30T09:03:31.017027Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 7424 +2024-09-30T09:03:31.026850Z INFO fork_choice_control::block_processor: Validating block with slot: 7485 +2024-09-30T09:03:31.028442Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd9913cc95961da1286f79cae30317d2f76b0e49f2e00c38eb50fdb7b7556f251, slot: 7485 +2024-09-30T09:03:31.035948Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7485 +2024-09-30T09:03:31.035964Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7485 +2024-09-30T09:03:31.057009Z INFO fork_choice_control::block_processor: Validating block with slot: 7486 +2024-09-30T09:03:31.058363Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8daceea8861ad509a7237e4c6b6b1b8084eb1251d94923c2503f747c84cdaa75, slot: 7486 +2024-09-30T09:03:31.065761Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7486 +2024-09-30T09:03:31.065783Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7486 +2024-09-30T09:03:31.088027Z INFO fork_choice_control::block_processor: Validating block with slot: 7487 +2024-09-30T09:03:31.089098Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x49de62833bb33886e28d4cee2a0b8be10d4153fe48ac6fde4aa4a468c4da16c4, slot: 7487 +2024-09-30T09:03:31.107477Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7487 +2024-09-30T09:03:31.107501Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7487 +2024-09-30T09:03:31.112244Z INFO fork_choice_control::block_processor: Validating block with slot: 7719 +2024-09-30T09:03:31.112303Z INFO fork_choice_control::block_processor: Validating block with slot: 7720 +2024-09-30T09:03:31.116511Z INFO fork_choice_control::block_processor: Validating block with slot: 7721 +2024-09-30T09:03:31.130112Z INFO fork_choice_control::block_processor: Validating block with slot: 7488 +2024-09-30T09:03:31.131477Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x67cc8e2920d206b95919640aa9c4bd51ec443deb12a93a7658b339f3e3b83774, slot: 7488 +2024-09-30T09:03:31.137971Z INFO fork_choice_control::block_processor: Validating block with slot: 7722 +2024-09-30T09:03:31.216954Z INFO fork_choice_control::block_processor: Validating block with slot: 7723 +2024-09-30T09:03:31.216986Z INFO fork_choice_control::block_processor: Validating block with slot: 7725 +2024-09-30T09:03:31.216996Z INFO fork_choice_control::block_processor: Validating block with slot: 7727 +2024-09-30T09:03:31.217006Z INFO fork_choice_control::block_processor: Validating block with slot: 7726 +2024-09-30T09:03:31.217211Z INFO fork_choice_control::block_processor: Validating block with slot: 7729 +2024-09-30T09:03:31.217490Z INFO fork_choice_control::block_processor: Validating block with slot: 7724 +2024-09-30T09:03:31.218324Z INFO fork_choice_control::block_processor: Validating block with slot: 7730 +2024-09-30T09:03:31.218724Z INFO fork_choice_control::block_processor: Validating block with slot: 7731 +2024-09-30T09:03:31.219229Z INFO fork_choice_control::block_processor: Validating block with slot: 7732 +2024-09-30T09:03:31.219493Z INFO fork_choice_control::block_processor: Validating block with slot: 7733 +2024-09-30T09:03:31.220027Z INFO fork_choice_control::block_processor: Validating block with slot: 7734 +2024-09-30T09:03:31.220085Z INFO fork_choice_control::block_processor: Validating block with slot: 7736 +2024-09-30T09:03:31.220165Z INFO fork_choice_control::block_processor: Validating block with slot: 7737 +2024-09-30T09:03:31.220821Z INFO fork_choice_control::block_processor: Validating block with slot: 7738 +2024-09-30T09:03:31.221126Z INFO fork_choice_control::block_processor: Validating block with slot: 7739 +2024-09-30T09:03:31.221489Z INFO fork_choice_control::block_processor: Validating block with slot: 7740 +2024-09-30T09:03:31.222421Z INFO fork_choice_control::block_processor: Validating block with slot: 7741 +2024-09-30T09:03:31.222611Z INFO fork_choice_control::block_processor: Validating block with slot: 7745 +2024-09-30T09:03:31.223059Z INFO fork_choice_control::block_processor: Validating block with slot: 7742 +2024-09-30T09:03:31.223091Z INFO fork_choice_control::block_processor: Validating block with slot: 7746 +2024-09-30T09:03:31.223507Z INFO fork_choice_control::block_processor: Validating block with slot: 7747 +2024-09-30T09:03:31.224327Z INFO fork_choice_control::block_processor: Validating block with slot: 7748 +2024-09-30T09:03:31.224462Z INFO fork_choice_control::block_processor: Validating block with slot: 7749 +2024-09-30T09:03:31.225320Z INFO fork_choice_control::block_processor: Validating block with slot: 7750 +2024-09-30T09:03:31.226330Z INFO fork_choice_control::block_processor: Validating block with slot: 7751 +2024-09-30T09:03:31.226754Z INFO fork_choice_control::block_processor: Validating block with slot: 7752 +2024-09-30T09:03:31.227573Z INFO fork_choice_control::block_processor: Validating block with slot: 7754 +2024-09-30T09:03:31.227690Z INFO fork_choice_control::block_processor: Validating block with slot: 7755 +2024-09-30T09:03:31.227736Z INFO fork_choice_control::block_processor: Validating block with slot: 7753 +2024-09-30T09:03:31.228018Z INFO fork_choice_control::block_processor: Validating block with slot: 7756 +2024-09-30T09:03:31.228820Z INFO fork_choice_control::block_processor: Validating block with slot: 7757 +2024-09-30T09:03:31.228868Z INFO fork_choice_control::block_processor: Validating block with slot: 7743 +2024-09-30T09:03:31.229142Z INFO fork_choice_control::block_processor: Validating block with slot: 7744 +2024-09-30T09:03:31.261868Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7488 +2024-09-30T09:03:31.261895Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7488 +2024-09-30T09:03:31.273891Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7488) +2024-09-30T09:03:31.274007Z INFO fork_choice_control::block_processor: Validating block with slot: 7489 +2024-09-30T09:03:31.275261Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa5ed2bcf397e6a2b9ef3a9b8fd104bc04cc8fe47d8f10f423186f41384a5fc12, slot: 7489 +2024-09-30T09:03:31.359896Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7489 +2024-09-30T09:03:31.359916Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7489 +2024-09-30T09:03:31.372657Z INFO fork_choice_control::block_processor: Validating block with slot: 7490 +2024-09-30T09:03:31.374732Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc263ec7cca291a82ab941e616a60fdebda4ed6bf879eecd11113df412ed74ff2, slot: 7490 +2024-09-30T09:03:31.384604Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7490 +2024-09-30T09:03:31.384623Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7490 +2024-09-30T09:03:31.398131Z INFO fork_choice_control::block_processor: Validating block with slot: 7491 +2024-09-30T09:03:31.399416Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xacf8172c127009853e625511a683388097e54365197216963fa5ce0c0852b774, slot: 7491 +2024-09-30T09:03:31.407657Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7491 +2024-09-30T09:03:31.407671Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7491 +2024-09-30T09:03:31.420668Z INFO fork_choice_control::block_processor: Validating block with slot: 7492 +2024-09-30T09:03:31.421866Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf5785196b7afe284de53689921687d930e6199386485344e2e9c4a6b67e4019d, slot: 7492 +2024-09-30T09:03:31.430453Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7492 +2024-09-30T09:03:31.430473Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7492 +2024-09-30T09:03:31.444451Z INFO fork_choice_control::block_processor: Validating block with slot: 7493 +2024-09-30T09:03:31.445575Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x121d1c7eedbe596e6212802aebc2d0191d4cc86a99c251e2c4affb00f76f1663, slot: 7493 +2024-09-30T09:03:31.453363Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7493 +2024-09-30T09:03:31.453377Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7493 +2024-09-30T09:03:31.467606Z INFO fork_choice_control::block_processor: Validating block with slot: 7494 +2024-09-30T09:03:31.468676Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf56f89b6d5853cbd06b9f3f5394b6aa81d51e55b8172d8601b9c125275cf5ada, slot: 7494 +2024-09-30T09:03:31.475168Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7494 +2024-09-30T09:03:31.475186Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7494 +2024-09-30T09:03:31.488707Z INFO fork_choice_control::block_processor: Validating block with slot: 7496 +2024-09-30T09:03:31.492511Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x28ae1f900a889989b5d0dabbcb84939591b98116df01aa09ec037ed42bf43934, slot: 7496 +2024-09-30T09:03:31.506401Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7496 +2024-09-30T09:03:31.506419Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7496 +2024-09-30T09:03:31.519841Z INFO fork_choice_control::block_processor: Validating block with slot: 7497 +2024-09-30T09:03:31.520799Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x414495abf3944b416e8f8dc5c5c7a5acf9b99ab6f6e367c1e508e7c99ce83fea, slot: 7497 +2024-09-30T09:03:31.526773Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7497 +2024-09-30T09:03:31.526797Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7497 +2024-09-30T09:03:31.540548Z INFO fork_choice_control::block_processor: Validating block with slot: 7498 +2024-09-30T09:03:31.541601Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9881fd422d36ab9bd2091921102a4a49be240f06eaadc29fb4e2147325c586c3, slot: 7498 +2024-09-30T09:03:31.547559Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7498 +2024-09-30T09:03:31.547579Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7498 +2024-09-30T09:03:31.560898Z INFO fork_choice_control::block_processor: Validating block with slot: 7499 +2024-09-30T09:03:31.562569Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x09c1d10453cf391037def2a4878c0935e070ed307adf228344bd7994bd70fa3d, slot: 7499 +2024-09-30T09:03:31.569695Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7499 +2024-09-30T09:03:31.569707Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7499 +2024-09-30T09:03:31.583764Z INFO fork_choice_control::block_processor: Validating block with slot: 7500 +2024-09-30T09:03:31.584822Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x37a8e3f129ce7da895cd1399c0399a1295d27a96e7a4233fa85dd23723735212, slot: 7500 +2024-09-30T09:03:31.590613Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7500 +2024-09-30T09:03:31.590626Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7500 +2024-09-30T09:03:31.605414Z INFO fork_choice_control::block_processor: Validating block with slot: 7501 +2024-09-30T09:03:31.608272Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2c96d5a14a72d4460d59c15f82102e2219c354d2c6080425c4407b68ba3f8870, slot: 7501 +2024-09-30T09:03:31.618211Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7501 +2024-09-30T09:03:31.618228Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7501 +2024-09-30T09:03:31.632233Z INFO fork_choice_control::block_processor: Validating block with slot: 7502 +2024-09-30T09:03:31.633338Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa2161255df711169943c7f06de2278808a13b0d358deb2482062cc1e0df3b130, slot: 7502 +2024-09-30T09:03:31.639188Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7502 +2024-09-30T09:03:31.639201Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7502 +2024-09-30T09:03:31.653208Z INFO fork_choice_control::block_processor: Validating block with slot: 7503 +2024-09-30T09:03:31.654168Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9e296588bae1a9183c7e88041c3e2e38577806a7da8237cff03b5cdb76bf2c50, slot: 7503 +2024-09-30T09:03:31.660102Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7503 +2024-09-30T09:03:31.660123Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7503 +2024-09-30T09:03:31.674245Z INFO fork_choice_control::block_processor: Validating block with slot: 7505 +2024-09-30T09:03:31.676122Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9e65aaa326c6b1e5d72adaff44e8165dd28c9cfd64ffffc43e51582bec31686e, slot: 7505 +2024-09-30T09:03:31.686210Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7505 +2024-09-30T09:03:31.686228Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7505 +2024-09-30T09:03:31.701426Z INFO fork_choice_control::block_processor: Validating block with slot: 7506 +2024-09-30T09:03:31.702442Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf307739369d583d307237c80c9f76fa69816d7bd2f4f2c9c1cbcab66a800b42d, slot: 7506 +2024-09-30T09:03:31.708356Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7506 +2024-09-30T09:03:31.708370Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7506 +2024-09-30T09:03:31.714131Z INFO runtime::runtime: saving current chain before exit… +2024-09-30T09:03:31.725449Z INFO fork_choice_control::block_processor: Validating block with slot: 7507 +2024-09-30T09:03:31.726587Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x14dd689186ba35678e75649afd2c46e5396afc85561723caf8724cbcd34d0ca9, slot: 7507 +2024-09-30T09:03:31.733091Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7507 +2024-09-30T09:03:31.733108Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7507 +2024-09-30T09:03:31.902230Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 7424 +2024-09-30T09:03:32.081919Z INFO fork_choice_control::mutator: chain saved (finalized blocks: 1, unfinalized blocks: 78) +2024-09-30T09:14:03.814956Z INFO logging: Tracing initialized successfully. +2024-09-30T09:14:03.817591Z INFO grandine: Grandine firing up... +2024-09-30T09:14:03.932068Z INFO grandine: starting beacon node +2024-09-30T09:14:03.932936Z INFO grandine::grandine_config: network: mainnet +2024-09-30T09:14:03.932953Z INFO grandine::grandine_config: data directory: "/Users/mercynaps/.grandine/mainnet" +2024-09-30T09:14:03.932965Z INFO grandine::grandine_config: Eth2 database upper limit: 256.0 GiB +2024-09-30T09:14:03.933066Z INFO grandine::grandine_config: Eth1 database upper limit: 16.0 GiB +2024-09-30T09:14:03.934029Z INFO grandine::grandine_config: Eth1 RPC URLs: [] +2024-09-30T09:14:03.935289Z INFO grandine::grandine_config: graffiti: [0x4772616e64696e652f302e342e312d3138613435663700000000000000000000] +2024-09-30T09:14:03.935313Z INFO grandine::grandine_config: HTTP API address: 127.0.0.1:5052 +2024-09-30T09:14:03.935322Z INFO grandine::grandine_config: validator API disabled +2024-09-30T09:14:03.935329Z INFO grandine::grandine_config: archival interval: 32 epochs +2024-09-30T09:14:03.935505Z INFO grandine::grandine_config: slasher enabled: false +2024-09-30T09:14:03.935820Z INFO grandine::grandine_config: client version: Grandine/0.4.1-18a45f7/aarch64-macos +2024-09-30T09:14:03.935850Z INFO grandine::grandine_config: suggested fee recipient: 0xe7cf…1f1b +2024-09-30T09:14:03.935860Z INFO grandine::grandine_config: back sync enabled: false +2024-09-30T09:14:03.977985Z INFO database: database: /Users/mercynaps/.grandine/mainnet/beacon/eth1_cache with name eth1 +2024-09-30T09:14:05.570236Z INFO database: database: /Users/mercynaps/.grandine/mainnet/beacon/beacon_fork_choice with name beacon_fork_choice +2024-09-30T09:14:05.710666Z INFO fork_choice_control::storage: loaded state at slot 7424 +2024-09-30T09:14:07.964310Z INFO fork_choice_store::state_cache_processor: Creating new StateCacheProcessor with lock timeout of 1.5s +2024-09-30T09:14:08.102231Z INFO fork_choice_control::block_processor: Validating block with slot: 7426 +2024-09-30T09:14:08.104676Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe08614b147234c1a32b911ee1e719a8899e3d66ee8d6e557aef6f9f0d3c0ace1, slot: 7426 +2024-09-30T09:14:08.263163Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7426 +2024-09-30T09:14:08.263187Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7426 +2024-09-30T09:14:08.278356Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7424) +2024-09-30T09:14:08.281120Z INFO fork_choice_control::block_processor: Validating block with slot: 7427 +2024-09-30T09:14:08.282548Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x315179f234c1cad646fb7222f0a1e97d8a4e97cdcd6931140330c038ce761d5f, slot: 7427 +2024-09-30T09:14:08.285631Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7427 +2024-09-30T09:14:08.285641Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7427 +2024-09-30T09:14:08.297657Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7424) +2024-09-30T09:14:08.297937Z INFO fork_choice_control::block_processor: Validating block with slot: 7428 +2024-09-30T09:14:08.301206Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7c87ec15393b2316344b53edac7ee18520184f15a4ad25f69a74e602049d73d5, slot: 7428 +2024-09-30T09:14:08.308329Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7428 +2024-09-30T09:14:08.308344Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7428 +2024-09-30T09:14:08.320856Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7424) +2024-09-30T09:14:08.321060Z INFO fork_choice_control::block_processor: Validating block with slot: 7429 +2024-09-30T09:14:08.322273Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3e3fa3ee931224dd4b0ed7934fcc0ad225845912f4af0bb3cc4f96423618edd7, slot: 7429 +2024-09-30T09:14:08.325256Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7429 +2024-09-30T09:14:08.325266Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7429 +2024-09-30T09:14:08.338315Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7424) +2024-09-30T09:14:08.338556Z INFO fork_choice_control::block_processor: Validating block with slot: 7430 +2024-09-30T09:14:08.340204Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5a33fe9be380b9b22d835c3c40305d20de19a289be6b81912873f11ad26504f4, slot: 7430 +2024-09-30T09:14:08.344034Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7430 +2024-09-30T09:14:08.344054Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7430 +2024-09-30T09:14:08.357150Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7424) +2024-09-30T09:14:08.357336Z INFO fork_choice_control::block_processor: Validating block with slot: 7431 +2024-09-30T09:14:08.358304Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x76195c309707c8a3d4486c3a9a2821c292f5c206d57c8e9fd2f648396457b865, slot: 7431 +2024-09-30T09:14:08.360919Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7431 +2024-09-30T09:14:08.360935Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7431 +2024-09-30T09:14:08.373828Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7424) +2024-09-30T09:14:08.374057Z INFO fork_choice_control::block_processor: Validating block with slot: 7432 +2024-09-30T09:14:08.375936Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1d03eebe4795443e3d3b2e0dc64de64cbdf90ffa90ae13c252d9e18d85334db3, slot: 7432 +2024-09-30T09:14:08.380277Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7432 +2024-09-30T09:14:08.380290Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7432 +2024-09-30T09:14:08.393643Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7424) +2024-09-30T09:14:08.393890Z INFO fork_choice_control::block_processor: Validating block with slot: 7433 +2024-09-30T09:14:08.394864Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb7c8530f821e4c2f130558939d775a654e77888e62fb552a7fe4944385ea9464, slot: 7433 +2024-09-30T09:14:08.397338Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7433 +2024-09-30T09:14:08.397347Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7433 +2024-09-30T09:14:08.411009Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7424) +2024-09-30T09:14:08.411242Z INFO fork_choice_control::block_processor: Validating block with slot: 7435 +2024-09-30T09:14:08.413638Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd0c21b91129b748064594414648af158e9f598a6f3d82fbc5ea879270c904e6b, slot: 7435 +2024-09-30T09:14:08.429581Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7435 +2024-09-30T09:14:08.429596Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7435 +2024-09-30T09:14:08.443850Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7424) +2024-09-30T09:14:08.444149Z INFO fork_choice_control::block_processor: Validating block with slot: 7436 +2024-09-30T09:14:08.445270Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa4f695fe19d9154f2809a764be3e1f1a004368d3851fc539d12d095c23d2c29f, slot: 7436 +2024-09-30T09:14:08.447972Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7436 +2024-09-30T09:14:08.447982Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7436 +2024-09-30T09:14:08.462128Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7424) +2024-09-30T09:14:08.462353Z INFO fork_choice_control::block_processor: Validating block with slot: 7437 +2024-09-30T09:14:08.463287Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6791f37abb2f9c09293eff5302668f82760d0e361e9c96fd7d656da9f9e82ffe, slot: 7437 +2024-09-30T09:14:08.465743Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7437 +2024-09-30T09:14:08.465752Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7437 +2024-09-30T09:14:08.480104Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7424) +2024-09-30T09:14:08.480471Z INFO fork_choice_control::block_processor: Validating block with slot: 7438 +2024-09-30T09:14:08.482498Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd835a10f76e83614722fe5a13308118e7387e35c2d5e49125082d911acadadce, slot: 7438 +2024-09-30T09:14:08.486944Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7438 +2024-09-30T09:14:08.486955Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7438 +2024-09-30T09:14:08.502157Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7424) +2024-09-30T09:14:08.502377Z INFO fork_choice_control::block_processor: Validating block with slot: 7439 +2024-09-30T09:14:08.503318Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x891c095ba4791db57f8ae3a9abfa00e4c06ff008573ed1e61a12d54f004861f6, slot: 7439 +2024-09-30T09:14:08.505865Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7439 +2024-09-30T09:14:08.505874Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7439 +2024-09-30T09:14:08.521513Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7424) +2024-09-30T09:14:08.521765Z INFO fork_choice_control::block_processor: Validating block with slot: 7440 +2024-09-30T09:14:08.523906Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd4acd555d6d38178e498d00ccc14a5b1f3f4431a85b154f8bec599acc7fa07d3, slot: 7440 +2024-09-30T09:14:08.528694Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7440 +2024-09-30T09:14:08.528716Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7440 +2024-09-30T09:14:08.544340Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7424) +2024-09-30T09:14:08.544591Z INFO fork_choice_control::block_processor: Validating block with slot: 7441 +2024-09-30T09:14:08.545917Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2d840aa5db653b09eabadbb5b32e255cb3b5951b5c58c7efd89e9826269d08f6, slot: 7441 +2024-09-30T09:14:08.549053Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7441 +2024-09-30T09:14:08.549063Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7441 +2024-09-30T09:14:08.564495Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7424) +2024-09-30T09:14:08.564707Z INFO fork_choice_control::block_processor: Validating block with slot: 7442 +2024-09-30T09:14:08.565785Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc2c61ca63f9e56464d5973a5aba13719dc4fa7048f7a792bfddf8c63a299e20a, slot: 7442 +2024-09-30T09:14:08.568460Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7442 +2024-09-30T09:14:08.568469Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7442 +2024-09-30T09:14:08.584185Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7424) +2024-09-30T09:14:08.584464Z INFO fork_choice_control::block_processor: Validating block with slot: 7443 +2024-09-30T09:14:08.586728Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb6fb79758da8dcc138d72203a652b5ad41e2f03d85d092336aa71188fe6c4c8f, slot: 7443 +2024-09-30T09:14:08.591620Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7443 +2024-09-30T09:14:08.591629Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7443 +2024-09-30T09:14:08.607493Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7424) +2024-09-30T09:14:08.607774Z INFO fork_choice_control::block_processor: Validating block with slot: 7444 +2024-09-30T09:14:08.610812Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5ccb77f61d6aa32637c9bec0ba03d18e088b1ab6e4ccd5b655c4990a62ba7a73, slot: 7444 +2024-09-30T09:14:08.616835Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7444 +2024-09-30T09:14:08.616845Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7444 +2024-09-30T09:14:08.633361Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7424) +2024-09-30T09:14:08.633605Z INFO fork_choice_control::block_processor: Validating block with slot: 7445 +2024-09-30T09:14:08.635106Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xef8939c10f6b396dccd719dbf7116b7641bd10913fb0204714e16bf020e09c58, slot: 7445 +2024-09-30T09:14:08.638567Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7445 +2024-09-30T09:14:08.638576Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7445 +2024-09-30T09:14:08.655729Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7424) +2024-09-30T09:14:08.655965Z INFO fork_choice_control::block_processor: Validating block with slot: 7446 +2024-09-30T09:14:08.656905Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x50412140307903a7cccbe06ccc63c3ac3de26135618f044e91b94243d5c3b195, slot: 7446 +2024-09-30T09:14:08.659468Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7446 +2024-09-30T09:14:08.659484Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7446 +2024-09-30T09:14:08.677283Z INFO fork_choice_control::block_processor: Validating block with slot: 7447 +2024-09-30T09:14:08.678810Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x699e922989c982dfe30f59d7e6d5fb2df4709a1e39d2e28bc0ff697194facd8f, slot: 7447 +2024-09-30T09:14:08.682338Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7447 +2024-09-30T09:14:08.682348Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7447 +2024-09-30T09:14:08.699713Z INFO fork_choice_control::block_processor: Validating block with slot: 7448 +2024-09-30T09:14:08.702129Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7e1c6fc0bfb6a404b6613f5c4333e3cdc45679729f158d2071616d7248be5727, slot: 7448 +2024-09-30T09:14:08.707232Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7448 +2024-09-30T09:14:08.707243Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7448 +2024-09-30T09:14:08.724793Z INFO fork_choice_control::block_processor: Validating block with slot: 7449 +2024-09-30T09:14:08.726189Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa392c98a464146219df987c4c2cc811672ebb65e63a177466927b59b3070a47c, slot: 7449 +2024-09-30T09:14:08.729446Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7449 +2024-09-30T09:14:08.729458Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7449 +2024-09-30T09:14:08.747447Z INFO fork_choice_control::block_processor: Validating block with slot: 7450 +2024-09-30T09:14:08.748388Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xce18e73942b24478d0a349370e7f70430ffbc2cbaf55a039ac830a702c4f4c5a, slot: 7450 +2024-09-30T09:14:08.750970Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7450 +2024-09-30T09:14:08.750980Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7450 +2024-09-30T09:14:08.773035Z INFO fork_choice_control::block_processor: Validating block with slot: 7451 +2024-09-30T09:14:08.774304Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd8b49f1a389eeb6776f126d7448605c91c0d28896dfb009292d0f6b2b4a5c24f, slot: 7451 +2024-09-30T09:14:08.779106Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7451 +2024-09-30T09:14:08.779126Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7451 +2024-09-30T09:14:08.799995Z INFO fork_choice_control::block_processor: Validating block with slot: 7452 +2024-09-30T09:14:08.801335Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x21fce85b3bfb3d80141d28fd09378d8e011d5ae236c18e8cd3fb04c39ff8655c, slot: 7452 +2024-09-30T09:14:08.804481Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7452 +2024-09-30T09:14:08.804490Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7452 +2024-09-30T09:14:08.822977Z INFO fork_choice_control::block_processor: Validating block with slot: 7453 +2024-09-30T09:14:08.824849Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc1de03a5e5d18fc4ab8451b3a01aed27e9eb06cd912a5b23f9bf363e4b6635ba, slot: 7453 +2024-09-30T09:14:08.829185Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7453 +2024-09-30T09:14:08.829206Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7453 +2024-09-30T09:14:08.848292Z INFO fork_choice_control::block_processor: Validating block with slot: 7454 +2024-09-30T09:14:08.849513Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xde88c06d896a91eed8e88bd1bba92fa2fd6cbe536706b53dfac440d8e66b307c, slot: 7454 +2024-09-30T09:14:08.852448Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7454 +2024-09-30T09:14:08.852458Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7454 +2024-09-30T09:14:08.871687Z INFO fork_choice_control::block_processor: Validating block with slot: 7455 +2024-09-30T09:14:08.872639Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5f2aec9c76e4395d4834cf196de72c3ac91d55d83842535b8ae98e3154c77b8f, slot: 7455 +2024-09-30T09:14:08.875115Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7455 +2024-09-30T09:14:08.875124Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7455 +2024-09-30T09:14:08.894372Z INFO fork_choice_control::block_processor: Validating block with slot: 7456 +2024-09-30T09:14:08.895320Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x543773fdf7ceceae44743db5284180c82b161811d6c659ebb06756b31de6166d, slot: 7456 +2024-09-30T09:14:08.946857Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7456 +2024-09-30T09:14:08.946878Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7456 +2024-09-30T09:14:08.959042Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7456) +2024-09-30T09:14:08.959283Z INFO fork_choice_control::block_processor: Validating block with slot: 7457 +2024-09-30T09:14:08.960378Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4462fc4ac4b027bbf507dfe268f07134cdfcc10d8d8a0eb2bda7a9780433eb28, slot: 7457 +2024-09-30T09:14:09.029813Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7457 +2024-09-30T09:14:09.029834Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7457 +2024-09-30T09:14:09.041069Z INFO fork_choice_control::block_processor: Validating block with slot: 7458 +2024-09-30T09:14:09.044852Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9c58d86b31c8972781c1bef52e0f6738e73d7ebade6845f82c796d1346a17540, slot: 7458 +2024-09-30T09:14:09.052166Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7458 +2024-09-30T09:14:09.052178Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7458 +2024-09-30T09:14:09.064540Z INFO fork_choice_control::block_processor: Validating block with slot: 7459 +2024-09-30T09:14:09.065502Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfad25c06c8fc2894b964f693e86a004fa5c0837283a1326d1c1fd929e113c72a, slot: 7459 +2024-09-30T09:14:09.068009Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7459 +2024-09-30T09:14:09.068018Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7459 +2024-09-30T09:14:09.080239Z INFO fork_choice_control::block_processor: Validating block with slot: 7460 +2024-09-30T09:14:09.081191Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbf31d15a730088466c40d8f48130f82d601b482e9cace4e5d969ece5fbf250f7, slot: 7460 +2024-09-30T09:14:09.083694Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7460 +2024-09-30T09:14:09.083703Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7460 +2024-09-30T09:14:09.096123Z INFO fork_choice_control::block_processor: Validating block with slot: 7461 +2024-09-30T09:14:09.097353Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x80d944113928a61fc06df0f8df6d98ed0cada90519761ce882261b88a0bee94b, slot: 7461 +2024-09-30T09:14:09.100374Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7461 +2024-09-30T09:14:09.100384Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7461 +2024-09-30T09:14:09.113190Z INFO fork_choice_control::block_processor: Validating block with slot: 7462 +2024-09-30T09:14:09.114706Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8f38e5cb9c7c73010383d85a28c8c057ea6dfa51cb089a357793d6f9a2738605, slot: 7462 +2024-09-30T09:14:09.118154Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7462 +2024-09-30T09:14:09.118164Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7462 +2024-09-30T09:14:09.130957Z INFO fork_choice_control::block_processor: Validating block with slot: 7463 +2024-09-30T09:14:09.131917Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x997d5e4e71762a04a642ff7dd0d5b242b63578d70e720de0c09dfd54a0998c05, slot: 7463 +2024-09-30T09:14:09.134411Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7463 +2024-09-30T09:14:09.134420Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7463 +2024-09-30T09:14:09.147430Z INFO fork_choice_control::block_processor: Validating block with slot: 7464 +2024-09-30T09:14:09.148782Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x285fa40f074ca3dafbe3695c73c3b6ef67c6599c3e9404562e05188adb851f3f, slot: 7464 +2024-09-30T09:14:09.152056Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7464 +2024-09-30T09:14:09.152066Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7464 +2024-09-30T09:14:09.165588Z INFO fork_choice_control::block_processor: Validating block with slot: 7465 +2024-09-30T09:14:09.166685Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x43b6de990afb3bda395666e16cc76903e58894560aec216ab06d4617109adcae, slot: 7465 +2024-09-30T09:14:09.169404Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7465 +2024-09-30T09:14:09.169413Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7465 +2024-09-30T09:14:09.182789Z INFO fork_choice_control::block_processor: Validating block with slot: 7466 +2024-09-30T09:14:09.183873Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6cc9d5dc8f0ddc07b103d82ed0645c82b9765d719113f54db0dedf07bb489f36, slot: 7466 +2024-09-30T09:14:09.186594Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7466 +2024-09-30T09:14:09.186604Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7466 +2024-09-30T09:14:09.200146Z INFO fork_choice_control::block_processor: Validating block with slot: 7467 +2024-09-30T09:14:09.203028Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x95c557190bfe1164b85f450b98aa0842cd386d4a2584c3626d1e12c665a68c19, slot: 7467 +2024-09-30T09:14:09.209049Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7467 +2024-09-30T09:14:09.209068Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7467 +2024-09-30T09:14:09.223004Z INFO fork_choice_control::block_processor: Validating block with slot: 7468 +2024-09-30T09:14:09.224224Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcde2dba227b160200a6bec5b0ed30b439c94be53af12a41977ce65a46d9cdb14, slot: 7468 +2024-09-30T09:14:09.227368Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7468 +2024-09-30T09:14:09.227389Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7468 +2024-09-30T09:14:09.241289Z INFO fork_choice_control::block_processor: Validating block with slot: 7469 +2024-09-30T09:14:09.242247Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2d15a765bb19e7ead7438b10dcff887c4cfd2818b4cb7c291b8ecc3de668b7a9, slot: 7469 +2024-09-30T09:14:09.244820Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7469 +2024-09-30T09:14:09.244833Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7469 +2024-09-30T09:14:09.258696Z INFO fork_choice_control::block_processor: Validating block with slot: 7470 +2024-09-30T09:14:09.259681Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3b894fe58ae031c7cff9fe2e885a80d277cc82f087b53e66e76ae0af1a65ad05, slot: 7470 +2024-09-30T09:14:09.262267Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7470 +2024-09-30T09:14:09.262279Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7470 +2024-09-30T09:14:09.276786Z INFO fork_choice_control::block_processor: Validating block with slot: 7471 +2024-09-30T09:14:09.278049Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x042fd11d0ffebfee0c358eba691b798c282a96bae1c5b9bae955befde8f4cc42, slot: 7471 +2024-09-30T09:14:09.281010Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7471 +2024-09-30T09:14:09.281019Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7471 +2024-09-30T09:14:09.295561Z INFO fork_choice_control::block_processor: Validating block with slot: 7472 +2024-09-30T09:14:09.296508Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd8e020459e7a8b452dad10da1cd100d32d1e03e0b9bf843d05f4b82fe977430a, slot: 7472 +2024-09-30T09:14:09.298963Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7472 +2024-09-30T09:14:09.298973Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7472 +2024-09-30T09:14:09.313806Z INFO fork_choice_control::block_processor: Validating block with slot: 7473 +2024-09-30T09:14:09.317313Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xac08af17f75f01ce408f3d074565af74bf783d3659f9a5715e5c78e3df7ef410, slot: 7473 +2024-09-30T09:14:09.324389Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7473 +2024-09-30T09:14:09.324400Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7473 +2024-09-30T09:14:09.339489Z INFO fork_choice_control::block_processor: Validating block with slot: 7474 +2024-09-30T09:14:09.340443Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xec23fa364c8d45fda02956983b87deb9f6f5ba0a951a6f613223ee35326b6ba7, slot: 7474 +2024-09-30T09:14:09.343000Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7474 +2024-09-30T09:14:09.343017Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7474 +2024-09-30T09:14:09.358249Z INFO fork_choice_control::block_processor: Validating block with slot: 7475 +2024-09-30T09:14:09.359350Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2d4701ec8dc330f3d46bf42800db6376fc9f4ccc390234f0661b5639bb279ba1, slot: 7475 +2024-09-30T09:14:09.362143Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7475 +2024-09-30T09:14:09.362155Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7475 +2024-09-30T09:14:09.378064Z INFO fork_choice_control::block_processor: Validating block with slot: 7476 +2024-09-30T09:14:09.379678Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4e46735b0715f6ef866e0eeb06e30d24eeda50b6dea617875eb8e1668b1dbe66, slot: 7476 +2024-09-30T09:14:09.383328Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7476 +2024-09-30T09:14:09.383338Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7476 +2024-09-30T09:14:09.399281Z INFO fork_choice_control::block_processor: Validating block with slot: 7477 +2024-09-30T09:14:09.400494Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2eab4a1466aca0356a93d44d04ec0d3e944bc90f2ec14d883cd28b1280660bd3, slot: 7477 +2024-09-30T09:14:09.403423Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7477 +2024-09-30T09:14:09.403432Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7477 +2024-09-30T09:14:09.419725Z INFO fork_choice_control::block_processor: Validating block with slot: 7478 +2024-09-30T09:14:09.420798Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8dbd17754f187da95af3a9f15a662ad7c4423f484e20d9e19e142e48063f03bb, slot: 7478 +2024-09-30T09:14:09.423514Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7478 +2024-09-30T09:14:09.423524Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7478 +2024-09-30T09:14:09.439678Z INFO fork_choice_control::block_processor: Validating block with slot: 7479 +2024-09-30T09:14:09.440621Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x68595b4f7fd76384d881ede11f4732f0bce45ec6d9b8570e520049a9553f26f0, slot: 7479 +2024-09-30T09:14:09.443230Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7479 +2024-09-30T09:14:09.443248Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7479 +2024-09-30T09:14:09.461016Z INFO fork_choice_control::block_processor: Validating block with slot: 7480 +2024-09-30T09:14:09.463032Z INFO fork_choice_control::block_processor: Validating block with slot: 7481 +2024-09-30T09:14:09.464562Z INFO fork_choice_control::block_processor: Validating block with slot: 7482 +2024-09-30T09:14:09.465877Z INFO fork_choice_control::block_processor: Validating block with slot: 7483 +2024-09-30T09:14:09.467925Z INFO fork_choice_control::block_processor: Validating block with slot: 7484 +2024-09-30T09:14:09.469716Z INFO fork_choice_control::block_processor: Validating block with slot: 7485 +2024-09-30T09:14:09.471088Z INFO fork_choice_control::block_processor: Validating block with slot: 7486 +2024-09-30T09:14:09.472208Z INFO fork_choice_control::block_processor: Validating block with slot: 7487 +2024-09-30T09:14:09.473213Z INFO fork_choice_control::block_processor: Validating block with slot: 7488 +2024-09-30T09:14:09.474350Z INFO fork_choice_control::block_processor: Validating block with slot: 7489 +2024-09-30T09:14:09.475374Z INFO fork_choice_control::block_processor: Validating block with slot: 7490 +2024-09-30T09:14:09.477271Z INFO fork_choice_control::block_processor: Validating block with slot: 7491 +2024-09-30T09:14:09.478414Z INFO fork_choice_control::block_processor: Validating block with slot: 7492 +2024-09-30T09:14:09.479522Z INFO fork_choice_control::block_processor: Validating block with slot: 7493 +2024-09-30T09:14:09.480499Z INFO fork_choice_control::block_processor: Validating block with slot: 7494 +2024-09-30T09:14:09.481566Z INFO fork_choice_control::block_processor: Validating block with slot: 7496 +2024-09-30T09:14:09.485006Z INFO fork_choice_control::block_processor: Validating block with slot: 7497 +2024-09-30T09:14:09.485982Z INFO fork_choice_control::block_processor: Validating block with slot: 7498 +2024-09-30T09:14:09.486969Z INFO fork_choice_control::block_processor: Validating block with slot: 7499 +2024-09-30T09:14:09.488498Z INFO fork_choice_control::block_processor: Validating block with slot: 7500 +2024-09-30T09:14:09.489504Z INFO fork_choice_control::block_processor: Validating block with slot: 7501 +2024-09-30T09:14:09.492120Z INFO fork_choice_control::block_processor: Validating block with slot: 7502 +2024-09-30T09:14:09.493380Z INFO fork_choice_control::block_processor: Validating block with slot: 7503 +2024-09-30T09:14:09.494384Z INFO fork_choice_control::block_processor: Validating block with slot: 7505 +2024-09-30T09:14:09.496097Z INFO fork_choice_control::block_processor: Validating block with slot: 7506 +2024-09-30T09:14:09.500759Z INFO database: database: /Users/mercynaps/.grandine/mainnet/beacon/sync with name sync +2024-09-30T09:14:09.506087Z INFO database: database: /Users/mercynaps/.grandine/mainnet/validator with name proposer-configs +2024-09-30T09:14:09.547445Z INFO discv5::service: Discv5 Service started mode=Ip4 +2024-09-30T09:14:09.579252Z INFO libp2p_swarm: local_peer_id=16Uiu2HAm1MjWUF4J3qsovL8Wzccfuzy28tTQ8dmA2sazksHeR3bs +2024-09-30T09:14:09.583675Z INFO fork_choice_control::block_processor: Validating block with slot: 7480 +2024-09-30T09:14:09.585507Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x20b579bc43c6d4ebca0aee31605076763806547afe2c583ecb6d37f9dd42d164, slot: 7480 +2024-09-30T09:14:09.589903Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7480 +2024-09-30T09:14:09.589914Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7480 +2024-09-30T09:14:09.606405Z INFO fork_choice_control::block_processor: Validating block with slot: 7481 +2024-09-30T09:14:09.607942Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa49c92228117488a5d1cf564c3c6c03516dbc5a29098ca27bf7797eb0de0ecaa, slot: 7481 +2024-09-30T09:14:09.611555Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7481 +2024-09-30T09:14:09.611576Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7481 +2024-09-30T09:14:09.628424Z INFO fork_choice_control::block_processor: Validating block with slot: 7482 +2024-09-30T09:14:09.629662Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf7ec572c83b914ae71084a12c8ad65ce10c97f7c91cb2410bd69c79e44bff5c5, slot: 7482 +2024-09-30T09:14:09.632703Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7482 +2024-09-30T09:14:09.632712Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7482 +2024-09-30T09:14:09.649880Z INFO fork_choice_control::block_processor: Validating block with slot: 7483 +2024-09-30T09:14:09.651660Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4a95600d184360e516ff3c68c8994ef01b8dc278996854cdfb5cef665ce038ec, slot: 7483 +2024-09-30T09:14:09.655543Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7483 +2024-09-30T09:14:09.655552Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7483 +2024-09-30T09:14:09.672983Z INFO fork_choice_control::block_processor: Validating block with slot: 7484 +2024-09-30T09:14:09.674787Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x88b1f690321810d647048bd812a9ff5d5907623804776efd1d38dbcdca472879, slot: 7484 +2024-09-30T09:14:09.679072Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7484 +2024-09-30T09:14:09.679089Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7484 +2024-09-30T09:14:09.696890Z INFO fork_choice_control::block_processor: Validating block with slot: 7485 +2024-09-30T09:14:09.698290Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd9913cc95961da1286f79cae30317d2f76b0e49f2e00c38eb50fdb7b7556f251, slot: 7485 +2024-09-30T09:14:09.701619Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7485 +2024-09-30T09:14:09.701629Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7485 +2024-09-30T09:14:09.719829Z INFO fork_choice_control::block_processor: Validating block with slot: 7486 +2024-09-30T09:14:09.720965Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8daceea8861ad509a7237e4c6b6b1b8084eb1251d94923c2503f747c84cdaa75, slot: 7486 +2024-09-30T09:14:09.723723Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7486 +2024-09-30T09:14:09.723733Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7486 +2024-09-30T09:14:09.741662Z INFO fork_choice_control::block_processor: Validating block with slot: 7487 +2024-09-30T09:14:09.742656Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x49de62833bb33886e28d4cee2a0b8be10d4153fe48ac6fde4aa4a468c4da16c4, slot: 7487 +2024-09-30T09:14:09.745311Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7487 +2024-09-30T09:14:09.745324Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7487 +2024-09-30T09:14:09.763487Z INFO fork_choice_control::block_processor: Validating block with slot: 7488 +2024-09-30T09:14:09.764585Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x67cc8e2920d206b95919640aa9c4bd51ec443deb12a93a7658b339f3e3b83774, slot: 7488 +2024-09-30T09:14:09.813799Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7488 +2024-09-30T09:14:09.813822Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7488 +2024-09-30T09:14:09.824864Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 7488) +2024-09-30T09:14:09.824987Z INFO fork_choice_control::block_processor: Validating block with slot: 7489 +2024-09-30T09:14:09.825939Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa5ed2bcf397e6a2b9ef3a9b8fd104bc04cc8fe47d8f10f423186f41384a5fc12, slot: 7489 +2024-09-30T09:14:09.895522Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7489 +2024-09-30T09:14:09.895545Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7489 +2024-09-30T09:14:09.906529Z INFO fork_choice_control::block_processor: Validating block with slot: 7490 +2024-09-30T09:14:09.908304Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc263ec7cca291a82ab941e616a60fdebda4ed6bf879eecd11113df412ed74ff2, slot: 7490 +2024-09-30T09:14:09.912440Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7490 +2024-09-30T09:14:09.912460Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7490 +2024-09-30T09:14:09.923765Z INFO fork_choice_control::block_processor: Validating block with slot: 7491 +2024-09-30T09:14:09.924870Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xacf8172c127009853e625511a683388097e54365197216963fa5ce0c0852b774, slot: 7491 +2024-09-30T09:14:09.927796Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7491 +2024-09-30T09:14:09.927811Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7491 +2024-09-30T09:14:09.939410Z INFO fork_choice_control::block_processor: Validating block with slot: 7492 +2024-09-30T09:14:09.940514Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf5785196b7afe284de53689921687d930e6199386485344e2e9c4a6b67e4019d, slot: 7492 +2024-09-30T09:14:09.943348Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7492 +2024-09-30T09:14:09.943365Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7492 +2024-09-30T09:14:09.954961Z INFO fork_choice_control::block_processor: Validating block with slot: 7493 +2024-09-30T09:14:09.955926Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x121d1c7eedbe596e6212802aebc2d0191d4cc86a99c251e2c4affb00f76f1663, slot: 7493 +2024-09-30T09:14:09.958481Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7493 +2024-09-30T09:14:09.958492Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7493 +2024-09-30T09:14:09.970363Z INFO fork_choice_control::block_processor: Validating block with slot: 7494 +2024-09-30T09:14:09.971330Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf56f89b6d5853cbd06b9f3f5394b6aa81d51e55b8172d8601b9c125275cf5ada, slot: 7494 +2024-09-30T09:14:09.973862Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7494 +2024-09-30T09:14:09.973871Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7494 +2024-09-30T09:14:09.985909Z INFO fork_choice_control::block_processor: Validating block with slot: 7496 +2024-09-30T09:14:09.989402Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x28ae1f900a889989b5d0dabbcb84939591b98116df01aa09ec037ed42bf43934, slot: 7496 +2024-09-30T09:14:10.076642Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7496 +2024-09-30T09:14:10.076659Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7496 +2024-09-30T09:14:10.089225Z INFO fork_choice_control::block_processor: Validating block with slot: 7497 +2024-09-30T09:14:10.090188Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x414495abf3944b416e8f8dc5c5c7a5acf9b99ab6f6e367c1e508e7c99ce83fea, slot: 7497 +2024-09-30T09:14:10.092780Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7497 +2024-09-30T09:14:10.092797Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7497 +2024-09-30T09:14:10.105510Z INFO fork_choice_control::block_processor: Validating block with slot: 7498 +2024-09-30T09:14:10.106477Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9881fd422d36ab9bd2091921102a4a49be240f06eaadc29fb4e2147325c586c3, slot: 7498 +2024-09-30T09:14:10.109021Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7498 +2024-09-30T09:14:10.109034Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7498 +2024-09-30T09:14:10.121907Z INFO fork_choice_control::block_processor: Validating block with slot: 7499 +2024-09-30T09:14:10.123409Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x09c1d10453cf391037def2a4878c0935e070ed307adf228344bd7994bd70fa3d, slot: 7499 +2024-09-30T09:14:10.127014Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7499 +2024-09-30T09:14:10.127036Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7499 +2024-09-30T09:14:10.139922Z INFO fork_choice_control::block_processor: Validating block with slot: 7500 +2024-09-30T09:14:10.140877Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x37a8e3f129ce7da895cd1399c0399a1295d27a96e7a4233fa85dd23723735212, slot: 7500 +2024-09-30T09:14:10.143529Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7500 +2024-09-30T09:14:10.143550Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7500 +2024-09-30T09:14:10.156562Z INFO fork_choice_control::block_processor: Validating block with slot: 7501 +2024-09-30T09:14:10.159268Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2c96d5a14a72d4460d59c15f82102e2219c354d2c6080425c4407b68ba3f8870, slot: 7501 +2024-09-30T09:14:10.164872Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7501 +2024-09-30T09:14:10.164883Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7501 +2024-09-30T09:14:10.178567Z INFO fork_choice_control::block_processor: Validating block with slot: 7502 +2024-09-30T09:14:10.179658Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa2161255df711169943c7f06de2278808a13b0d358deb2482062cc1e0df3b130, slot: 7502 +2024-09-30T09:14:10.182429Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7502 +2024-09-30T09:14:10.182439Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7502 +2024-09-30T09:14:10.196633Z INFO fork_choice_control::block_processor: Validating block with slot: 7503 +2024-09-30T09:14:10.197600Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9e296588bae1a9183c7e88041c3e2e38577806a7da8237cff03b5cdb76bf2c50, slot: 7503 +2024-09-30T09:14:10.200096Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7503 +2024-09-30T09:14:10.200105Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7503 +2024-09-30T09:14:10.214214Z INFO fork_choice_control::block_processor: Validating block with slot: 7505 +2024-09-30T09:14:10.215990Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9e65aaa326c6b1e5d72adaff44e8165dd28c9cfd64ffffc43e51582bec31686e, slot: 7505 +2024-09-30T09:14:10.230648Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7505 +2024-09-30T09:14:10.230670Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7505 +2024-09-30T09:14:10.245227Z INFO fork_choice_control::block_processor: Validating block with slot: 7506 +2024-09-30T09:14:10.246193Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf307739369d583d307237c80c9f76fa69816d7bd2f4f2c9c1cbcab66a800b42d, slot: 7506 +2024-09-30T09:14:10.248710Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 7506 +2024-09-30T09:14:10.248720Z INFO fork_choice_control::block_processor: Block validation completed for slot: 7506 +2024-09-30T09:14:19.625911Z INFO http_api::task: HTTP server listening on 127.0.0.1:5052 +2024-09-30T09:14:24.517540Z WARN discv5::handler: Authentication response already sent. Dropping session. Node: Node: 0x46bc..8e2e, addr: 158.178.236.60:10200 +2024-09-30T09:14:24.518513Z WARN discv5::service: RPC Request failed: id: dd7483a88b07b683, error InvalidRemotePacket +2024-09-30T09:14:24.518780Z WARN discv5::service: RPC Request failed: id: 07ce67853179529c, error InvalidRemotePacket +2024-09-30T09:14:47.449318Z INFO runtime::runtime: saving current chain before exit… +2024-09-30T09:14:47.639483Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 7424 +2024-09-30T09:14:47.802580Z INFO fork_choice_control::mutator: chain saved (finalized blocks: 1, unfinalized blocks: 78) diff --git a/logs/testing.log.2024-10-05 b/logs/testing.log.2024-10-05 new file mode 100644 index 00000000..26d94383 --- /dev/null +++ b/logs/testing.log.2024-10-05 @@ -0,0 +1,338 @@ +2024-10-05T17:48:05.499246Z INFO logging: Tracing initialized successfully. +2024-10-05T17:48:05.499276Z INFO grandine: Grandine firing up... +2024-10-05T17:48:05.501837Z INFO grandine: starting beacon node +2024-10-05T17:48:05.501843Z INFO grandine::grandine_config: network: sepolia +2024-10-05T17:48:05.501857Z INFO grandine::grandine_config: data directory: "/Users/mercynaps/.grandine/sepolia" +2024-10-05T17:48:05.501860Z INFO grandine::grandine_config: Eth2 database upper limit: 256.0 GiB +2024-10-05T17:48:05.501862Z INFO grandine::grandine_config: Eth1 database upper limit: 16.0 GiB +2024-10-05T17:48:05.501926Z INFO grandine::grandine_config: Eth1 RPC URLs: [Url { scheme: "https", cannot_be_a_base: false, username: "", password: None, host: Some(Domain("sepolia.infura.io")), port: None, path: "/v3/ade936980bd740a58b7e654354ed064b", query: None, fragment: None }] +2024-10-05T17:48:05.501954Z INFO grandine::grandine_config: graffiti: [0x4772616e64696e652f302e342e312d6566363166653800000000000000000000] +2024-10-05T17:48:05.501958Z INFO grandine::grandine_config: HTTP API address: 127.0.0.1:5052 +2024-10-05T17:48:05.501959Z INFO grandine::grandine_config: validator API disabled +2024-10-05T17:48:05.501961Z INFO grandine::grandine_config: archival interval: 32 epochs +2024-10-05T17:48:05.501974Z INFO grandine::grandine_config: slasher enabled: false +2024-10-05T17:48:05.501977Z INFO grandine::grandine_config: client version: Grandine/0.4.1-ef61fe8/aarch64-macos +2024-10-05T17:48:05.501979Z INFO grandine::grandine_config: suggested fee recipient: 0xe7cf…1f1b +2024-10-05T17:48:05.501980Z INFO grandine::grandine_config: back sync enabled: false +2024-10-05T17:48:05.510583Z INFO database: database: /Users/mercynaps/.grandine/sepolia/beacon/eth1_cache with name eth1 +2024-10-05T17:48:05.511414Z INFO eth1::eth1_chain: started new Eth1 deposit download task (deposit contract 0x7f02c3e3c98b133055b8b348b2ac625669ed295d) +2024-10-05T17:48:05.511509Z INFO eth1::eth1_chain: started Eth1 deposit download task +2024-10-05T17:48:05.513763Z INFO grandine::predefined_network: loading genesis state from file: /Users/mercynaps/.grandine/sepolia/beacon/genesis_state.ssz… +2024-10-05T17:48:05.527019Z INFO database: database: /Users/mercynaps/.grandine/sepolia/beacon/beacon_fork_choice with name beacon_fork_choice +2024-10-05T17:48:05.531141Z INFO fork_choice_control::storage: loaded state at slot 0 +2024-10-05T17:48:05.543867Z INFO fork_choice_store::state_cache_processor: Creating new StateCacheProcessor with lock timeout of 1.5s +2024-10-05T17:48:05.546283Z INFO database: database: /Users/mercynaps/.grandine/sepolia/beacon/sync with name sync +2024-10-05T17:48:05.548795Z INFO database: database: /Users/mercynaps/.grandine/sepolia/validator with name proposer-configs +2024-10-05T17:48:05.553302Z INFO discv5::service: Discv5 Service started mode=Ip4 +2024-10-05T17:48:05.556048Z INFO libp2p_swarm: local_peer_id=16Uiu2HAm9mbBtFBMS3DyTdeV5SDa4RCkwV2EprVWDJAcM48q8GhX +2024-10-05T17:48:08.601197Z INFO eth1::download_manager: will download Eth1 deposits from block 6550543 to block 6813916 +2024-10-05T17:48:08.601208Z INFO eth1::download_manager: downloading Eth1 deposits from block 6550543 to block 6551542 +2024-10-05T17:48:10.577946Z INFO eth1::download_manager: downloading Eth1 deposits from block 6551543 to block 6552542 +2024-10-05T17:48:10.948182Z INFO eth1::download_manager: downloading Eth1 deposits from block 6552543 to block 6553542 +2024-10-05T17:48:11.311506Z INFO eth1::download_manager: downloading Eth1 deposits from block 6553543 to block 6554542 +2024-10-05T17:48:15.569119Z INFO http_api::task: HTTP server listening on 127.0.0.1:5052 +2024-10-05T17:48:16.896818Z INFO eth1::download_manager: downloading Eth1 deposits from block 6554543 to block 6555542 +2024-10-05T17:48:17.581370Z INFO eth1::download_manager: downloading Eth1 deposits from block 6555543 to block 6556542 +2024-10-05T17:48:17.954677Z INFO eth1::download_manager: downloading Eth1 deposits from block 6556543 to block 6557542 +2024-10-05T17:48:19.114943Z INFO eth1::download_manager: downloading Eth1 deposits from block 6557543 to block 6558542 +2024-10-05T17:48:19.466019Z INFO eth1::download_manager: downloading Eth1 deposits from block 6558543 to block 6559542 +2024-10-05T17:48:20.603349Z INFO eth1::download_manager: downloading Eth1 deposits from block 6559543 to block 6560542 +2024-10-05T17:48:20.969423Z INFO eth1::download_manager: downloading Eth1 deposits from block 6560543 to block 6561542 +2024-10-05T17:48:22.674930Z INFO eth1::download_manager: downloading Eth1 deposits from block 6561543 to block 6562542 +2024-10-05T17:48:23.670186Z INFO eth1::download_manager: downloading Eth1 deposits from block 6562543 to block 6563542 +2024-10-05T17:48:24.025480Z INFO eth1::download_manager: downloading Eth1 deposits from block 6563543 to block 6564542 +2024-10-05T17:48:24.400454Z INFO eth1::download_manager: downloading Eth1 deposits from block 6564543 to block 6565542 +2024-10-05T17:48:26.933524Z INFO eth1::download_manager: downloading Eth1 deposits from block 6565543 to block 6566542 +2024-10-05T17:48:27.836209Z INFO eth1::download_manager: downloading Eth1 deposits from block 6566543 to block 6567542 +2024-10-05T17:48:28.186887Z INFO eth1::download_manager: downloading Eth1 deposits from block 6567543 to block 6568542 +2024-10-05T17:48:28.556833Z INFO eth1::download_manager: downloading Eth1 deposits from block 6568543 to block 6569542 +2024-10-05T17:48:28.982032Z INFO eth1::download_manager: downloading Eth1 deposits from block 6569543 to block 6570542 +2024-10-05T17:48:29.351933Z INFO eth1::download_manager: downloading Eth1 deposits from block 6570543 to block 6571542 +2024-10-05T17:48:29.711532Z INFO eth1::download_manager: downloading Eth1 deposits from block 6571543 to block 6572542 +2024-10-05T17:48:30.075903Z INFO eth1::download_manager: downloading Eth1 deposits from block 6572543 to block 6573542 +2024-10-05T17:48:30.620024Z INFO eth1::download_manager: downloading Eth1 deposits from block 6573543 to block 6574542 +2024-10-05T17:48:30.996099Z INFO eth1::download_manager: downloading Eth1 deposits from block 6574543 to block 6575542 +2024-10-05T17:48:31.874814Z INFO eth1::download_manager: downloading Eth1 deposits from block 6575543 to block 6576542 +2024-10-05T17:48:32.759885Z INFO eth1::download_manager: downloading Eth1 deposits from block 6576543 to block 6577542 +2024-10-05T17:48:33.115918Z INFO eth1::download_manager: downloading Eth1 deposits from block 6577543 to block 6578542 +2024-10-05T17:48:33.936909Z INFO eth1::download_manager: downloading Eth1 deposits from block 6578543 to block 6579542 +2024-10-05T17:48:34.311075Z INFO eth1::download_manager: downloading Eth1 deposits from block 6579543 to block 6580542 +2024-10-05T17:48:35.636662Z INFO eth1::download_manager: downloading Eth1 deposits from block 6580543 to block 6581542 +2024-10-05T17:48:35.991834Z INFO eth1::download_manager: downloading Eth1 deposits from block 6581543 to block 6582542 +2024-10-05T17:48:36.836326Z INFO eth1::download_manager: downloading Eth1 deposits from block 6582543 to block 6583542 +2024-10-05T17:48:37.190827Z INFO eth1::download_manager: downloading Eth1 deposits from block 6583543 to block 6584542 +2024-10-05T17:48:37.552268Z INFO eth1::download_manager: downloading Eth1 deposits from block 6584543 to block 6585542 +2024-10-05T17:48:37.916166Z INFO eth1::download_manager: downloading Eth1 deposits from block 6585543 to block 6586542 +2024-10-05T17:48:38.755595Z INFO eth1::download_manager: downloading Eth1 deposits from block 6586543 to block 6587542 +2024-10-05T17:48:39.116266Z INFO eth1::download_manager: downloading Eth1 deposits from block 6587543 to block 6588542 +2024-10-05T17:48:39.476147Z INFO eth1::download_manager: downloading Eth1 deposits from block 6588543 to block 6589542 +2024-10-05T17:48:39.835988Z INFO eth1::download_manager: downloading Eth1 deposits from block 6589543 to block 6590542 +2024-10-05T17:48:40.195632Z INFO eth1::download_manager: downloading Eth1 deposits from block 6590543 to block 6591542 +2024-10-05T17:48:40.657378Z INFO eth1::download_manager: downloading Eth1 deposits from block 6591543 to block 6592542 +2024-10-05T17:48:41.005178Z INFO eth1::download_manager: downloading Eth1 deposits from block 6592543 to block 6593542 +2024-10-05T17:48:41.836170Z INFO eth1::download_manager: downloading Eth1 deposits from block 6593543 to block 6594542 +2024-10-05T17:48:42.471978Z INFO eth1::download_manager: downloading Eth1 deposits from block 6594543 to block 6595542 +2024-10-05T17:48:43.315705Z INFO eth1::download_manager: downloading Eth1 deposits from block 6595543 to block 6596542 +2024-10-05T17:48:44.151640Z INFO eth1::download_manager: downloading Eth1 deposits from block 6596543 to block 6597542 +2024-10-05T17:48:44.516165Z INFO eth1::download_manager: downloading Eth1 deposits from block 6597543 to block 6598542 +2024-10-05T17:48:45.365948Z INFO eth1::download_manager: downloading Eth1 deposits from block 6598543 to block 6599542 +2024-10-05T17:48:45.775188Z INFO eth1::download_manager: downloading Eth1 deposits from block 6599543 to block 6600542 +2024-10-05T17:48:46.137360Z INFO eth1::download_manager: downloading Eth1 deposits from block 6600543 to block 6601542 +2024-10-05T17:48:48.275830Z INFO eth1::download_manager: downloading Eth1 deposits from block 6601543 to block 6602542 +2024-10-05T17:48:48.639431Z INFO eth1::download_manager: downloading Eth1 deposits from block 6602543 to block 6603542 +2024-10-05T17:48:48.996163Z INFO eth1::download_manager: downloading Eth1 deposits from block 6603543 to block 6604542 +2024-10-05T17:48:49.777697Z INFO eth1::download_manager: downloading Eth1 deposits from block 6604543 to block 6605542 +2024-10-05T17:48:50.602811Z INFO eth1::download_manager: downloading Eth1 deposits from block 6605543 to block 6606542 +2024-10-05T17:48:51.430832Z INFO eth1::download_manager: downloading Eth1 deposits from block 6606543 to block 6607542 +2024-10-05T17:48:51.796239Z INFO eth1::download_manager: downloading Eth1 deposits from block 6607543 to block 6608542 +2024-10-05T17:48:52.155611Z INFO eth1::download_manager: downloading Eth1 deposits from block 6608543 to block 6609542 +2024-10-05T17:48:52.509015Z INFO eth1::download_manager: downloading Eth1 deposits from block 6609543 to block 6610542 +2024-10-05T17:48:52.867059Z INFO eth1::download_manager: downloading Eth1 deposits from block 6610543 to block 6611542 +2024-10-05T17:48:53.711816Z INFO eth1::download_manager: downloading Eth1 deposits from block 6611543 to block 6612542 +2024-10-05T17:48:54.075754Z INFO eth1::download_manager: downloading Eth1 deposits from block 6612543 to block 6613542 +2024-10-05T17:48:54.435585Z INFO eth1::download_manager: downloading Eth1 deposits from block 6613543 to block 6614542 +2024-10-05T17:48:54.795358Z INFO eth1::download_manager: downloading Eth1 deposits from block 6614543 to block 6615542 +2024-10-05T17:48:55.156176Z INFO eth1::download_manager: downloading Eth1 deposits from block 6615543 to block 6616542 +2024-10-05T17:48:55.957975Z INFO eth1::download_manager: downloading Eth1 deposits from block 6616543 to block 6617542 +2024-10-05T17:48:56.315571Z INFO eth1::download_manager: downloading Eth1 deposits from block 6617543 to block 6618542 +2024-10-05T17:48:56.670605Z INFO eth1::download_manager: downloading Eth1 deposits from block 6618543 to block 6619542 +2024-10-05T17:48:57.141626Z INFO eth1::download_manager: downloading Eth1 deposits from block 6619543 to block 6620542 +2024-10-05T17:48:57.515651Z INFO eth1::download_manager: downloading Eth1 deposits from block 6620543 to block 6621542 +2024-10-05T17:48:58.355599Z INFO eth1::download_manager: downloading Eth1 deposits from block 6621543 to block 6622542 +2024-10-05T17:48:58.724229Z INFO eth1::download_manager: downloading Eth1 deposits from block 6622543 to block 6623542 +2024-10-05T17:48:59.099850Z INFO eth1::download_manager: downloading Eth1 deposits from block 6623543 to block 6624542 +2024-10-05T17:48:59.471395Z INFO eth1::download_manager: downloading Eth1 deposits from block 6624543 to block 6625542 +2024-10-05T17:49:00.277145Z INFO eth1::download_manager: downloading Eth1 deposits from block 6625543 to block 6626542 +2024-10-05T17:49:00.635725Z INFO eth1::download_manager: downloading Eth1 deposits from block 6626543 to block 6627542 +2024-10-05T17:49:00.995200Z INFO eth1::download_manager: downloading Eth1 deposits from block 6627543 to block 6628542 +2024-10-05T17:49:01.440891Z INFO eth1::download_manager: downloading Eth1 deposits from block 6628543 to block 6629542 +2024-10-05T17:49:01.834552Z INFO eth1::download_manager: downloading Eth1 deposits from block 6629543 to block 6630542 +2024-10-05T17:49:02.675591Z INFO eth1::download_manager: downloading Eth1 deposits from block 6630543 to block 6631542 +2024-10-05T17:49:03.035415Z INFO eth1::download_manager: downloading Eth1 deposits from block 6631543 to block 6632542 +2024-10-05T17:49:03.581361Z INFO eth1::download_manager: downloading Eth1 deposits from block 6632543 to block 6633542 +2024-10-05T17:49:03.955048Z INFO eth1::download_manager: downloading Eth1 deposits from block 6633543 to block 6634542 +2024-10-05T17:49:04.315252Z INFO eth1::download_manager: downloading Eth1 deposits from block 6634543 to block 6635542 +2024-10-05T17:49:04.674967Z INFO eth1::download_manager: downloading Eth1 deposits from block 6635543 to block 6636542 +2024-10-05T17:49:05.035512Z INFO eth1::download_manager: downloading Eth1 deposits from block 6636543 to block 6637542 +2024-10-05T17:49:05.395468Z INFO eth1::download_manager: downloading Eth1 deposits from block 6637543 to block 6638542 +2024-10-05T17:49:05.736304Z INFO eth1::download_manager: downloading Eth1 deposits from block 6638543 to block 6639542 +2024-10-05T17:49:06.115637Z INFO eth1::download_manager: downloading Eth1 deposits from block 6639543 to block 6640542 +2024-10-05T17:49:06.474472Z INFO eth1::download_manager: downloading Eth1 deposits from block 6640543 to block 6641542 +2024-10-05T17:49:06.831414Z INFO eth1::download_manager: downloading Eth1 deposits from block 6641543 to block 6642542 +2024-10-05T17:49:07.644022Z INFO eth1::download_manager: downloading Eth1 deposits from block 6642543 to block 6643542 +2024-10-05T17:49:08.003980Z INFO eth1::download_manager: downloading Eth1 deposits from block 6643543 to block 6644542 +2024-10-05T17:49:09.315312Z INFO eth1::download_manager: downloading Eth1 deposits from block 6644543 to block 6645542 +2024-10-05T17:49:10.463100Z INFO eth1::download_manager: downloading Eth1 deposits from block 6645543 to block 6646542 +2024-10-05T17:49:12.153127Z INFO eth1::download_manager: downloading Eth1 deposits from block 6646543 to block 6647542 +2024-10-05T17:49:12.499883Z INFO eth1::download_manager: downloading Eth1 deposits from block 6647543 to block 6648542 +2024-10-05T17:49:14.068726Z INFO eth1::download_manager: downloading Eth1 deposits from block 6648543 to block 6649542 +2024-10-05T17:49:14.545251Z INFO eth1::download_manager: downloading Eth1 deposits from block 6649543 to block 6650542 +2024-10-05T17:49:14.915385Z INFO eth1::download_manager: downloading Eth1 deposits from block 6650543 to block 6651542 +2024-10-05T17:49:15.265587Z INFO eth1::download_manager: downloading Eth1 deposits from block 6651543 to block 6652542 +2024-10-05T17:49:15.635243Z INFO eth1::download_manager: downloading Eth1 deposits from block 6652543 to block 6653542 +2024-10-05T17:49:16.550575Z INFO eth1::download_manager: downloading Eth1 deposits from block 6653543 to block 6654542 +2024-10-05T17:49:17.010108Z INFO eth1::download_manager: downloading Eth1 deposits from block 6654543 to block 6655542 +2024-10-05T17:49:17.394785Z INFO eth1::download_manager: downloading Eth1 deposits from block 6655543 to block 6656542 +2024-10-05T17:49:17.755108Z INFO eth1::download_manager: downloading Eth1 deposits from block 6656543 to block 6657542 +2024-10-05T17:49:18.154822Z INFO eth1::download_manager: downloading Eth1 deposits from block 6657543 to block 6658542 +2024-10-05T17:49:18.514804Z INFO eth1::download_manager: downloading Eth1 deposits from block 6658543 to block 6659542 +2024-10-05T17:49:18.875142Z INFO eth1::download_manager: downloading Eth1 deposits from block 6659543 to block 6660542 +2024-10-05T17:49:19.770650Z INFO eth1::download_manager: downloading Eth1 deposits from block 6660543 to block 6661542 +2024-10-05T17:49:20.693558Z INFO eth1::download_manager: downloading Eth1 deposits from block 6661543 to block 6662542 +2024-10-05T17:49:21.075042Z INFO eth1::download_manager: downloading Eth1 deposits from block 6662543 to block 6663542 +2024-10-05T17:49:21.510908Z INFO eth1::download_manager: downloading Eth1 deposits from block 6663543 to block 6664542 +2024-10-05T17:49:21.872093Z INFO eth1::download_manager: downloading Eth1 deposits from block 6664543 to block 6665542 +2024-10-05T17:49:22.337637Z INFO eth1::download_manager: downloading Eth1 deposits from block 6665543 to block 6666542 +2024-10-05T17:49:23.152460Z INFO eth1::download_manager: downloading Eth1 deposits from block 6666543 to block 6667542 +2024-10-05T17:49:23.506067Z INFO eth1::download_manager: downloading Eth1 deposits from block 6667543 to block 6668542 +2024-10-05T17:49:23.874783Z INFO eth1::download_manager: downloading Eth1 deposits from block 6668543 to block 6669542 +2024-10-05T17:49:24.234566Z INFO eth1::download_manager: downloading Eth1 deposits from block 6669543 to block 6670542 +2024-10-05T17:49:24.594855Z INFO eth1::download_manager: downloading Eth1 deposits from block 6670543 to block 6671542 +2024-10-05T17:49:27.315085Z INFO eth1::download_manager: downloading Eth1 deposits from block 6671543 to block 6672542 +2024-10-05T17:49:28.875038Z INFO eth1::download_manager: downloading Eth1 deposits from block 6672543 to block 6673542 +2024-10-05T17:49:29.710594Z INFO eth1::download_manager: downloading Eth1 deposits from block 6673543 to block 6674542 +2024-10-05T17:49:30.070387Z INFO eth1::download_manager: downloading Eth1 deposits from block 6674543 to block 6675542 +2024-10-05T17:49:30.434292Z INFO eth1::download_manager: downloading Eth1 deposits from block 6675543 to block 6676542 +2024-10-05T17:49:30.831368Z INFO eth1::download_manager: downloading Eth1 deposits from block 6676543 to block 6677542 +2024-10-05T17:49:31.239223Z INFO eth1::download_manager: downloading Eth1 deposits from block 6677543 to block 6678542 +2024-10-05T17:49:32.515163Z INFO eth1::download_manager: downloading Eth1 deposits from block 6678543 to block 6679542 +2024-10-05T17:49:32.876057Z INFO eth1::download_manager: downloading Eth1 deposits from block 6679543 to block 6680542 +2024-10-05T17:49:33.234563Z INFO eth1::download_manager: downloading Eth1 deposits from block 6680543 to block 6681542 +2024-10-05T17:49:33.602014Z INFO eth1::download_manager: downloading Eth1 deposits from block 6681543 to block 6682542 +2024-10-05T17:49:33.936175Z INFO eth1::download_manager: downloading Eth1 deposits from block 6682543 to block 6683542 +2024-10-05T17:49:34.283435Z INFO eth1::download_manager: downloading Eth1 deposits from block 6683543 to block 6684542 +2024-10-05T17:49:35.114463Z INFO eth1::download_manager: downloading Eth1 deposits from block 6684543 to block 6685542 +2024-10-05T17:49:35.474198Z INFO eth1::download_manager: downloading Eth1 deposits from block 6685543 to block 6686542 +2024-10-05T17:49:35.834368Z INFO eth1::download_manager: downloading Eth1 deposits from block 6686543 to block 6687542 +2024-10-05T17:49:36.233965Z INFO eth1::download_manager: downloading Eth1 deposits from block 6687543 to block 6688542 +2024-10-05T17:49:36.597077Z INFO eth1::download_manager: downloading Eth1 deposits from block 6688543 to block 6689542 +2024-10-05T17:49:36.962343Z INFO eth1::download_manager: downloading Eth1 deposits from block 6689543 to block 6690542 +2024-10-05T17:49:37.794138Z INFO eth1::download_manager: downloading Eth1 deposits from block 6690543 to block 6691542 +2024-10-05T17:49:38.154726Z INFO eth1::download_manager: downloading Eth1 deposits from block 6691543 to block 6692542 +2024-10-05T17:49:38.514283Z INFO eth1::download_manager: downloading Eth1 deposits from block 6692543 to block 6693542 +2024-10-05T17:49:38.918999Z INFO eth1::download_manager: downloading Eth1 deposits from block 6693543 to block 6694542 +2024-10-05T17:49:39.313962Z INFO eth1::download_manager: downloading Eth1 deposits from block 6694543 to block 6695542 +2024-10-05T17:49:39.674582Z INFO eth1::download_manager: downloading Eth1 deposits from block 6695543 to block 6696542 +2024-10-05T17:49:40.033572Z INFO eth1::download_manager: downloading Eth1 deposits from block 6696543 to block 6697542 +2024-10-05T17:49:40.394305Z INFO eth1::download_manager: downloading Eth1 deposits from block 6697543 to block 6698542 +2024-10-05T17:49:40.762097Z INFO eth1::download_manager: downloading Eth1 deposits from block 6698543 to block 6699542 +2024-10-05T17:49:41.615140Z INFO eth1::download_manager: downloading Eth1 deposits from block 6699543 to block 6700542 +2024-10-05T17:49:42.433484Z INFO eth1::download_manager: downloading Eth1 deposits from block 6700543 to block 6701542 +2024-10-05T17:49:42.802046Z INFO eth1::download_manager: downloading Eth1 deposits from block 6701543 to block 6702542 +2024-10-05T17:49:43.195334Z INFO eth1::download_manager: downloading Eth1 deposits from block 6702543 to block 6703542 +2024-10-05T17:49:43.543344Z INFO eth1::download_manager: downloading Eth1 deposits from block 6703543 to block 6704542 +2024-10-05T17:49:43.913831Z INFO eth1::download_manager: downloading Eth1 deposits from block 6704543 to block 6705542 +2024-10-05T17:49:44.259793Z INFO eth1::download_manager: downloading Eth1 deposits from block 6705543 to block 6706542 +2024-10-05T17:49:44.606971Z INFO eth1::download_manager: downloading Eth1 deposits from block 6706543 to block 6707542 +2024-10-05T17:49:44.994148Z INFO eth1::download_manager: downloading Eth1 deposits from block 6707543 to block 6708542 +2024-10-05T17:49:45.362658Z INFO eth1::download_manager: downloading Eth1 deposits from block 6708543 to block 6709542 +2024-10-05T17:49:45.725237Z INFO eth1::download_manager: downloading Eth1 deposits from block 6709543 to block 6710542 +2024-10-05T17:49:46.114030Z INFO eth1::download_manager: downloading Eth1 deposits from block 6710543 to block 6711542 +2024-10-05T17:49:46.495466Z INFO eth1::download_manager: downloading Eth1 deposits from block 6711543 to block 6712542 +2024-10-05T17:49:46.874061Z INFO eth1::download_manager: downloading Eth1 deposits from block 6712543 to block 6713542 +2024-10-05T17:49:47.233522Z INFO eth1::download_manager: downloading Eth1 deposits from block 6713543 to block 6714542 +2024-10-05T17:49:48.494411Z INFO eth1::download_manager: downloading Eth1 deposits from block 6714543 to block 6715542 +2024-10-05T17:49:48.874009Z INFO eth1::download_manager: downloading Eth1 deposits from block 6715543 to block 6716542 +2024-10-05T17:49:49.233899Z INFO eth1::download_manager: downloading Eth1 deposits from block 6716543 to block 6717542 +2024-10-05T17:49:49.593718Z INFO eth1::download_manager: downloading Eth1 deposits from block 6717543 to block 6718542 +2024-10-05T17:49:49.953150Z INFO eth1::download_manager: downloading Eth1 deposits from block 6718543 to block 6719542 +2024-10-05T17:49:50.313451Z INFO eth1::download_manager: downloading Eth1 deposits from block 6719543 to block 6720542 +2024-10-05T17:49:50.803055Z INFO eth1::download_manager: downloading Eth1 deposits from block 6720543 to block 6721542 +2024-10-05T17:49:51.193378Z INFO eth1::download_manager: downloading Eth1 deposits from block 6721543 to block 6722542 +2024-10-05T17:49:51.553951Z INFO eth1::download_manager: downloading Eth1 deposits from block 6722543 to block 6723542 +2024-10-05T17:49:52.393710Z INFO eth1::download_manager: downloading Eth1 deposits from block 6723543 to block 6724542 +2024-10-05T17:49:52.746077Z INFO eth1::download_manager: downloading Eth1 deposits from block 6724543 to block 6725542 +2024-10-05T17:49:53.113633Z INFO eth1::download_manager: downloading Eth1 deposits from block 6725543 to block 6726542 +2024-10-05T17:49:53.470648Z INFO eth1::download_manager: downloading Eth1 deposits from block 6726543 to block 6727542 +2024-10-05T17:49:53.833167Z INFO eth1::download_manager: downloading Eth1 deposits from block 6727543 to block 6728542 +2024-10-05T17:49:54.175163Z INFO eth1::download_manager: downloading Eth1 deposits from block 6728543 to block 6729542 +2024-10-05T17:49:54.524127Z INFO eth1::download_manager: downloading Eth1 deposits from block 6729543 to block 6730542 +2024-10-05T17:49:54.883408Z INFO eth1::download_manager: downloading Eth1 deposits from block 6730543 to block 6731542 +2024-10-05T17:49:55.242892Z INFO eth1::download_manager: downloading Eth1 deposits from block 6731543 to block 6732542 +2024-10-05T17:49:56.064894Z INFO eth1::download_manager: downloading Eth1 deposits from block 6732543 to block 6733542 +2024-10-05T17:49:56.428485Z INFO eth1::download_manager: downloading Eth1 deposits from block 6733543 to block 6734542 +2024-10-05T17:49:56.793543Z INFO eth1::download_manager: downloading Eth1 deposits from block 6734543 to block 6735542 +2024-10-05T17:49:57.593615Z INFO eth1::download_manager: downloading Eth1 deposits from block 6735543 to block 6736542 +2024-10-05T17:49:57.953876Z INFO eth1::download_manager: downloading Eth1 deposits from block 6736543 to block 6737542 +2024-10-05T17:49:58.313489Z INFO eth1::download_manager: downloading Eth1 deposits from block 6737543 to block 6738542 +2024-10-05T17:49:59.398233Z INFO eth1::download_manager: downloading Eth1 deposits from block 6738543 to block 6739542 +2024-10-05T17:49:59.763192Z INFO eth1::download_manager: downloading Eth1 deposits from block 6739543 to block 6740542 +2024-10-05T17:50:00.152918Z INFO eth1::download_manager: downloading Eth1 deposits from block 6740543 to block 6741542 +2024-10-05T17:50:01.138014Z INFO eth1::download_manager: downloading Eth1 deposits from block 6741543 to block 6742542 +2024-10-05T17:50:01.503540Z INFO eth1::download_manager: downloading Eth1 deposits from block 6742543 to block 6743542 +2024-10-05T17:50:01.873707Z INFO eth1::download_manager: downloading Eth1 deposits from block 6743543 to block 6744542 +2024-10-05T17:50:02.232861Z INFO eth1::download_manager: downloading Eth1 deposits from block 6744543 to block 6745542 +2024-10-05T17:50:02.576369Z INFO eth1::download_manager: downloading Eth1 deposits from block 6745543 to block 6746542 +2024-10-05T17:50:03.494194Z INFO eth1::download_manager: downloading Eth1 deposits from block 6746543 to block 6747542 +2024-10-05T17:50:03.835314Z INFO eth1::download_manager: downloading Eth1 deposits from block 6747543 to block 6748542 +2024-10-05T17:50:04.192916Z INFO eth1::download_manager: downloading Eth1 deposits from block 6748543 to block 6749542 +2024-10-05T17:50:04.544596Z INFO eth1::download_manager: downloading Eth1 deposits from block 6749543 to block 6750542 +2024-10-05T17:50:05.393128Z INFO eth1::download_manager: downloading Eth1 deposits from block 6750543 to block 6751542 +2024-10-05T17:50:05.753010Z INFO eth1::download_manager: downloading Eth1 deposits from block 6751543 to block 6752542 +2024-10-05T17:50:06.152101Z INFO eth1::download_manager: downloading Eth1 deposits from block 6752543 to block 6753542 +2024-10-05T17:50:06.988725Z INFO eth1::download_manager: downloading Eth1 deposits from block 6753543 to block 6754542 +2024-10-05T17:50:07.353310Z INFO eth1::download_manager: downloading Eth1 deposits from block 6754543 to block 6755542 +2024-10-05T17:50:07.707901Z INFO eth1::download_manager: downloading Eth1 deposits from block 6755543 to block 6756542 +2024-10-05T17:50:08.073082Z INFO eth1::download_manager: downloading Eth1 deposits from block 6756543 to block 6757542 +2024-10-05T17:50:08.433761Z INFO eth1::download_manager: downloading Eth1 deposits from block 6757543 to block 6758542 +2024-10-05T17:50:08.793350Z INFO eth1::download_manager: downloading Eth1 deposits from block 6758543 to block 6759542 +2024-10-05T17:50:09.152883Z INFO eth1::download_manager: downloading Eth1 deposits from block 6759543 to block 6760542 +2024-10-05T17:50:09.512631Z INFO eth1::download_manager: downloading Eth1 deposits from block 6760543 to block 6761542 +2024-10-05T17:50:10.352774Z INFO eth1::download_manager: downloading Eth1 deposits from block 6761543 to block 6762542 +2024-10-05T17:50:10.712981Z INFO eth1::download_manager: downloading Eth1 deposits from block 6762543 to block 6763542 +2024-10-05T17:50:11.073034Z INFO eth1::download_manager: downloading Eth1 deposits from block 6763543 to block 6764542 +2024-10-05T17:50:11.993276Z INFO eth1::download_manager: downloading Eth1 deposits from block 6764543 to block 6765542 +2024-10-05T17:50:12.342131Z INFO eth1::download_manager: downloading Eth1 deposits from block 6765543 to block 6766542 +2024-10-05T17:50:12.735184Z INFO eth1::download_manager: downloading Eth1 deposits from block 6766543 to block 6767542 +2024-10-05T17:50:13.113094Z INFO eth1::download_manager: downloading Eth1 deposits from block 6767543 to block 6768542 +2024-10-05T17:50:13.840486Z INFO eth1::download_manager: downloading Eth1 deposits from block 6768543 to block 6769542 +2024-10-05T17:50:15.158107Z INFO eth1::download_manager: downloading Eth1 deposits from block 6769543 to block 6770542 +2024-10-05T17:50:15.511818Z INFO eth1::download_manager: downloading Eth1 deposits from block 6770543 to block 6771542 +2024-10-05T17:50:15.872405Z INFO eth1::download_manager: downloading Eth1 deposits from block 6771543 to block 6772542 +2024-10-05T17:50:16.232426Z INFO eth1::download_manager: downloading Eth1 deposits from block 6772543 to block 6773542 +2024-10-05T17:50:16.790895Z INFO eth1::download_manager: downloading Eth1 deposits from block 6773543 to block 6774542 +2024-10-05T17:50:17.192362Z INFO eth1::download_manager: downloading Eth1 deposits from block 6774543 to block 6775542 +2024-10-05T17:50:18.375505Z INFO eth1::download_manager: downloading Eth1 deposits from block 6775543 to block 6776542 +2024-10-05T17:50:18.748778Z INFO eth1::download_manager: downloading Eth1 deposits from block 6776543 to block 6777542 +2024-10-05T17:50:19.094878Z INFO eth1::download_manager: downloading Eth1 deposits from block 6777543 to block 6778542 +2024-10-05T17:50:19.472837Z INFO eth1::download_manager: downloading Eth1 deposits from block 6778543 to block 6779542 +2024-10-05T17:50:19.828552Z INFO eth1::download_manager: downloading Eth1 deposits from block 6779543 to block 6780542 +2024-10-05T17:50:20.183630Z INFO eth1::download_manager: downloading Eth1 deposits from block 6780543 to block 6781542 +2024-10-05T17:50:21.763279Z INFO eth1::download_manager: downloading Eth1 deposits from block 6781543 to block 6782542 +2024-10-05T17:50:22.123471Z INFO eth1::download_manager: downloading Eth1 deposits from block 6782543 to block 6783542 +2024-10-05T17:50:23.032203Z INFO eth1::download_manager: downloading Eth1 deposits from block 6783543 to block 6784542 +2024-10-05T17:50:23.392279Z INFO eth1::download_manager: downloading Eth1 deposits from block 6784543 to block 6785542 +2024-10-05T17:50:23.768372Z INFO eth1::download_manager: downloading Eth1 deposits from block 6785543 to block 6786542 +2024-10-05T17:50:24.632058Z INFO eth1::download_manager: downloading Eth1 deposits from block 6786543 to block 6787542 +2024-10-05T17:50:24.995157Z INFO eth1::download_manager: downloading Eth1 deposits from block 6787543 to block 6788542 +2024-10-05T17:50:25.352581Z INFO eth1::download_manager: downloading Eth1 deposits from block 6788543 to block 6789542 +2024-10-05T17:50:25.712106Z INFO eth1::download_manager: downloading Eth1 deposits from block 6789543 to block 6790542 +2024-10-05T17:50:26.993291Z INFO eth1::download_manager: downloading Eth1 deposits from block 6790543 to block 6791542 +2024-10-05T17:50:27.352128Z INFO eth1::download_manager: downloading Eth1 deposits from block 6791543 to block 6792542 +2024-10-05T17:50:28.192536Z INFO eth1::download_manager: downloading Eth1 deposits from block 6792543 to block 6793542 +2024-10-05T17:50:28.552163Z INFO eth1::download_manager: downloading Eth1 deposits from block 6793543 to block 6794542 +2024-10-05T17:50:28.990940Z INFO eth1::download_manager: downloading Eth1 deposits from block 6794543 to block 6795542 +2024-10-05T17:50:29.352935Z INFO eth1::download_manager: downloading Eth1 deposits from block 6795543 to block 6796542 +2024-10-05T17:50:29.712540Z INFO eth1::download_manager: downloading Eth1 deposits from block 6796543 to block 6797542 +2024-10-05T17:50:30.526959Z INFO eth1::download_manager: downloading Eth1 deposits from block 6797543 to block 6798542 +2024-10-05T17:50:31.447230Z INFO eth1::download_manager: downloading Eth1 deposits from block 6798543 to block 6799542 +2024-10-05T17:50:31.859274Z INFO eth1::download_manager: downloading Eth1 deposits from block 6799543 to block 6800542 +2024-10-05T17:50:34.111372Z INFO eth1::download_manager: downloading Eth1 deposits from block 6800543 to block 6801542 +2024-10-05T17:50:36.679074Z INFO runtime::runtime: saving current chain before exit… +2024-10-05T17:50:36.690661Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 0 +2024-10-05T17:50:36.693445Z INFO fork_choice_control::storage: saving state in slot 0 +2024-10-05T17:50:36.697147Z INFO fork_choice_control::mutator: chain saved (finalized blocks: 1, unfinalized blocks: 0) +2024-10-05T17:55:02.931502Z INFO logging: Tracing initialized successfully. +2024-10-05T17:55:02.931557Z INFO grandine: Grandine firing up... +2024-10-05T17:55:02.948736Z INFO grandine: starting beacon node +2024-10-05T17:55:02.948748Z INFO grandine::grandine_config: network: sepolia +2024-10-05T17:55:02.948920Z INFO grandine::grandine_config: data directory: "/Users/mercynaps/.grandine/sepolia" +2024-10-05T17:55:02.948928Z INFO grandine::grandine_config: Eth2 database upper limit: 256.0 GiB +2024-10-05T17:55:02.948930Z INFO grandine::grandine_config: Eth1 database upper limit: 16.0 GiB +2024-10-05T17:55:02.949447Z INFO grandine::grandine_config: Eth1 RPC URLs: [Url { scheme: "https", cannot_be_a_base: false, username: "", password: None, host: Some(Domain("sepolia.infura.io")), port: None, path: "/v3/ade936980bd740a58b7e654354ed064b", query: None, fragment: None }] +2024-10-05T17:55:02.949613Z INFO grandine::grandine_config: graffiti: [0x4772616e64696e652f302e342e312d6566363166653800000000000000000000] +2024-10-05T17:55:02.949622Z INFO grandine::grandine_config: HTTP API address: 127.0.0.1:5052 +2024-10-05T17:55:02.949627Z INFO grandine::grandine_config: validator API disabled +2024-10-05T17:55:02.949629Z INFO grandine::grandine_config: archival interval: 32 epochs +2024-10-05T17:55:02.949734Z INFO grandine::grandine_config: slasher enabled: false +2024-10-05T17:55:02.949742Z INFO grandine::grandine_config: client version: Grandine/0.4.1-ef61fe8/aarch64-macos +2024-10-05T17:55:02.949746Z INFO grandine::grandine_config: suggested fee recipient: 0xe7cf…1f1b +2024-10-05T17:55:02.949748Z INFO grandine::grandine_config: back sync enabled: false +2024-10-05T17:55:02.966575Z INFO database: database: /Users/mercynaps/.grandine/sepolia/beacon/eth1_cache with name eth1 +2024-10-05T17:55:02.968879Z INFO eth1::eth1_chain: started new Eth1 deposit download task (deposit contract 0x7f02c3e3c98b133055b8b348b2ac625669ed295d) +2024-10-05T17:55:02.968924Z INFO eth1::eth1_chain: started Eth1 deposit download task +2024-10-05T17:55:02.970871Z INFO grandine::predefined_network: loading genesis state from file: /Users/mercynaps/.grandine/sepolia/beacon/genesis_state.ssz… +2024-10-05T17:55:02.986854Z INFO database: database: /Users/mercynaps/.grandine/sepolia/beacon/beacon_fork_choice with name beacon_fork_choice +2024-10-05T17:55:02.992030Z INFO fork_choice_control::storage: loaded state at slot 0 +2024-10-05T17:55:03.006714Z INFO fork_choice_store::state_cache_processor: Creating new StateCacheProcessor with lock timeout of 1.5s +2024-10-05T17:55:03.008808Z INFO database: database: /Users/mercynaps/.grandine/sepolia/beacon/sync with name sync +2024-10-05T17:55:03.011573Z INFO database: database: /Users/mercynaps/.grandine/sepolia/validator with name proposer-configs +2024-10-05T17:55:03.019247Z INFO discv5::service: Discv5 Service started mode=Ip4 +2024-10-05T17:55:03.028392Z INFO libp2p_swarm: local_peer_id=16Uiu2HAm9mbBtFBMS3DyTdeV5SDa4RCkwV2EprVWDJAcM48q8GhX +2024-10-05T17:55:09.375133Z INFO eth1::download_manager: will download Eth1 deposits from block 6800543 to block 6813947 +2024-10-05T17:55:09.375154Z INFO eth1::download_manager: downloading Eth1 deposits from block 6800543 to block 6801542 +2024-10-05T17:55:09.744648Z INFO eth1::download_manager: downloading Eth1 deposits from block 6801543 to block 6802542 +2024-10-05T17:55:10.097448Z INFO eth1::download_manager: downloading Eth1 deposits from block 6802543 to block 6803542 +2024-10-05T17:55:10.464138Z INFO eth1::download_manager: downloading Eth1 deposits from block 6803543 to block 6804542 +2024-10-05T17:55:10.883375Z INFO eth1::download_manager: downloading Eth1 deposits from block 6804543 to block 6805542 +2024-10-05T17:55:11.264993Z INFO eth1::download_manager: downloading Eth1 deposits from block 6805543 to block 6806542 +2024-10-05T17:55:11.623982Z INFO eth1::download_manager: downloading Eth1 deposits from block 6806543 to block 6807542 +2024-10-05T17:55:13.042131Z INFO http_api::task: HTTP server listening on 127.0.0.1:5052 +2024-10-05T17:55:14.145174Z INFO eth1::download_manager: downloading Eth1 deposits from block 6807543 to block 6808542 +2024-10-05T17:55:14.504887Z INFO eth1::download_manager: downloading Eth1 deposits from block 6808543 to block 6809542 +2024-10-05T17:55:14.980415Z INFO eth1::download_manager: downloading Eth1 deposits from block 6809543 to block 6810542 +2024-10-05T17:55:15.687799Z INFO eth1::download_manager: downloading Eth1 deposits from block 6810543 to block 6811542 +2024-10-05T17:55:16.820776Z INFO eth1::download_manager: downloading Eth1 deposits from block 6811543 to block 6812542 +2024-10-05T17:55:17.946371Z INFO eth1::download_manager: downloading Eth1 deposits from block 6812543 to block 6813542 +2024-10-05T17:55:19.088157Z INFO eth1::download_manager: downloading Eth1 deposits from block 6813543 to block 6813947 +2024-10-05T17:55:22.908526Z INFO eth1::eth1_chain: started Eth1 deposit download task +2024-10-05T17:55:23.303609Z INFO eth1::download_manager: will download Eth1 deposits from block 6813948 to block 6813948 +2024-10-05T17:55:23.303632Z INFO eth1::download_manager: downloading Eth1 deposits from block 6813948 to block 6813948 +2024-10-05T17:55:28.865070Z INFO eth1::eth1_chain: started Eth1 deposit download task +2024-10-05T17:55:29.267911Z INFO eth1::download_manager: will download Eth1 deposits from block 6813949 to block 6813949 +2024-10-05T17:55:29.267929Z INFO eth1::download_manager: downloading Eth1 deposits from block 6813949 to block 6813949 +2024-10-05T17:55:31.061710Z INFO eth1::eth1_chain: started Eth1 block download task +2024-10-05T17:55:38.279460Z INFO runtime::runtime: saving current chain before exit… +2024-10-05T17:55:38.297201Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 0 +2024-10-05T17:55:38.298966Z INFO fork_choice_control::storage: saving state in slot 0 +2024-10-05T17:55:38.302404Z INFO fork_choice_control::mutator: chain saved (finalized blocks: 1, unfinalized blocks: 0) diff --git a/logs/testing.log.2024-10-09 b/logs/testing.log.2024-10-09 new file mode 100644 index 00000000..64f76a6e --- /dev/null +++ b/logs/testing.log.2024-10-09 @@ -0,0 +1,1307 @@ +2024-10-09T02:54:14.334913Z INFO logging: Tracing initialized successfully. +2024-10-09T02:54:14.334944Z INFO grandine: Grandine firing up... +2024-10-09T02:54:14.337894Z INFO grandine: starting beacon node +2024-10-09T02:54:14.337901Z INFO grandine::grandine_config: network: sepolia +2024-10-09T02:54:14.337918Z INFO grandine::grandine_config: data directory: "/Users/mercynaps/.grandine/sepolia" +2024-10-09T02:54:14.337922Z INFO grandine::grandine_config: Eth2 database upper limit: 256.0 GiB +2024-10-09T02:54:14.337924Z INFO grandine::grandine_config: Eth1 database upper limit: 16.0 GiB +2024-10-09T02:54:14.338531Z INFO grandine::grandine_config: Eth1 RPC URLs: [Url { scheme: "https", cannot_be_a_base: false, username: "", password: None, host: Some(Domain("sepolia.infura.io")), port: None, path: "/v3/ade936980bd740a58b7e654354ed064b", query: None, fragment: None }] +2024-10-09T02:54:14.338559Z INFO grandine::grandine_config: graffiti: [0x4772616e64696e652f302e342e312d6566363166653800000000000000000000] +2024-10-09T02:54:14.338563Z INFO grandine::grandine_config: HTTP API address: 127.0.0.1:5052 +2024-10-09T02:54:14.338565Z INFO grandine::grandine_config: validator API disabled +2024-10-09T02:54:14.338566Z INFO grandine::grandine_config: archival interval: 32 epochs +2024-10-09T02:54:14.338579Z INFO grandine::grandine_config: slasher enabled: false +2024-10-09T02:54:14.342455Z INFO grandine::grandine_config: client version: Grandine/0.4.1-ef61fe8/aarch64-macos +2024-10-09T02:54:14.342467Z INFO grandine::grandine_config: suggested fee recipient: 0xe7cf…1f1b +2024-10-09T02:54:14.342469Z INFO grandine::grandine_config: back sync enabled: false +2024-10-09T02:54:14.375203Z INFO database: database: /Users/mercynaps/.grandine/sepolia/beacon/eth1_cache with name eth1 +2024-10-09T02:54:14.375801Z INFO eth1::eth1_chain: started new Eth1 deposit download task (deposit contract 0x7f02c3e3c98b133055b8b348b2ac625669ed295d) +2024-10-09T02:54:14.375861Z INFO eth1::eth1_chain: started Eth1 deposit download task +2024-10-09T02:54:14.381121Z INFO grandine::predefined_network: loading genesis state from file: /Users/mercynaps/.grandine/sepolia/beacon/genesis_state.ssz… +2024-10-09T02:54:14.409427Z INFO database: database: /Users/mercynaps/.grandine/sepolia/beacon/beacon_fork_choice with name beacon_fork_choice +2024-10-09T02:54:14.416771Z INFO fork_choice_control::storage: loaded state at slot 0 +2024-10-09T02:54:14.429821Z INFO fork_choice_store::state_cache_processor: Creating new StateCacheProcessor with lock timeout of 1.5s +2024-10-09T02:54:14.437296Z INFO database: database: /Users/mercynaps/.grandine/sepolia/beacon/sync with name sync +2024-10-09T02:54:14.439264Z INFO database: database: /Users/mercynaps/.grandine/sepolia/validator with name proposer-configs +2024-10-09T02:54:14.460488Z INFO discv5::service: Discv5 Service started mode=Ip4 +2024-10-09T02:54:14.470007Z INFO libp2p_swarm: local_peer_id=16Uiu2HAm9mbBtFBMS3DyTdeV5SDa4RCkwV2EprVWDJAcM48q8GhX +2024-10-09T02:54:16.462415Z INFO eth1::download_manager: will download Eth1 deposits from block 6813950 to block 6834759 +2024-10-09T02:54:16.462421Z INFO eth1::download_manager: downloading Eth1 deposits from block 6813950 to block 6814949 +2024-10-09T02:54:16.863966Z INFO eth1::download_manager: downloading Eth1 deposits from block 6814950 to block 6815949 +2024-10-09T02:54:17.237200Z INFO eth1::download_manager: downloading Eth1 deposits from block 6815950 to block 6816949 +2024-10-09T02:54:17.623196Z INFO eth1::download_manager: downloading Eth1 deposits from block 6816950 to block 6817949 +2024-10-09T02:54:17.993319Z INFO eth1::download_manager: downloading Eth1 deposits from block 6817950 to block 6818949 +2024-10-09T02:54:18.589353Z INFO eth1::download_manager: downloading Eth1 deposits from block 6818950 to block 6819949 +2024-10-09T02:54:18.989998Z INFO eth1::download_manager: downloading Eth1 deposits from block 6819950 to block 6820949 +2024-10-09T02:54:19.391044Z INFO eth1::download_manager: downloading Eth1 deposits from block 6820950 to block 6821949 +2024-10-09T02:54:19.790718Z INFO eth1::download_manager: downloading Eth1 deposits from block 6821950 to block 6822949 +2024-10-09T02:54:20.182527Z INFO eth1::download_manager: downloading Eth1 deposits from block 6822950 to block 6823949 +2024-10-09T02:54:20.738954Z INFO eth1::download_manager: downloading Eth1 deposits from block 6823950 to block 6824949 +2024-10-09T02:54:21.143055Z INFO eth1::download_manager: downloading Eth1 deposits from block 6824950 to block 6825949 +2024-10-09T02:54:21.507772Z INFO eth1::download_manager: downloading Eth1 deposits from block 6825950 to block 6826949 +2024-10-09T02:54:22.000595Z INFO eth1::download_manager: downloading Eth1 deposits from block 6826950 to block 6827949 +2024-10-09T02:54:22.390313Z INFO eth1::download_manager: downloading Eth1 deposits from block 6827950 to block 6828949 +2024-10-09T02:54:22.798745Z INFO eth1::download_manager: downloading Eth1 deposits from block 6828950 to block 6829949 +2024-10-09T02:54:23.198229Z INFO eth1::download_manager: downloading Eth1 deposits from block 6829950 to block 6830949 +2024-10-09T02:54:23.585962Z INFO eth1::download_manager: downloading Eth1 deposits from block 6830950 to block 6831949 +2024-10-09T02:54:24.116887Z INFO eth1::download_manager: downloading Eth1 deposits from block 6831950 to block 6832949 +2024-10-09T02:54:24.479972Z INFO http_api::task: HTTP server listening on 127.0.0.1:5052 +2024-10-09T02:54:24.494761Z INFO eth1::download_manager: downloading Eth1 deposits from block 6832950 to block 6833949 +2024-10-09T02:54:24.903278Z INFO eth1::download_manager: downloading Eth1 deposits from block 6833950 to block 6834759 +2024-10-09T02:54:28.765100Z INFO eth1::eth1_chain: started Eth1 deposit download task +2024-10-09T02:54:29.182555Z INFO eth1::download_manager: will download Eth1 deposits from block 6834760 to block 6834760 +2024-10-09T02:54:29.182586Z INFO eth1::download_manager: downloading Eth1 deposits from block 6834760 to block 6834760 +2024-10-09T02:54:30.302593Z INFO eth1::eth1_chain: started Eth1 block download task +2024-10-09T02:59:50.633041Z INFO runtime::runtime: saving current chain before exit… +2024-10-09T02:59:50.655243Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 0 +2024-10-09T02:59:50.656424Z INFO fork_choice_control::storage: saving state in slot 0 +2024-10-09T02:59:50.661347Z INFO fork_choice_control::mutator: chain saved (finalized blocks: 1, unfinalized blocks: 0) +2024-10-09T03:31:22.110091Z INFO logging: Tracing initialized successfully. +2024-10-09T03:31:22.110279Z INFO grandine: Grandine firing up... +2024-10-09T03:31:22.146056Z INFO grandine: starting beacon node +2024-10-09T03:31:22.146145Z INFO grandine::grandine_config: network: mainnet +2024-10-09T03:31:22.146185Z INFO grandine::grandine_config: data directory: "/Users/mercynaps/.grandine/mainnet" +2024-10-09T03:31:22.146203Z INFO grandine::grandine_config: Eth2 database upper limit: 256.0 GiB +2024-10-09T03:31:22.146216Z INFO grandine::grandine_config: Eth1 database upper limit: 16.0 GiB +2024-10-09T03:31:22.146397Z INFO grandine::grandine_config: Eth1 RPC URLs: [] +2024-10-09T03:31:22.146565Z INFO grandine::grandine_config: graffiti: [0x4772616e64696e652f302e342e312d6566363166653800000000000000000000] +2024-10-09T03:31:22.146582Z INFO grandine::grandine_config: HTTP API address: 127.0.0.1:5052 +2024-10-09T03:31:22.146607Z INFO grandine::grandine_config: validator API disabled +2024-10-09T03:31:22.146618Z INFO grandine::grandine_config: archival interval: 32 epochs +2024-10-09T03:31:22.146642Z INFO grandine::grandine_config: slasher enabled: false +2024-10-09T03:31:22.146666Z INFO grandine::grandine_config: client version: Grandine/0.4.1-ef61fe8/aarch64-macos +2024-10-09T03:31:22.146719Z INFO grandine::grandine_config: suggested fee recipient: 0xe7cf…1f1b +2024-10-09T03:31:22.146733Z INFO grandine::grandine_config: back sync enabled: false +2024-10-09T03:31:22.159549Z INFO database: database: /Users/mercynaps/.grandine/mainnet/beacon/eth1_cache with name eth1 +2024-10-09T03:31:23.778686Z INFO database: database: /Users/mercynaps/.grandine/mainnet/beacon/beacon_fork_choice with name beacon_fork_choice +2024-10-09T03:31:23.911035Z INFO fork_choice_control::storage: loaded state at slot 8224 +2024-10-09T03:31:26.229241Z INFO fork_choice_store::state_cache_processor: Creating new StateCacheProcessor with lock timeout of 1.5s +2024-10-09T03:31:26.363036Z INFO fork_choice_control::block_processor: Validating block with slot: 8225 +2024-10-09T03:31:26.364939Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x7d18357f0386991582eaa0e1fe52b346c8482b82665aa3157696e4a58e2803f3, slot: 8225 +2024-10-09T03:31:26.513860Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8225 +2024-10-09T03:31:26.514138Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=149.0ms, max=149.0ms, avg=149.0ms, median=149.0ms +2024-10-09T03:31:26.514176Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8225 +2024-10-09T03:31:26.525445Z TRACE fork_choice_control::block_processor: validate_block timing: min=162.4ms, max=162.4ms, avg=162.4ms, median=162.4ms +2024-10-09T03:31:26.525583Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 8224) +2024-10-09T03:31:26.526158Z INFO fork_choice_control::block_processor: Validating block with slot: 8226 +2024-10-09T03:31:26.528670Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf268c166646b9faf5dbc947343eb343861387c835337bbdf39e3ee8c97e85d30, slot: 8226 +2024-10-09T03:31:26.534031Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8226 +2024-10-09T03:31:26.534124Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=5.4ms, max=149.0ms, avg=77.2ms, median=149.0ms +2024-10-09T03:31:26.534145Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8226 +2024-10-09T03:31:26.545351Z TRACE fork_choice_control::block_processor: validate_block timing: min=19.2ms, max=162.4ms, avg=90.8ms, median=162.4ms +2024-10-09T03:31:26.545469Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 8224) +2024-10-09T03:31:26.545743Z INFO fork_choice_control::block_processor: Validating block with slot: 8227 +2024-10-09T03:31:26.546889Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf1af8a41491ecba4cf5b9d135dd53c204543d24861a25d97686e218a28aea8a6, slot: 8227 +2024-10-09T03:31:26.550098Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8227 +2024-10-09T03:31:26.550149Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=3.2ms, max=149.0ms, avg=52.5ms, median=5.4ms +2024-10-09T03:31:26.550158Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8227 +2024-10-09T03:31:26.562093Z TRACE fork_choice_control::block_processor: validate_block timing: min=16.3ms, max=162.4ms, avg=66.0ms, median=19.2ms +2024-10-09T03:31:26.562214Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 8224) +2024-10-09T03:31:26.562443Z INFO fork_choice_control::block_processor: Validating block with slot: 8228 +2024-10-09T03:31:26.563710Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2dabb452174dc066b964288c202839335e45dcb598e90ef36b5ef799aa003837, slot: 8228 +2024-10-09T03:31:26.567795Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8228 +2024-10-09T03:31:26.567848Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=3.2ms, max=149.0ms, avg=40.4ms, median=5.4ms +2024-10-09T03:31:26.567858Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8228 +2024-10-09T03:31:26.580130Z TRACE fork_choice_control::block_processor: validate_block timing: min=16.3ms, max=162.4ms, avg=53.9ms, median=19.2ms +2024-10-09T03:31:26.580256Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 8224) +2024-10-09T03:31:26.580502Z INFO fork_choice_control::block_processor: Validating block with slot: 8229 +2024-10-09T03:31:26.581568Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xca3cc25bf0a48c43a489dfca43d3ec04c2ce8bd093e77d31ca571c81b7c7e852, slot: 8229 +2024-10-09T03:31:26.584345Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8229 +2024-10-09T03:31:26.584395Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.8ms, max=149.0ms, avg=32.9ms, median=4.1ms +2024-10-09T03:31:26.584404Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8229 +2024-10-09T03:31:26.596406Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=46.3ms, median=17.6ms +2024-10-09T03:31:26.596513Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 8224) +2024-10-09T03:31:26.596742Z INFO fork_choice_control::block_processor: Validating block with slot: 8230 +2024-10-09T03:31:26.597909Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9219a1b98d4b1e41da3c3d044befcf5dd1be0ddc088854c82742283067f9d822, slot: 8230 +2024-10-09T03:31:26.601007Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8230 +2024-10-09T03:31:26.601061Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.8ms, max=149.0ms, avg=28.0ms, median=4.1ms +2024-10-09T03:31:26.601071Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8230 +2024-10-09T03:31:26.613559Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=41.3ms, median=17.6ms +2024-10-09T03:31:26.613665Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 8224) +2024-10-09T03:31:26.613887Z INFO fork_choice_control::block_processor: Validating block with slot: 8231 +2024-10-09T03:31:26.615364Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcafa30dfdce6731669c329f825a37693f47682aed4e76bf77a47e4be1bb44db1, slot: 8231 +2024-10-09T03:31:26.618529Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8231 +2024-10-09T03:31:26.618591Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.8ms, max=149.0ms, avg=24.4ms, median=3.2ms +2024-10-09T03:31:26.618601Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8231 +2024-10-09T03:31:26.632709Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=38.1ms, median=17.6ms +2024-10-09T03:31:26.632815Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 8224) +2024-10-09T03:31:26.633355Z INFO fork_choice_control::block_processor: Validating block with slot: 8232 +2024-10-09T03:31:26.634634Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8dd52862e761f9ad1d09f0918a5022add39334ad1d8698a8e16b8fed734925f6, slot: 8232 +2024-10-09T03:31:26.637312Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8232 +2024-10-09T03:31:26.637357Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.7ms, max=149.0ms, avg=21.7ms, median=3.2ms +2024-10-09T03:31:26.637368Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8232 +2024-10-09T03:31:26.650945Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=35.6ms, median=17.6ms +2024-10-09T03:31:26.651056Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 8224) +2024-10-09T03:31:26.651504Z INFO fork_choice_control::block_processor: Validating block with slot: 8233 +2024-10-09T03:31:26.652484Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcd9fefa1cddfd4d3a2e4e805f4c308a140d9ac67f89447da91d581004e9547cb, slot: 8233 +2024-10-09T03:31:26.655021Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8233 +2024-10-09T03:31:26.655060Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.6ms, max=149.0ms, avg=19.6ms, median=3.2ms +2024-10-09T03:31:26.655069Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8233 +2024-10-09T03:31:26.669895Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=33.6ms, median=17.6ms +2024-10-09T03:31:26.670101Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 8224) +2024-10-09T03:31:26.670716Z INFO fork_choice_control::block_processor: Validating block with slot: 8234 +2024-10-09T03:31:26.671802Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9fa6b8e41ee4d1e564ec65e8d3607ef56c71e518830174cc3afe5b494589b295, slot: 8234 +2024-10-09T03:31:26.674391Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8234 +2024-10-09T03:31:26.674442Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.6ms, max=149.0ms, avg=17.9ms, median=3.2ms +2024-10-09T03:31:26.674451Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8234 +2024-10-09T03:31:26.687666Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=32.0ms, median=17.6ms +2024-10-09T03:31:26.687767Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 8224) +2024-10-09T03:31:26.688178Z INFO fork_choice_control::block_processor: Validating block with slot: 8235 +2024-10-09T03:31:26.690713Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xec34b3e6d849e311a62cf013f33c1691fc4c887d864dd03965b4cbc69d9b6a5f, slot: 8235 +2024-10-09T03:31:26.696636Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8235 +2024-10-09T03:31:26.696806Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.6ms, max=149.0ms, avg=16.8ms, median=3.2ms +2024-10-09T03:31:26.696882Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8235 +2024-10-09T03:31:26.712818Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=31.3ms, median=17.6ms +2024-10-09T03:31:26.712948Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 8224) +2024-10-09T03:31:26.713667Z INFO fork_choice_control::block_processor: Validating block with slot: 8236 +2024-10-09T03:31:26.717268Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0e6c25d9bc2105b68f4004b226f79d488bf4eb783425485e338dcbaa5a3e8eeb, slot: 8236 +2024-10-09T03:31:26.724021Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8236 +2024-10-09T03:31:26.724070Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.6ms, max=149.0ms, avg=16.0ms, median=3.2ms +2024-10-09T03:31:26.724083Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8236 +2024-10-09T03:31:26.738494Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=30.8ms, median=18.3ms +2024-10-09T03:31:26.738598Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 8224) +2024-10-09T03:31:26.739278Z INFO fork_choice_control::block_processor: Validating block with slot: 8237 +2024-10-09T03:31:26.740366Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xafd00ce8e0356fa4cedb23eecd0c547221a6339d0639b28b9dccfd651ec68203, slot: 8237 +2024-10-09T03:31:26.743093Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8237 +2024-10-09T03:31:26.743157Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.6ms, max=149.0ms, avg=15.0ms, median=3.2ms +2024-10-09T03:31:26.743190Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8237 +2024-10-09T03:31:26.757155Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=29.8ms, median=17.8ms +2024-10-09T03:31:26.757275Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 8224) +2024-10-09T03:31:26.758160Z INFO fork_choice_control::block_processor: Validating block with slot: 8238 +2024-10-09T03:31:26.759098Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd53bcc5e6c142d6c3a4a3bb5368e1cdaf568b968df0b481cad8d12bba367a681, slot: 8238 +2024-10-09T03:31:26.761524Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8238 +2024-10-09T03:31:26.761550Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=14.1ms, median=3.2ms +2024-10-09T03:31:26.761559Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8238 +2024-10-09T03:31:26.776084Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=28.9ms, median=17.9ms +2024-10-09T03:31:26.776188Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 8224) +2024-10-09T03:31:26.776728Z INFO fork_choice_control::block_processor: Validating block with slot: 8239 +2024-10-09T03:31:26.777664Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x09efe744d9ad5a2c56f2b82da31bf86b4ee7115c408b116651fbaa7318d2c903, slot: 8239 +2024-10-09T03:31:26.780073Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8239 +2024-10-09T03:31:26.780098Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=13.3ms, median=3.1ms +2024-10-09T03:31:26.780107Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8239 +2024-10-09T03:31:26.794606Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=28.2ms, median=17.8ms +2024-10-09T03:31:26.794711Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 8224) +2024-10-09T03:31:26.795434Z INFO fork_choice_control::block_processor: Validating block with slot: 8240 +2024-10-09T03:31:26.796389Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe5cf43ff92b3506c674295771597959293d7b6156f38064b2f8d5c627501c607, slot: 8240 +2024-10-09T03:31:26.799031Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8240 +2024-10-09T03:31:26.799095Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=12.6ms, median=3.1ms +2024-10-09T03:31:26.799107Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8240 +2024-10-09T03:31:26.813286Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=27.5ms, median=17.8ms +2024-10-09T03:31:26.813387Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 8224) +2024-10-09T03:31:26.814069Z INFO fork_choice_control::block_processor: Validating block with slot: 8242 +2024-10-09T03:31:26.815901Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x448cc3be55c379b8ca71b4dd6bdc669068b6c0d42a3849fd6245a5255df14f3b, slot: 8242 +2024-10-09T03:31:26.837858Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8242 +2024-10-09T03:31:26.837914Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=13.2ms, median=3.1ms +2024-10-09T03:31:26.837924Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8242 +2024-10-09T03:31:26.853736Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=28.2ms, median=17.8ms +2024-10-09T03:31:26.853843Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 8224) +2024-10-09T03:31:26.854346Z INFO fork_choice_control::block_processor: Validating block with slot: 8243 +2024-10-09T03:31:26.855652Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x82b1cbc6ada9a43ee1dd8de3f5d52f1b0a2bb0448f85fe2984afa6b456db00b4, slot: 8243 +2024-10-09T03:31:26.858838Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8243 +2024-10-09T03:31:26.858895Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=12.6ms, median=3.2ms +2024-10-09T03:31:26.858906Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8243 +2024-10-09T03:31:26.876618Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=27.9ms, median=17.9ms +2024-10-09T03:31:26.876727Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 8224) +2024-10-09T03:31:26.877266Z INFO fork_choice_control::block_processor: Validating block with slot: 8244 +2024-10-09T03:31:26.878254Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8b7035bb28e48231ebd8d9184affc4004b7e41ae9bd1c0cba3241c519f7bc204, slot: 8244 +2024-10-09T03:31:26.881482Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8244 +2024-10-09T03:31:26.881561Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=12.1ms, median=3.2ms +2024-10-09T03:31:26.881572Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8244 +2024-10-09T03:31:26.896767Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=27.5ms, median=17.9ms +2024-10-09T03:31:26.896886Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 8224) +2024-10-09T03:31:26.897503Z INFO fork_choice_control::block_processor: Validating block with slot: 8245 +2024-10-09T03:31:26.898614Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x538ef6ad1d8a189e356c1ed01c136234af572e40795edfd6ae1c7355315f1cf7, slot: 8245 +2024-10-09T03:31:26.901736Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8245 +2024-10-09T03:31:26.901807Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=11.7ms, median=3.2ms +2024-10-09T03:31:26.901817Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8245 +2024-10-09T03:31:26.920096Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=27.2ms, median=18.3ms +2024-10-09T03:31:26.920222Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 8224) +2024-10-09T03:31:26.920632Z INFO fork_choice_control::block_processor: Validating block with slot: 8246 +2024-10-09T03:31:26.921803Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x0ee0b3e27dd0f41e23a7da3eaeb3d6af81c1e847182261a52b767aa9bf1aa6c3, slot: 8246 +2024-10-09T03:31:26.924604Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8246 +2024-10-09T03:31:26.924648Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=11.3ms, median=3.2ms +2024-10-09T03:31:26.924721Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8246 +2024-10-09T03:31:26.946317Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=27.1ms, median=18.3ms +2024-10-09T03:31:26.946598Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 8224) +2024-10-09T03:31:26.947561Z INFO fork_choice_control::block_processor: Validating block with slot: 8247 +2024-10-09T03:31:26.949868Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8ea3935931b48d2b55058547d3653af8b18a389202f40bb416744dcb53d0970c, slot: 8247 +2024-10-09T03:31:26.953273Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8247 +2024-10-09T03:31:26.953324Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=10.9ms, median=3.2ms +2024-10-09T03:31:26.953334Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8247 +2024-10-09T03:31:26.970287Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=26.9ms, median=18.8ms +2024-10-09T03:31:26.970925Z INFO fork_choice_control::block_processor: Validating block with slot: 8248 +2024-10-09T03:31:26.972636Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf728d0472c49d48188f7cfb80fb593cfea2f6a612716ac70fdfb0da4e8ca429c, slot: 8248 +2024-10-09T03:31:26.976718Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8248 +2024-10-09T03:31:26.976792Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=10.6ms, median=3.2ms +2024-10-09T03:31:26.976803Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8248 +2024-10-09T03:31:26.996199Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=26.8ms, median=18.8ms +2024-10-09T03:31:26.997255Z INFO fork_choice_control::block_processor: Validating block with slot: 8249 +2024-10-09T03:31:27.003509Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4eee309c84b618f213c8dbaf4e1153ed8574b17006c05d2659e7016595efb6b9, slot: 8249 +2024-10-09T03:31:27.009673Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8249 +2024-10-09T03:31:27.009744Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=10.4ms, median=3.2ms +2024-10-09T03:31:27.009756Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8249 +2024-10-09T03:31:27.031792Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=27.2ms, median=19.2ms +2024-10-09T03:31:27.032493Z INFO fork_choice_control::block_processor: Validating block with slot: 8250 +2024-10-09T03:31:27.034285Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8cc6a59f923175e89508076bf4707723277e18ce9c7dc2a7130e83bcc887042f, slot: 8250 +2024-10-09T03:31:27.039239Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8250 +2024-10-09T03:31:27.039313Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=10.2ms, median=3.2ms +2024-10-09T03:31:27.039323Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8250 +2024-10-09T03:31:27.065873Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=27.4ms, median=19.2ms +2024-10-09T03:31:27.066677Z INFO fork_choice_control::block_processor: Validating block with slot: 8251 +2024-10-09T03:31:27.067750Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x877bc895535f4a9a8ad3afd6e5901dc9c88a1f0f6034e135744b44498dbb5436, slot: 8251 +2024-10-09T03:31:27.071250Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8251 +2024-10-09T03:31:27.071366Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=10.0ms, median=3.2ms +2024-10-09T03:31:27.071377Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8251 +2024-10-09T03:31:27.093357Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=27.4ms, median=19.5ms +2024-10-09T03:31:27.094169Z INFO fork_choice_control::block_processor: Validating block with slot: 8252 +2024-10-09T03:31:27.095467Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x65bd258c13243e64fc669fa7eaa993a3195561f396b26ae93967ef12a9d2bdeb, slot: 8252 +2024-10-09T03:31:27.098764Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8252 +2024-10-09T03:31:27.098832Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=9.7ms, median=3.2ms +2024-10-09T03:31:27.098844Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8252 +2024-10-09T03:31:27.118666Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=27.3ms, median=19.5ms +2024-10-09T03:31:27.119302Z INFO fork_choice_control::block_processor: Validating block with slot: 8253 +2024-10-09T03:31:27.120569Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6e091ef69a75c6adede614ec2e23093c5d179686d958d12a56b9eea0fc718d26, slot: 8253 +2024-10-09T03:31:27.123382Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8253 +2024-10-09T03:31:27.123425Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=9.5ms, median=3.2ms +2024-10-09T03:31:27.123435Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8253 +2024-10-09T03:31:27.142154Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=27.1ms, median=22.2ms +2024-10-09T03:31:27.142751Z INFO fork_choice_control::block_processor: Validating block with slot: 8254 +2024-10-09T03:31:27.144557Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6f38d84700c3bd787b8bf8ef44443f3d036cad084b0e530b8875c85b85618c5b, slot: 8254 +2024-10-09T03:31:27.148463Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8254 +2024-10-09T03:31:27.148529Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=9.3ms, median=3.2ms +2024-10-09T03:31:27.148543Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8254 +2024-10-09T03:31:27.166945Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=27.0ms, median=22.2ms +2024-10-09T03:31:27.167660Z INFO fork_choice_control::block_processor: Validating block with slot: 8255 +2024-10-09T03:31:27.169718Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x42ddf52a0c40ebce71797025f47991219c140decd3036cc5f9e31993e5aa796a, slot: 8255 +2024-10-09T03:31:27.173531Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8255 +2024-10-09T03:31:27.173599Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=9.1ms, median=3.3ms +2024-10-09T03:31:27.173615Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8255 +2024-10-09T03:31:27.196373Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=27.1ms, median=22.5ms +2024-10-09T03:31:27.197002Z INFO fork_choice_control::block_processor: Validating block with slot: 8256 +2024-10-09T03:31:27.198153Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x80c69434df5ee50098c7c6dfe936843f774fff027a73db486dbdd6bdc42319ff, slot: 8256 +2024-10-09T03:31:27.248468Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8256 +2024-10-09T03:31:27.248537Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=10.4ms, median=3.3ms +2024-10-09T03:31:27.248548Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8256 +2024-10-09T03:31:27.259391Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=28.2ms, median=22.5ms +2024-10-09T03:31:27.259503Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 8256) +2024-10-09T03:31:27.260312Z INFO fork_choice_control::block_processor: Validating block with slot: 8257 +2024-10-09T03:31:27.262654Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5e04a65c586e2371aeb4312bad60d4842cf68aafa898656a37d8ca35aeedf13f, slot: 8257 +2024-10-09T03:31:27.336682Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8257 +2024-10-09T03:31:27.336738Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=12.4ms, median=3.3ms +2024-10-09T03:31:27.336748Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8257 +2024-10-09T03:31:27.347654Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=30.0ms, median=22.7ms +2024-10-09T03:31:27.348518Z INFO fork_choice_control::block_processor: Validating block with slot: 8258 +2024-10-09T03:31:27.350430Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6626618f1c89561f0b2124d2f962ea378f8d82cdd32e64b47a284dd0a6adfdda, slot: 8258 +2024-10-09T03:31:27.354570Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8258 +2024-10-09T03:31:27.354626Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=12.2ms, median=3.3ms +2024-10-09T03:31:27.354636Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8258 +2024-10-09T03:31:27.366575Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=29.7ms, median=22.5ms +2024-10-09T03:31:27.367255Z INFO fork_choice_control::block_processor: Validating block with slot: 8259 +2024-10-09T03:31:27.368372Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcdcda52409410e6408a204fe7dc7d089f366548bdeaf75f2d2cf567b5b132ffb, slot: 8259 +2024-10-09T03:31:27.371181Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8259 +2024-10-09T03:31:27.371224Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=11.9ms, median=3.3ms +2024-10-09T03:31:27.371235Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8259 +2024-10-09T03:31:27.383541Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=29.3ms, median=22.5ms +2024-10-09T03:31:27.384121Z INFO fork_choice_control::block_processor: Validating block with slot: 8260 +2024-10-09T03:31:27.385217Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6c51f84f91e5fab670baa57037390ea6d331cc1fba12273126da57018af7cc76, slot: 8260 +2024-10-09T03:31:27.388058Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8260 +2024-10-09T03:31:27.388111Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=11.6ms, median=3.3ms +2024-10-09T03:31:27.388123Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8260 +2024-10-09T03:31:27.400299Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=28.9ms, median=22.2ms +2024-10-09T03:31:27.400971Z INFO fork_choice_control::block_processor: Validating block with slot: 8261 +2024-10-09T03:31:27.403044Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x690850ed2f4bf28b3974769a9cdcb53c3eacde9c09081b0065ecaf2b854297f1, slot: 8261 +2024-10-09T03:31:27.407627Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8261 +2024-10-09T03:31:27.407663Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=11.4ms, median=3.3ms +2024-10-09T03:31:27.407672Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8261 +2024-10-09T03:31:27.425023Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=28.8ms, median=22.5ms +2024-10-09T03:31:27.425635Z INFO fork_choice_control::block_processor: Validating block with slot: 8262 +2024-10-09T03:31:27.427274Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x249bd553bde775c08d9f606f3e4ab775d480c6d31b36c0274408bdab743757ce, slot: 8262 +2024-10-09T03:31:27.430374Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8262 +2024-10-09T03:31:27.430434Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=11.2ms, median=3.3ms +2024-10-09T03:31:27.430445Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8262 +2024-10-09T03:31:27.448016Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=28.6ms, median=22.3ms +2024-10-09T03:31:27.448625Z INFO fork_choice_control::block_processor: Validating block with slot: 8263 +2024-10-09T03:31:27.449988Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x86e102ec5321cc22f2659df079a623b14ae89a9f3823c1a9262e9111ff76ef22, slot: 8263 +2024-10-09T03:31:27.453680Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8263 +2024-10-09T03:31:27.453749Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=11.0ms, median=3.3ms +2024-10-09T03:31:27.453760Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8263 +2024-10-09T03:31:27.469067Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=28.4ms, median=22.3ms +2024-10-09T03:31:27.469813Z INFO fork_choice_control::block_processor: Validating block with slot: 8264 +2024-10-09T03:31:27.470884Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9be5105233049aa607c21fea6b3346d4067451728bb519a6c4bd5ff7529910e6, slot: 8264 +2024-10-09T03:31:27.473777Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8264 +2024-10-09T03:31:27.473812Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=10.8ms, median=3.3ms +2024-10-09T03:31:27.473822Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8264 +2024-10-09T03:31:27.488282Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=28.1ms, median=22.2ms +2024-10-09T03:31:27.488938Z INFO fork_choice_control::block_processor: Validating block with slot: 8265 +2024-10-09T03:31:27.490336Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x417dfc0c603efd965bf9a93dd45080b0745422fd3715b6d07997a5e6386a9fe4, slot: 8265 +2024-10-09T03:31:27.493687Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8265 +2024-10-09T03:31:27.493743Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=10.6ms, median=3.3ms +2024-10-09T03:31:27.493755Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8265 +2024-10-09T03:31:27.507350Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=27.9ms, median=22.2ms +2024-10-09T03:31:27.507957Z INFO fork_choice_control::block_processor: Validating block with slot: 8266 +2024-10-09T03:31:27.509191Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x79a4ef7f10cbb60cdb26b1f43f7f9603be9d2a927b5221d07f0e33a2c2cf7f0d, slot: 8266 +2024-10-09T03:31:27.512103Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8266 +2024-10-09T03:31:27.512136Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=10.4ms, median=3.3ms +2024-10-09T03:31:27.512146Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8266 +2024-10-09T03:31:27.526366Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=27.7ms, median=20.4ms +2024-10-09T03:31:27.527292Z INFO fork_choice_control::block_processor: Validating block with slot: 8267 +2024-10-09T03:31:27.528709Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf4e0ac4f81b2e2e5301041026762b711612989acb1c74e51bb33c7d879e9cb98, slot: 8267 +2024-10-09T03:31:27.532044Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8267 +2024-10-09T03:31:27.532111Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=10.3ms, median=3.3ms +2024-10-09T03:31:27.532122Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8267 +2024-10-09T03:31:27.545915Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=27.4ms, median=20.4ms +2024-10-09T03:31:27.546497Z INFO fork_choice_control::block_processor: Validating block with slot: 8268 +2024-10-09T03:31:27.547972Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa1cb2e23bb032a478d82f522d34d8a22b1b7844b689d319e09c3c7ecd9071557, slot: 8268 +2024-10-09T03:31:27.551425Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8268 +2024-10-09T03:31:27.551485Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=10.1ms, median=3.3ms +2024-10-09T03:31:27.551496Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8268 +2024-10-09T03:31:27.565101Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=27.2ms, median=19.5ms +2024-10-09T03:31:27.565758Z INFO fork_choice_control::block_processor: Validating block with slot: 8269 +2024-10-09T03:31:27.567093Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf8faae6e1c9d2f7774dd41f7e51a4e121b0c8e3f993c7297196aec6b32904cc9, slot: 8269 +2024-10-09T03:31:27.570328Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8269 +2024-10-09T03:31:27.570391Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=10.0ms, median=3.3ms +2024-10-09T03:31:27.570405Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8269 +2024-10-09T03:31:27.584896Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=27.0ms, median=19.5ms +2024-10-09T03:31:27.585481Z INFO fork_choice_control::block_processor: Validating block with slot: 8270 +2024-10-09T03:31:27.586579Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x4af506c64848ba5eeefd20c2b721e74a1ceb6432d3da9953b4fd1b69cd241418, slot: 8270 +2024-10-09T03:31:27.589202Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8270 +2024-10-09T03:31:27.589254Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=9.8ms, median=3.3ms +2024-10-09T03:31:27.589264Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8270 +2024-10-09T03:31:27.603299Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=26.8ms, median=19.2ms +2024-10-09T03:31:27.603892Z INFO fork_choice_control::block_processor: Validating block with slot: 8271 +2024-10-09T03:31:27.604956Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc6b50880a5ff8047553106571cbb1a7f7596494f22579073c5d080cd48e4979a, slot: 8271 +2024-10-09T03:31:27.607584Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8271 +2024-10-09T03:31:27.607616Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=9.6ms, median=3.3ms +2024-10-09T03:31:27.607625Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8271 +2024-10-09T03:31:27.621870Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=26.6ms, median=19.2ms +2024-10-09T03:31:27.622580Z INFO fork_choice_control::block_processor: Validating block with slot: 8272 +2024-10-09T03:31:27.624868Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1c7fb353618e1927d9f41224948d9e4e57de7d8a7d24f04c8bbf9acfe9c2b5cb, slot: 8272 +2024-10-09T03:31:27.629457Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8272 +2024-10-09T03:31:27.629499Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=9.5ms, median=3.3ms +2024-10-09T03:31:27.629508Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8272 +2024-10-09T03:31:27.643773Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=26.5ms, median=19.2ms +2024-10-09T03:31:27.644079Z INFO fork_choice_control::block_processor: Validating block with slot: 8273 +2024-10-09T03:31:27.645337Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8765d36e9a5aa03d4537cb0bfa8bafac4c11bc125484f92c2157bcee03b993b2, slot: 8273 +2024-10-09T03:31:27.648499Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8273 +2024-10-09T03:31:27.648583Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=9.4ms, median=3.3ms +2024-10-09T03:31:27.648592Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8273 +2024-10-09T03:31:27.663302Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=26.4ms, median=19.2ms +2024-10-09T03:31:27.663785Z INFO fork_choice_control::block_processor: Validating block with slot: 8274 +2024-10-09T03:31:27.665071Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa49942aa0c467a627f17b42a27da7a00cc4b0d01fb1e2f607cee6d1c3908c67a, slot: 8274 +2024-10-09T03:31:27.668055Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8274 +2024-10-09T03:31:27.668106Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=9.3ms, median=3.3ms +2024-10-09T03:31:27.668117Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8274 +2024-10-09T03:31:27.683254Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=26.2ms, median=19.2ms +2024-10-09T03:31:27.684280Z INFO fork_choice_control::block_processor: Validating block with slot: 8275 +2024-10-09T03:31:27.685222Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb1db4cc8c4dc34b48202083f8492d4bc85689509ac90153f540caa71c76fdd51, slot: 8275 +2024-10-09T03:31:27.687733Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8275 +2024-10-09T03:31:27.687776Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=9.1ms, median=3.3ms +2024-10-09T03:31:27.687786Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8275 +2024-10-09T03:31:27.703242Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=26.1ms, median=19.2ms +2024-10-09T03:31:27.703833Z INFO fork_choice_control::block_processor: Validating block with slot: 8276 +2024-10-09T03:31:27.704905Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x78f00f21b82bb7b8308635f53d39dbc4ac0748c1cf9224deffbfa8d8911731ef, slot: 8276 +2024-10-09T03:31:27.707603Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8276 +2024-10-09T03:31:27.707640Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=9.0ms, median=3.2ms +2024-10-09T03:31:27.707650Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8276 +2024-10-09T03:31:27.722922Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=25.9ms, median=19.2ms +2024-10-09T03:31:27.723369Z INFO fork_choice_control::block_processor: Validating block with slot: 8277 +2024-10-09T03:31:27.724307Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe35e52f7d82be12f286eb68de2f23514219aa40a0887b18e5d8de37a9bd3cc47, slot: 8277 +2024-10-09T03:31:27.726726Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8277 +2024-10-09T03:31:27.726765Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=8.9ms, median=3.2ms +2024-10-09T03:31:27.726776Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8277 +2024-10-09T03:31:27.742023Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=25.8ms, median=19.2ms +2024-10-09T03:31:27.742647Z INFO fork_choice_control::block_processor: Validating block with slot: 8278 +2024-10-09T03:31:27.743974Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfb381b7ffbc50dffec9ec49147485bd6d3a8ae4bc1952ae47eea507f13684b5c, slot: 8278 +2024-10-09T03:31:27.747157Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8278 +2024-10-09T03:31:27.747199Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=8.8ms, median=3.2ms +2024-10-09T03:31:27.747210Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8278 +2024-10-09T03:31:27.763067Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=25.7ms, median=19.2ms +2024-10-09T03:31:27.763688Z INFO fork_choice_control::block_processor: Validating block with slot: 8279 +2024-10-09T03:31:27.766084Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa367e679bdfc2f31ad026d95462f1a762c4c807417b71b96e9d8c60212c3a918, slot: 8279 +2024-10-09T03:31:27.770995Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8279 +2024-10-09T03:31:27.771044Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=8.7ms, median=3.2ms +2024-10-09T03:31:27.771053Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8279 +2024-10-09T03:31:27.787522Z TRACE fork_choice_control::block_processor: validate_block timing: min=15.8ms, max=162.4ms, avg=25.7ms, median=19.2ms +2024-10-09T03:31:27.788142Z INFO fork_choice_control::block_processor: Validating block with slot: 8280 +2024-10-09T03:31:27.789591Z TRACE fork_choice_control::block_processor: validate_block timing: min=1.4ms, max=162.4ms, avg=25.2ms, median=19.2ms +2024-10-09T03:31:27.790234Z INFO fork_choice_control::block_processor: Validating block with slot: 8281 +2024-10-09T03:31:27.791620Z TRACE fork_choice_control::block_processor: validate_block timing: min=1.4ms, max=162.4ms, avg=24.8ms, median=19.2ms +2024-10-09T03:31:27.791971Z INFO fork_choice_control::block_processor: Validating block with slot: 8282 +2024-10-09T03:31:27.792919Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=24.4ms, median=19.1ms +2024-10-09T03:31:27.793353Z INFO fork_choice_control::block_processor: Validating block with slot: 8283 +2024-10-09T03:31:27.794432Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=24.0ms, median=19.1ms +2024-10-09T03:31:27.794768Z INFO fork_choice_control::block_processor: Validating block with slot: 8284 +2024-10-09T03:31:27.795726Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=23.6ms, median=19.0ms +2024-10-09T03:31:27.796060Z INFO fork_choice_control::block_processor: Validating block with slot: 8285 +2024-10-09T03:31:27.797133Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=23.2ms, median=19.0ms +2024-10-09T03:31:27.797455Z INFO fork_choice_control::block_processor: Validating block with slot: 8286 +2024-10-09T03:31:27.799021Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=22.9ms, median=18.9ms +2024-10-09T03:31:27.799533Z INFO fork_choice_control::block_processor: Validating block with slot: 8287 +2024-10-09T03:31:27.802931Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=22.5ms, median=18.9ms +2024-10-09T03:31:27.803261Z INFO fork_choice_control::block_processor: Validating block with slot: 8288 +2024-10-09T03:31:27.804497Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=22.2ms, median=18.8ms +2024-10-09T03:31:27.807133Z INFO fork_choice_control::block_processor: Validating block with slot: 8289 +2024-10-09T03:31:27.808369Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=21.9ms, median=18.8ms +2024-10-09T03:31:27.808562Z INFO fork_choice_control::block_processor: Validating block with slot: 8290 +2024-10-09T03:31:27.810483Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=21.6ms, median=18.6ms +2024-10-09T03:31:27.810806Z INFO fork_choice_control::block_processor: Validating block with slot: 8291 +2024-10-09T03:31:27.812301Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=21.3ms, median=18.6ms +2024-10-09T03:31:27.812665Z INFO fork_choice_control::block_processor: Validating block with slot: 8292 +2024-10-09T03:31:27.813967Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=21.0ms, median=18.6ms +2024-10-09T03:31:27.814447Z INFO fork_choice_control::block_processor: Validating block with slot: 8293 +2024-10-09T03:31:27.816368Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=20.7ms, median=18.6ms +2024-10-09T03:31:27.816703Z INFO fork_choice_control::block_processor: Validating block with slot: 8294 +2024-10-09T03:31:27.817795Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=20.4ms, median=18.6ms +2024-10-09T03:31:27.818027Z INFO fork_choice_control::block_processor: Validating block with slot: 8295 +2024-10-09T03:31:27.819107Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=20.1ms, median=18.6ms +2024-10-09T03:31:27.819336Z INFO fork_choice_control::block_processor: Validating block with slot: 8296 +2024-10-09T03:31:27.820823Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=19.9ms, median=18.4ms +2024-10-09T03:31:27.821130Z INFO fork_choice_control::block_processor: Validating block with slot: 8297 +2024-10-09T03:31:27.822233Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=19.6ms, median=18.4ms +2024-10-09T03:31:27.822543Z INFO fork_choice_control::block_processor: Validating block with slot: 8298 +2024-10-09T03:31:27.823629Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=19.3ms, median=18.4ms +2024-10-09T03:31:27.823944Z INFO fork_choice_control::block_processor: Validating block with slot: 8299 +2024-10-09T03:31:27.825029Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=19.1ms, median=18.4ms +2024-10-09T03:31:27.825269Z INFO fork_choice_control::block_processor: Validating block with slot: 8300 +2024-10-09T03:31:27.826943Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=18.9ms, median=18.3ms +2024-10-09T03:31:27.827251Z INFO fork_choice_control::block_processor: Validating block with slot: 8301 +2024-10-09T03:31:27.830270Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=18.7ms, median=18.3ms +2024-10-09T03:31:27.830527Z INFO fork_choice_control::block_processor: Validating block with slot: 8302 +2024-10-09T03:31:27.832550Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=18.4ms, median=18.3ms +2024-10-09T03:31:27.833353Z INFO fork_choice_control::block_processor: Validating block with slot: 8303 +2024-10-09T03:31:27.834983Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=18.2ms, median=18.3ms +2024-10-09T03:31:27.835286Z INFO fork_choice_control::block_processor: Validating block with slot: 8304 +2024-10-09T03:31:27.838316Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=18.0ms, median=18.0ms +2024-10-09T03:31:27.839094Z INFO fork_choice_control::block_processor: Validating block with slot: 8305 +2024-10-09T03:31:27.840251Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=17.8ms, median=18.0ms +2024-10-09T03:31:27.840294Z INFO fork_choice_control::block_processor: Validating block with slot: 8306 +2024-10-09T03:31:27.841697Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=17.6ms, median=17.9ms +2024-10-09T03:31:27.844544Z INFO database: database: /Users/mercynaps/.grandine/mainnet/beacon/sync with name sync +2024-10-09T03:31:27.848020Z INFO database: database: /Users/mercynaps/.grandine/mainnet/validator with name proposer-configs +2024-10-09T03:31:27.874160Z INFO discv5::service: Discv5 Service started mode=Ip4 +2024-10-09T03:31:27.886515Z INFO libp2p_swarm: local_peer_id=16Uiu2HAm1MjWUF4J3qsovL8Wzccfuzy28tTQ8dmA2sazksHeR3bs +2024-10-09T03:31:27.972528Z INFO fork_choice_control::block_processor: Validating block with slot: 8280 +2024-10-09T03:31:27.975911Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1324de906b06eb0d79e6b85722be1013e6ccdf225163f92b8a6235863dac913d, slot: 8280 +2024-10-09T03:31:27.985810Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8280 +2024-10-09T03:31:27.986078Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=8.7ms, median=3.2ms +2024-10-09T03:31:27.986151Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8280 +2024-10-09T03:31:28.006252Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=17.8ms, median=18.0ms +2024-10-09T03:31:28.006497Z INFO fork_choice_control::block_processor: Validating block with slot: 8281 +2024-10-09T03:31:28.008251Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x73da5c9df1892a0b2d4f4ee4e40da99988e08f4d5c20a94f2202233871f11b13, slot: 8281 +2024-10-09T03:31:28.011825Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8281 +2024-10-09T03:31:28.011886Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=8.6ms, median=3.3ms +2024-10-09T03:31:28.011898Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8281 +2024-10-09T03:31:28.058194Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=18.2ms, median=18.0ms +2024-10-09T03:31:28.058838Z INFO fork_choice_control::block_processor: Validating block with slot: 8282 +2024-10-09T03:31:28.059929Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x679bba8f42ca299c2b2681e9868e022a01d98bb588412140db9a827eca5aa262, slot: 8282 +2024-10-09T03:31:28.062830Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8282 +2024-10-09T03:31:28.062904Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=8.5ms, median=3.2ms +2024-10-09T03:31:28.062915Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8282 +2024-10-09T03:31:28.081503Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=18.3ms, median=18.3ms +2024-10-09T03:31:28.081829Z INFO fork_choice_control::block_processor: Validating block with slot: 8283 +2024-10-09T03:31:28.083138Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x54bfee6d0bfff60e334a1fb95e262ec8ee44000cd287a23fb5fa6ad3867fdb09, slot: 8283 +2024-10-09T03:31:28.086169Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8283 +2024-10-09T03:31:28.086219Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=8.4ms, median=3.2ms +2024-10-09T03:31:28.086228Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8283 +2024-10-09T03:31:28.105507Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=18.3ms, median=18.3ms +2024-10-09T03:31:28.105728Z INFO fork_choice_control::block_processor: Validating block with slot: 8284 +2024-10-09T03:31:28.106712Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbba96eca26ac18386a849937ab1a67dcf90d57de8bfb9d24ef192cf5ebfcd8db, slot: 8284 +2024-10-09T03:31:28.109154Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8284 +2024-10-09T03:31:28.109189Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=8.3ms, median=3.2ms +2024-10-09T03:31:28.109198Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8284 +2024-10-09T03:31:28.127010Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=18.4ms, median=18.3ms +2024-10-09T03:31:28.127306Z INFO fork_choice_control::block_processor: Validating block with slot: 8285 +2024-10-09T03:31:28.128625Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc53e2ed9a56a7a4fd63281442e03ef5fcfab7bf01a0dcf03960a7412cdb0a1ac, slot: 8285 +2024-10-09T03:31:28.131653Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8285 +2024-10-09T03:31:28.131733Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=8.3ms, median=3.2ms +2024-10-09T03:31:28.131743Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8285 +2024-10-09T03:31:28.150432Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=18.4ms, median=18.3ms +2024-10-09T03:31:28.150625Z INFO fork_choice_control::block_processor: Validating block with slot: 8286 +2024-10-09T03:31:28.152162Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x78e6307bbc7a3ba740c8ae1cbea6433681bb0493332e732bbb87b26c8e6bf96b, slot: 8286 +2024-10-09T03:31:28.155732Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8286 +2024-10-09T03:31:28.155780Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=8.2ms, median=3.2ms +2024-10-09T03:31:28.155789Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8286 +2024-10-09T03:31:28.175126Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=18.5ms, median=18.4ms +2024-10-09T03:31:28.175462Z INFO fork_choice_control::block_processor: Validating block with slot: 8287 +2024-10-09T03:31:28.179827Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5e9f9c41099b29608087ece01274903d1d8b019c8d98a8b911ef51a5d4ae3cc8, slot: 8287 +2024-10-09T03:31:28.188342Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8287 +2024-10-09T03:31:28.188404Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=8.2ms, median=3.2ms +2024-10-09T03:31:28.188414Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8287 +2024-10-09T03:31:28.207881Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=18.6ms, median=18.4ms +2024-10-09T03:31:28.208097Z INFO fork_choice_control::block_processor: Validating block with slot: 8288 +2024-10-09T03:31:28.209376Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa653dccffd8a63f5f6a67fe53d54647a12cd4e2d9818100b0a26e186e2506e81, slot: 8288 +2024-10-09T03:31:28.260063Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8288 +2024-10-09T03:31:28.260128Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=8.9ms, median=3.2ms +2024-10-09T03:31:28.260139Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8288 +2024-10-09T03:31:28.272066Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=19.1ms, median=18.4ms +2024-10-09T03:31:28.272214Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 8288) +2024-10-09T03:31:28.272317Z INFO fork_choice_control::block_processor: Validating block with slot: 8289 +2024-10-09T03:31:28.273546Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xcd239edd47c6c1d1dba6519aa6cc605c765e27f72200a6ac0a484186e4952c4f, slot: 8289 +2024-10-09T03:31:28.346134Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8289 +2024-10-09T03:31:28.346202Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=9.9ms, median=3.3ms +2024-10-09T03:31:28.346212Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8289 +2024-10-09T03:31:28.358682Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=19.9ms, median=18.4ms +2024-10-09T03:31:28.358915Z INFO fork_choice_control::block_processor: Validating block with slot: 8290 +2024-10-09T03:31:28.361017Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb18a32df79102a1bc7efb30433cb391b37e9085f79d9bfb0ea6abe8631d25a08, slot: 8290 +2024-10-09T03:31:28.365663Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8290 +2024-10-09T03:31:28.365750Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=9.8ms, median=3.3ms +2024-10-09T03:31:28.365760Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8290 +2024-10-09T03:31:28.377902Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=19.9ms, median=18.6ms +2024-10-09T03:31:28.378239Z INFO fork_choice_control::block_processor: Validating block with slot: 8291 +2024-10-09T03:31:28.379987Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd05940f827d8da370df5954f73df707c05bed6050c2c0a3e0ec0e3d91c3a66c0, slot: 8291 +2024-10-09T03:31:28.383800Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8291 +2024-10-09T03:31:28.383867Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=9.7ms, median=3.3ms +2024-10-09T03:31:28.383877Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8291 +2024-10-09T03:31:28.395488Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=19.8ms, median=18.4ms +2024-10-09T03:31:28.395722Z INFO fork_choice_control::block_processor: Validating block with slot: 8292 +2024-10-09T03:31:28.396958Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6b68d6c929e6d6ab1b327309a3aace8ce903c6e9196b9075154423b00315f31b, slot: 8292 +2024-10-09T03:31:28.400083Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8292 +2024-10-09T03:31:28.400159Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=9.6ms, median=3.3ms +2024-10-09T03:31:28.400169Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8292 +2024-10-09T03:31:28.412222Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=19.8ms, median=18.4ms +2024-10-09T03:31:28.412451Z INFO fork_choice_control::block_processor: Validating block with slot: 8293 +2024-10-09T03:31:28.414407Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x969f480d825fa4953fa7dc6c2cb5ecddc19148727013e3d438765e0150a2e577, slot: 8293 +2024-10-09T03:31:28.418762Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8293 +2024-10-09T03:31:28.418826Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=9.5ms, median=3.3ms +2024-10-09T03:31:28.418837Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8293 +2024-10-09T03:31:28.432029Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=19.8ms, median=18.4ms +2024-10-09T03:31:28.434255Z INFO fork_choice_control::block_processor: Validating block with slot: 8294 +2024-10-09T03:31:28.435371Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa7fc671c08c74f6823be58c15c823eb4f0e92cde6a514c5b51e578bdf558233f, slot: 8294 +2024-10-09T03:31:28.438152Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8294 +2024-10-09T03:31:28.438209Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=9.4ms, median=3.3ms +2024-10-09T03:31:28.438220Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8294 +2024-10-09T03:31:28.452268Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=19.8ms, median=18.4ms +2024-10-09T03:31:28.452515Z INFO fork_choice_control::block_processor: Validating block with slot: 8295 +2024-10-09T03:31:28.453622Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa3931c6ea9572c3ba56681024b748be6b36bd9886fa9285eece72ac59fa8d41c, slot: 8295 +2024-10-09T03:31:28.456794Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8295 +2024-10-09T03:31:28.456845Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=9.3ms, median=3.3ms +2024-10-09T03:31:28.456854Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8295 +2024-10-09T03:31:28.470657Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=19.8ms, median=18.4ms +2024-10-09T03:31:28.471460Z INFO fork_choice_control::block_processor: Validating block with slot: 8296 +2024-10-09T03:31:28.473013Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xe57feccb3c51dbfc2afed6bb0ec071eb2079c86e12715dd09e853542f1bd3006, slot: 8296 +2024-10-09T03:31:28.476630Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8296 +2024-10-09T03:31:28.476685Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=9.2ms, median=3.3ms +2024-10-09T03:31:28.476696Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8296 +2024-10-09T03:31:28.491295Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=19.8ms, median=18.4ms +2024-10-09T03:31:28.491610Z INFO fork_choice_control::block_processor: Validating block with slot: 8297 +2024-10-09T03:31:28.492831Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf320c02d8be41904ad74fc87055b48ff209568a407e0495c1f4574525007e7af, slot: 8297 +2024-10-09T03:31:28.495788Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8297 +2024-10-09T03:31:28.495836Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=9.2ms, median=3.3ms +2024-10-09T03:31:28.495850Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8297 +2024-10-09T03:31:28.510315Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=19.8ms, median=18.4ms +2024-10-09T03:31:28.512167Z INFO fork_choice_control::block_processor: Validating block with slot: 8298 +2024-10-09T03:31:28.513400Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x004200ab1ae32747e69f7a5bce378cb235021ac347d950e87ec1de1fc974d7e8, slot: 8298 +2024-10-09T03:31:28.516275Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8298 +2024-10-09T03:31:28.516338Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=9.1ms, median=3.2ms +2024-10-09T03:31:28.516348Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8298 +2024-10-09T03:31:28.530687Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=19.7ms, median=18.4ms +2024-10-09T03:31:28.530968Z INFO fork_choice_control::block_processor: Validating block with slot: 8299 +2024-10-09T03:31:28.532294Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd0d9a10007b29c2c567af72f0e86b200f1ee674426c537be3761c8cf5df3832b, slot: 8299 +2024-10-09T03:31:28.535224Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8299 +2024-10-09T03:31:28.535283Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=9.0ms, median=3.2ms +2024-10-09T03:31:28.535293Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8299 +2024-10-09T03:31:28.549618Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=18.1ms, median=18.4ms +2024-10-09T03:31:28.549852Z INFO fork_choice_control::block_processor: Validating block with slot: 8300 +2024-10-09T03:31:28.551546Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf4a24393766fe8fc32cdb14463c69cfe18fdfbd343a482d1d46a0bfeb81c2b3a, slot: 8300 +2024-10-09T03:31:28.555296Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8300 +2024-10-09T03:31:28.555358Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=8.9ms, median=3.2ms +2024-10-09T03:31:28.555368Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8300 +2024-10-09T03:31:28.569886Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=18.0ms, median=18.4ms +2024-10-09T03:31:28.570141Z INFO fork_choice_control::block_processor: Validating block with slot: 8301 +2024-10-09T03:31:28.573146Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc5e1975d1e34e21a747bad8879b18ebef20d45a87443343cf847fda446cbe18d, slot: 8301 +2024-10-09T03:31:28.579425Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8301 +2024-10-09T03:31:28.579493Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=8.9ms, median=3.3ms +2024-10-09T03:31:28.579503Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8301 +2024-10-09T03:31:28.594573Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=17.9ms, median=18.6ms +2024-10-09T03:31:28.594815Z INFO fork_choice_control::block_processor: Validating block with slot: 8302 +2024-10-09T03:31:28.595773Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xbbd058af9fe0eadeb5f439ad53bf309110974228046dbbd6b8f95bc2e0851410, slot: 8302 +2024-10-09T03:31:28.598360Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8302 +2024-10-09T03:31:28.598433Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=8.8ms, median=3.2ms +2024-10-09T03:31:28.598443Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8302 +2024-10-09T03:31:28.613563Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=17.7ms, median=18.6ms +2024-10-09T03:31:28.614055Z INFO fork_choice_control::block_processor: Validating block with slot: 8303 +2024-10-09T03:31:28.615217Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x52c2b02d30e65fce010ed77eb2c42fb8fd5f93ece6d98f37df4c4ae1c3aa9c54, slot: 8303 +2024-10-09T03:31:28.618020Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8303 +2024-10-09T03:31:28.618080Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=8.7ms, median=3.2ms +2024-10-09T03:31:28.618089Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8303 +2024-10-09T03:31:28.633428Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=17.6ms, median=18.6ms +2024-10-09T03:31:28.633664Z INFO fork_choice_control::block_processor: Validating block with slot: 8304 +2024-10-09T03:31:28.634862Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf4f992655913857554ec95c6eb37e479b8a32984148210cf7904711e262ad516, slot: 8304 +2024-10-09T03:31:28.637707Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8304 +2024-10-09T03:31:28.637750Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=8.7ms, median=3.2ms +2024-10-09T03:31:28.637759Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8304 +2024-10-09T03:31:28.656419Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=17.5ms, median=18.6ms +2024-10-09T03:31:28.657201Z INFO fork_choice_control::block_processor: Validating block with slot: 8305 +2024-10-09T03:31:28.659151Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xc492e43f5360f9bc44cd913fac9be0acb48f4acc3e94ec1cbf05258e39010903, slot: 8305 +2024-10-09T03:31:28.661818Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8305 +2024-10-09T03:31:28.661885Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=8.6ms, median=3.2ms +2024-10-09T03:31:28.661895Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8305 +2024-10-09T03:31:28.683763Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=17.4ms, median=18.6ms +2024-10-09T03:31:28.684003Z INFO fork_choice_control::block_processor: Validating block with slot: 8306 +2024-10-09T03:31:28.685407Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf67b70dbf06de70ea695aa1def9bd39618862818b80ec41e3341d24cc700eb94, slot: 8306 +2024-10-09T03:31:28.688575Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8306 +2024-10-09T03:31:28.688644Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=149.0ms, avg=8.5ms, median=3.2ms +2024-10-09T03:31:28.688653Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8306 +2024-10-09T03:31:28.705441Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=17.2ms, median=18.7ms +2024-10-09T03:31:37.928205Z INFO http_api::task: HTTP server listening on 127.0.0.1:5052 +2024-10-09T03:32:03.040427Z WARN discv5::service: FINDNODE request failed with partial results node_id=0x77dd..aca2 addr=71.8.172.65:12000 error=Timeout received=15 expected=3 +2024-10-09T03:32:16.242066Z INFO fork_choice_control::block_processor: Validating block with slot: 8225 +2024-10-09T03:32:16.245886Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=17.0ms, median=18.7ms +2024-10-09T03:32:16.256997Z INFO fork_choice_control::block_processor: Validating block with slot: 8226 +2024-10-09T03:32:16.261244Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=16.7ms, median=18.7ms +2024-10-09T03:32:16.269694Z INFO fork_choice_control::block_processor: Validating block with slot: 8227 +2024-10-09T03:32:16.271626Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=16.3ms, median=18.6ms +2024-10-09T03:32:16.281840Z INFO fork_choice_control::block_processor: Validating block with slot: 8228 +2024-10-09T03:32:16.281795Z INFO fork_choice_control::block_processor: Validating block with slot: 8229 +2024-10-09T03:32:16.283670Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=16.0ms, median=18.6ms +2024-10-09T03:32:16.284194Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=15.7ms, median=18.6ms +2024-10-09T03:32:16.288666Z INFO fork_choice_control::block_processor: Validating block with slot: 8230 +2024-10-09T03:32:16.289954Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=15.4ms, median=18.6ms +2024-10-09T03:32:16.304087Z INFO fork_choice_control::block_processor: Validating block with slot: 8231 +2024-10-09T03:32:16.306261Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=15.2ms, median=18.6ms +2024-10-09T03:32:16.311040Z INFO fork_choice_control::block_processor: Validating block with slot: 8232 +2024-10-09T03:32:16.311092Z INFO fork_choice_control::block_processor: Validating block with slot: 8233 +2024-10-09T03:32:16.312998Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=14.9ms, median=18.6ms +2024-10-09T03:32:16.314108Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=14.5ms, median=18.6ms +2024-10-09T03:32:16.316620Z INFO fork_choice_control::block_processor: Validating block with slot: 8234 +2024-10-09T03:32:16.317887Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=14.2ms, median=18.6ms +2024-10-09T03:32:16.344086Z INFO fork_choice_control::block_processor: Validating block with slot: 8235 +2024-10-09T03:32:16.347059Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=13.9ms, median=18.4ms +2024-10-09T03:32:16.395089Z INFO fork_choice_control::block_processor: Validating block with slot: 8236 +2024-10-09T03:32:16.397458Z INFO fork_choice_control::block_processor: Validating block with slot: 8237 +2024-10-09T03:32:16.398776Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=13.6ms, median=18.4ms +2024-10-09T03:32:16.399067Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=13.3ms, median=18.4ms +2024-10-09T03:32:16.477730Z INFO fork_choice_control::block_processor: Validating block with slot: 8242 +2024-10-09T03:32:16.477729Z INFO fork_choice_control::block_processor: Validating block with slot: 8238 +2024-10-09T03:32:16.477795Z INFO fork_choice_control::block_processor: Validating block with slot: 8239 +2024-10-09T03:32:16.477869Z INFO fork_choice_control::block_processor: Validating block with slot: 8240 +2024-10-09T03:32:16.478836Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=13.0ms, median=18.3ms +2024-10-09T03:32:16.479196Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=12.7ms, median=18.1ms +2024-10-09T03:32:16.479437Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=12.4ms, median=18.0ms +2024-10-09T03:32:16.479511Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=12.0ms, median=18.0ms +2024-10-09T03:32:16.483476Z INFO fork_choice_control::block_processor: Validating block with slot: 8243 +2024-10-09T03:32:16.484732Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=11.7ms, median=17.9ms +2024-10-09T03:32:16.500976Z INFO fork_choice_control::block_processor: Validating block with slot: 8245 +2024-10-09T03:32:16.500980Z INFO fork_choice_control::block_processor: Validating block with slot: 8244 +2024-10-09T03:32:16.502054Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=11.4ms, median=17.8ms +2024-10-09T03:32:16.502168Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=11.2ms, median=17.3ms +2024-10-09T03:32:16.514680Z INFO fork_choice_control::block_processor: Validating block with slot: 8246 +2024-10-09T03:32:16.515987Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=10.9ms, median=16.4ms +2024-10-09T03:32:16.523009Z INFO fork_choice_control::block_processor: Validating block with slot: 8247 +2024-10-09T03:32:16.524659Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=10.6ms, median=16.2ms +2024-10-09T03:32:16.530834Z INFO fork_choice_control::block_processor: Validating block with slot: 8248 +2024-10-09T03:32:16.532846Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=10.1ms, median=16.1ms +2024-10-09T03:32:16.568898Z INFO fork_choice_control::block_processor: Validating block with slot: 8249 +2024-10-09T03:32:16.568960Z INFO fork_choice_control::block_processor: Validating block with slot: 8250 +2024-10-09T03:32:16.568969Z INFO fork_choice_control::block_processor: Validating block with slot: 8251 +2024-10-09T03:32:16.570344Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=9.3ms, median=4.2ms +2024-10-09T03:32:16.571383Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=9.2ms, median=4.0ms +2024-10-09T03:32:16.571807Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=9.0ms, median=3.9ms +2024-10-09T03:32:16.573042Z INFO fork_choice_control::block_processor: Validating block with slot: 8252 +2024-10-09T03:32:16.573048Z INFO fork_choice_control::block_processor: Validating block with slot: 8253 +2024-10-09T03:32:16.574256Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=8.8ms, median=3.4ms +2024-10-09T03:32:16.574395Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=8.6ms, median=3.3ms +2024-10-09T03:32:16.575499Z INFO fork_choice_control::block_processor: Validating block with slot: 8254 +2024-10-09T03:32:16.577610Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=8.4ms, median=3.0ms +2024-10-09T03:32:16.596547Z INFO fork_choice_control::block_processor: Validating block with slot: 8255 +2024-10-09T03:32:16.596551Z INFO fork_choice_control::block_processor: Validating block with slot: 8256 +2024-10-09T03:32:16.598211Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=8.2ms, median=2.9ms +2024-10-09T03:32:16.598527Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=8.0ms, median=2.9ms +2024-10-09T03:32:16.622843Z INFO fork_choice_control::block_processor: Validating block with slot: 8257 +2024-10-09T03:32:16.622852Z INFO fork_choice_control::block_processor: Validating block with slot: 8258 +2024-10-09T03:32:16.623037Z INFO fork_choice_control::block_processor: Validating block with slot: 8259 +2024-10-09T03:32:16.624785Z INFO fork_choice_control::block_processor: Validating block with slot: 8260 +2024-10-09T03:32:16.624841Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=7.8ms, median=2.8ms +2024-10-09T03:32:16.624930Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=7.7ms, median=2.8ms +2024-10-09T03:32:16.625429Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=7.5ms, median=2.7ms +2024-10-09T03:32:16.625840Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=7.3ms, median=2.6ms +2024-10-09T03:32:16.635863Z INFO fork_choice_control::block_processor: Validating block with slot: 8262 +2024-10-09T03:32:16.635861Z INFO fork_choice_control::block_processor: Validating block with slot: 8261 +2024-10-09T03:32:16.637142Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=7.1ms, median=2.5ms +2024-10-09T03:32:16.638033Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=7.0ms, median=2.3ms +2024-10-09T03:32:16.641558Z INFO fork_choice_control::block_processor: Validating block with slot: 8263 +2024-10-09T03:32:16.642816Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=6.8ms, median=2.2ms +2024-10-09T03:32:16.651675Z INFO fork_choice_control::block_processor: Validating block with slot: 8265 +2024-10-09T03:32:16.651677Z INFO fork_choice_control::block_processor: Validating block with slot: 8264 +2024-10-09T03:32:16.652824Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=6.6ms, median=2.1ms +2024-10-09T03:32:16.653074Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=6.5ms, median=2.0ms +2024-10-09T03:32:16.658487Z INFO fork_choice_control::block_processor: Validating block with slot: 8266 +2024-10-09T03:32:16.659858Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=6.3ms, median=2.0ms +2024-10-09T03:32:16.697400Z INFO fork_choice_control::block_processor: Validating block with slot: 8267 +2024-10-09T03:32:16.699034Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=6.1ms, median=1.9ms +2024-10-09T03:32:16.702750Z INFO fork_choice_control::block_processor: Validating block with slot: 8269 +2024-10-09T03:32:16.702752Z INFO fork_choice_control::block_processor: Validating block with slot: 8268 +2024-10-09T03:32:16.704325Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=6.0ms, median=1.9ms +2024-10-09T03:32:16.704394Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=5.8ms, median=1.9ms +2024-10-09T03:32:16.712659Z INFO fork_choice_control::block_processor: Validating block with slot: 8270 +2024-10-09T03:32:16.713779Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=5.7ms, median=1.9ms +2024-10-09T03:32:16.719674Z INFO fork_choice_control::block_processor: Validating block with slot: 8271 +2024-10-09T03:32:16.719680Z INFO fork_choice_control::block_processor: Validating block with slot: 8272 +2024-10-09T03:32:16.720876Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=5.5ms, median=1.9ms +2024-10-09T03:32:16.721937Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=5.5ms, median=1.9ms +2024-10-09T03:32:16.735414Z INFO fork_choice_control::block_processor: Validating block with slot: 8273 +2024-10-09T03:32:16.736882Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=5.4ms, median=1.9ms +2024-10-09T03:32:16.737844Z INFO fork_choice_control::block_processor: Validating block with slot: 8274 +2024-10-09T03:32:16.739198Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=5.4ms, median=1.9ms +2024-10-09T03:32:16.746194Z INFO fork_choice_control::block_processor: Validating block with slot: 8275 +2024-10-09T03:32:16.746195Z INFO fork_choice_control::block_processor: Validating block with slot: 8276 +2024-10-09T03:32:16.747287Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=5.4ms, median=1.9ms +2024-10-09T03:32:16.747423Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=5.3ms, median=1.9ms +2024-10-09T03:32:16.751022Z INFO fork_choice_control::block_processor: Validating block with slot: 8277 +2024-10-09T03:32:16.752080Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=5.3ms, median=1.9ms +2024-10-09T03:32:16.756937Z INFO fork_choice_control::block_processor: Validating block with slot: 8278 +2024-10-09T03:32:16.758432Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=5.3ms, median=1.9ms +2024-10-09T03:32:16.765318Z INFO fork_choice_control::block_processor: Validating block with slot: 8279 +2024-10-09T03:32:16.767898Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=5.2ms, median=1.9ms +2024-10-09T03:32:16.772994Z INFO fork_choice_control::block_processor: Validating block with slot: 8280 +2024-10-09T03:32:16.773003Z INFO fork_choice_control::block_processor: Validating block with slot: 8281 +2024-10-09T03:32:16.774470Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=5.2ms, median=1.9ms +2024-10-09T03:32:16.774534Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=5.2ms, median=1.9ms +2024-10-09T03:32:16.787451Z INFO fork_choice_control::block_processor: Validating block with slot: 8282 +2024-10-09T03:32:16.787453Z INFO fork_choice_control::block_processor: Validating block with slot: 8283 +2024-10-09T03:32:16.788527Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=5.1ms, median=1.9ms +2024-10-09T03:32:16.788724Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=5.1ms, median=1.9ms +2024-10-09T03:32:16.791907Z INFO fork_choice_control::block_processor: Validating block with slot: 8284 +2024-10-09T03:32:16.792975Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=5.1ms, median=1.9ms +2024-10-09T03:32:16.798999Z INFO fork_choice_control::block_processor: Validating block with slot: 8286 +2024-10-09T03:32:16.799002Z INFO fork_choice_control::block_processor: Validating block with slot: 8285 +2024-10-09T03:32:16.800235Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=5.0ms, median=1.9ms +2024-10-09T03:32:16.800669Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=5.0ms, median=1.9ms +2024-10-09T03:32:16.834156Z INFO fork_choice_control::block_processor: Validating block with slot: 8288 +2024-10-09T03:32:16.834160Z INFO fork_choice_control::block_processor: Validating block with slot: 8287 +2024-10-09T03:32:16.835420Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=5.0ms, median=1.9ms +2024-10-09T03:32:16.837708Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=5.0ms, median=1.9ms +2024-10-09T03:32:21.715942Z INFO fork_choice_control::block_processor: Validating block with slot: 8291 +2024-10-09T03:32:21.715937Z INFO fork_choice_control::block_processor: Validating block with slot: 8289 +2024-10-09T03:32:21.715962Z INFO fork_choice_control::block_processor: Validating block with slot: 8292 +2024-10-09T03:32:21.716007Z INFO fork_choice_control::block_processor: Validating block with slot: 8290 +2024-10-09T03:32:21.716923Z INFO fork_choice_control::block_processor: Validating block with slot: 8293 +2024-10-09T03:32:21.717152Z INFO fork_choice_control::block_processor: Validating block with slot: 8294 +2024-10-09T03:32:21.717237Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=4.9ms, median=1.9ms +2024-10-09T03:32:21.717264Z INFO fork_choice_control::block_processor: Validating block with slot: 8296 +2024-10-09T03:32:21.717282Z INFO fork_choice_control::block_processor: Validating block with slot: 8295 +2024-10-09T03:32:21.717295Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=4.9ms, median=1.9ms +2024-10-09T03:32:21.717803Z INFO fork_choice_control::block_processor: Validating block with slot: 8297 +2024-10-09T03:32:21.718378Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=4.9ms, median=1.9ms +2024-10-09T03:32:21.718442Z INFO fork_choice_control::block_processor: Validating block with slot: 8299 +2024-10-09T03:32:21.718518Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=4.8ms, median=1.9ms +2024-10-09T03:32:21.718531Z INFO fork_choice_control::block_processor: Validating block with slot: 8300 +2024-10-09T03:32:21.718810Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=4.8ms, median=1.9ms +2024-10-09T03:32:21.718822Z INFO fork_choice_control::block_processor: Validating block with slot: 8301 +2024-10-09T03:32:21.719683Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=4.8ms, median=1.9ms +2024-10-09T03:32:21.719803Z INFO fork_choice_control::block_processor: Validating block with slot: 8302 +2024-10-09T03:32:21.720096Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=4.8ms, median=1.9ms +2024-10-09T03:32:21.720111Z INFO fork_choice_control::block_processor: Validating block with slot: 8303 +2024-10-09T03:32:21.720196Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=4.7ms, median=1.8ms +2024-10-09T03:32:21.720272Z INFO fork_choice_control::block_processor: Validating block with slot: 8298 +2024-10-09T03:32:21.720434Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=4.7ms, median=1.9ms +2024-10-09T03:32:21.720608Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=4.7ms, median=1.9ms +2024-10-09T03:32:21.721172Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=4.5ms, median=1.9ms +2024-10-09T03:32:21.721216Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=4.2ms, median=1.9ms +2024-10-09T03:32:21.721376Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=4.1ms, median=1.9ms +2024-10-09T03:32:21.721720Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=3.9ms, median=1.9ms +2024-10-09T03:32:21.721764Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=3.8ms, median=1.9ms +2024-10-09T03:32:21.723435Z INFO fork_choice_control::block_processor: Validating block with slot: 8304 +2024-10-09T03:32:21.724611Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=3.7ms, median=1.8ms +2024-10-09T03:32:21.725348Z INFO fork_choice_control::block_processor: Validating block with slot: 8305 +2024-10-09T03:32:21.726801Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=3.5ms, median=1.8ms +2024-10-09T03:32:21.730168Z INFO fork_choice_control::block_processor: Validating block with slot: 8306 +2024-10-09T03:32:21.730209Z INFO fork_choice_control::block_processor: Validating block with slot: 8308 +2024-10-09T03:32:21.731411Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=3.3ms, median=1.7ms +2024-10-09T03:32:21.732204Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xec7d2d8af48f2970fdd3efff4123444200c55a922b7fee362a83797c30538465, slot: 8308 +2024-10-09T03:32:21.734533Z INFO fork_choice_control::block_processor: Validating block with slot: 8309 +2024-10-09T03:32:21.734541Z INFO fork_choice_control::block_processor: Validating block with slot: 8310 +2024-10-09T03:32:21.735528Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=3.0ms, median=1.7ms +2024-10-09T03:32:21.735790Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=2.5ms, median=1.7ms +2024-10-09T03:32:21.743675Z INFO fork_choice_control::block_processor: Validating block with slot: 8311 +2024-10-09T03:32:21.743727Z INFO fork_choice_control::block_processor: Validating block with slot: 8312 +2024-10-09T03:32:21.745068Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=2.4ms, median=1.6ms +2024-10-09T03:32:21.747387Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=2.3ms, median=1.6ms +2024-10-09T03:32:21.752960Z INFO fork_choice_control::block_processor: Validating block with slot: 8315 +2024-10-09T03:32:21.752965Z INFO fork_choice_control::block_processor: Validating block with slot: 8313 +2024-10-09T03:32:21.752994Z INFO fork_choice_control::block_processor: Validating block with slot: 8316 +2024-10-09T03:32:21.753033Z INFO fork_choice_control::block_processor: Validating block with slot: 8317 +2024-10-09T03:32:21.753158Z INFO fork_choice_control::block_processor: Validating block with slot: 8314 +2024-10-09T03:32:21.753950Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=2.3ms, median=1.6ms +2024-10-09T03:32:21.753968Z INFO fork_choice_control::block_processor: Validating block with slot: 8318 +2024-10-09T03:32:21.754074Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=2.1ms, median=1.6ms +2024-10-09T03:32:21.755068Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=2.1ms, median=1.6ms +2024-10-09T03:32:21.755264Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=2.0ms, median=1.6ms +2024-10-09T03:32:21.755591Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=1.9ms, median=1.6ms +2024-10-09T03:32:21.756115Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=1.8ms, median=1.6ms +2024-10-09T03:32:21.757295Z INFO fork_choice_control::block_processor: Validating block with slot: 8319 +2024-10-09T03:32:21.760364Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=1.7ms, median=1.6ms +2024-10-09T03:32:21.779286Z INFO fork_choice_control::block_processor: Validating block with slot: 8320 +2024-10-09T03:32:21.779290Z INFO fork_choice_control::block_processor: Validating block with slot: 8321 +2024-10-09T03:32:21.779304Z INFO fork_choice_control::block_processor: Validating block with slot: 8323 +2024-10-09T03:32:21.779337Z INFO fork_choice_control::block_processor: Validating block with slot: 8322 +2024-10-09T03:32:21.779357Z INFO fork_choice_control::block_processor: Validating block with slot: 8324 +2024-10-09T03:32:21.779638Z INFO fork_choice_control::block_processor: Validating block with slot: 8325 +2024-10-09T03:32:21.780300Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=1.6ms, median=1.6ms +2024-10-09T03:32:21.780319Z INFO fork_choice_control::block_processor: Validating block with slot: 8326 +2024-10-09T03:32:21.780684Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=1.5ms, median=1.5ms +2024-10-09T03:32:21.780695Z INFO fork_choice_control::block_processor: Validating block with slot: 8327 +2024-10-09T03:32:21.781282Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=1.4ms, median=1.5ms +2024-10-09T03:32:21.781659Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=1.3ms, median=1.5ms +2024-10-09T03:32:21.781831Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=1.2ms, median=1.5ms +2024-10-09T03:32:21.781936Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=1.1ms, median=1.5ms +2024-10-09T03:32:21.783474Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=1.0ms, median=1.5ms +2024-10-09T03:32:21.783918Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=0.9ms, median=1.5ms +2024-10-09T03:32:21.799866Z INFO fork_choice_control::block_processor: Validating block with slot: 8328 +2024-10-09T03:32:21.800067Z INFO fork_choice_control::block_processor: Validating block with slot: 8329 +2024-10-09T03:32:21.800371Z INFO fork_choice_control::block_processor: Validating block with slot: 8330 +2024-10-09T03:32:21.800837Z INFO fork_choice_control::block_processor: Validating block with slot: 8332 +2024-10-09T03:32:21.800843Z INFO fork_choice_control::block_processor: Validating block with slot: 8333 +2024-10-09T03:32:21.801478Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=0.9ms, median=1.5ms +2024-10-09T03:32:21.801508Z INFO fork_choice_control::block_processor: Validating block with slot: 8334 +2024-10-09T03:32:21.805496Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=0.8ms, median=1.5ms +2024-10-09T03:32:21.805605Z INFO fork_choice_control::block_processor: Validating block with slot: 8336 +2024-10-09T03:32:21.805930Z INFO fork_choice_control::block_processor: Validating block with slot: 8337 +2024-10-09T03:32:21.808910Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=0.9ms, median=1.5ms +2024-10-09T03:32:21.810232Z INFO fork_choice_control::block_processor: Validating block with slot: 8335 +2024-10-09T03:32:21.810532Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=0.9ms, median=1.5ms +2024-10-09T03:32:21.811291Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=0.9ms, median=1.5ms +2024-10-09T03:32:21.811351Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=0.9ms, median=1.5ms +2024-10-09T03:32:21.811714Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=0.9ms, median=1.5ms +2024-10-09T03:32:21.811760Z INFO fork_choice_control::block_processor: Validating block with slot: 8338 +2024-10-09T03:32:21.814209Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=0.9ms, median=1.5ms +2024-10-09T03:32:21.815012Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=0.9ms, median=1.5ms +2024-10-09T03:32:21.815253Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=162.4ms, avg=0.9ms, median=1.5ms +2024-10-09T03:32:21.886796Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8308 +2024-10-09T03:32:21.886882Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=154.6ms, avg=10.3ms, median=3.2ms +2024-10-09T03:32:21.886893Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8308 +2024-10-09T03:32:21.903018Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=1.7ms, median=1.5ms +2024-10-09T03:32:21.903982Z INFO fork_choice_control::block_processor: Validating block with slot: 8309 +2024-10-09T03:32:21.905152Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x555e981082b9466293a52edc720c2e579fbca11dda1eafbfc0ddf452ddc9b0b5, slot: 8309 +2024-10-09T03:32:21.926392Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8309 +2024-10-09T03:32:21.926469Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=154.6ms, avg=10.4ms, median=3.2ms +2024-10-09T03:32:21.926479Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8309 +2024-10-09T03:32:21.942280Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=1.9ms, median=1.5ms +2024-10-09T03:32:21.942554Z INFO fork_choice_control::block_processor: Validating block with slot: 8310 +2024-10-09T03:32:21.943842Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xeec7b9083c7d02ebad9e397cc25dbb68057818a778e5bba9ed36515d45d0ace9, slot: 8310 +2024-10-09T03:32:21.968503Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8310 +2024-10-09T03:32:21.968572Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=154.6ms, avg=10.6ms, median=3.2ms +2024-10-09T03:32:21.968582Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8310 +2024-10-09T03:32:21.984603Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=2.0ms, median=1.5ms +2024-10-09T03:32:21.984950Z INFO fork_choice_control::block_processor: Validating block with slot: 8311 +2024-10-09T03:32:21.988522Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb3b20932e2117c3b42002e3baab92726ea558cfbfc3d19c84f156ef19665568b, slot: 8311 +2024-10-09T03:32:22.014942Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8311 +2024-10-09T03:32:22.015017Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=154.6ms, avg=10.8ms, median=3.2ms +2024-10-09T03:32:22.015026Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8311 +2024-10-09T03:32:22.032134Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=2.2ms, median=1.5ms +2024-10-09T03:32:22.039210Z INFO fork_choice_control::block_processor: Validating block with slot: 8312 +2024-10-09T03:32:22.039213Z INFO fork_choice_control::mutator: new finalized checkpoint (epoch: 258, root: 0x80c69434df5ee50098c7c6dfe936843f774fff027a73db486dbdd6bdc42319ff, head slot: 8311, head root: 0xb3b20932e2117c3b42002e3baab92726ea558cfbfc3d19c84f156ef19665568b) +2024-10-09T03:32:22.040327Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x9eadf4aac7b0cd080437ec4e8ce9cebaae4f5067771bda5458ec0b5286d6d2f8, slot: 8312 +2024-10-09T03:32:22.060390Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8312 +2024-10-09T03:32:22.060474Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=154.6ms, avg=10.9ms, median=3.3ms +2024-10-09T03:32:22.060485Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8312 +2024-10-09T03:32:22.077628Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=2.4ms, median=1.6ms +2024-10-09T03:32:22.078022Z INFO fork_choice_control::block_processor: Validating block with slot: 8313 +2024-10-09T03:32:22.079140Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa63b9d044144708571f8b46889031e787fa8122dd5c1748eaebd2f3a29b30846, slot: 8313 +2024-10-09T03:32:22.098301Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8313 +2024-10-09T03:32:22.098368Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=154.6ms, avg=11.0ms, median=3.3ms +2024-10-09T03:32:22.098377Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8313 +2024-10-09T03:32:22.116117Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=2.5ms, median=1.6ms +2024-10-09T03:32:22.116351Z INFO fork_choice_control::block_processor: Validating block with slot: 8314 +2024-10-09T03:32:22.117739Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5990d330b076f2fd64298821f68323932f0795fd7898bcb38700118dcef84b74, slot: 8314 +2024-10-09T03:32:22.139064Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8314 +2024-10-09T03:32:22.139136Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=154.6ms, avg=11.1ms, median=3.3ms +2024-10-09T03:32:22.139146Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8314 +2024-10-09T03:32:22.156815Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=2.7ms, median=1.6ms +2024-10-09T03:32:22.157097Z INFO fork_choice_control::block_processor: Validating block with slot: 8315 +2024-10-09T03:32:22.158098Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x194bab910ae7cf1ee1ff4af542eb76503e6d579505bf14cc1e8e15e118b27caf, slot: 8315 +2024-10-09T03:32:22.180022Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8315 +2024-10-09T03:32:22.180092Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=154.6ms, avg=11.2ms, median=3.3ms +2024-10-09T03:32:22.180101Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8315 +2024-10-09T03:32:22.188997Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 8256 +2024-10-09T03:32:22.198250Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=2.8ms, median=1.6ms +2024-10-09T03:32:22.198539Z INFO fork_choice_control::block_processor: Validating block with slot: 8316 +2024-10-09T03:32:22.199800Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xb4fa838b27b544d0902d58705e39a254e0767c529358a64ba0fefb32dbde1080, slot: 8316 +2024-10-09T03:32:22.220924Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8316 +2024-10-09T03:32:22.221000Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=154.6ms, avg=11.3ms, median=3.3ms +2024-10-09T03:32:22.221011Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8316 +2024-10-09T03:32:22.239409Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=3.0ms, median=1.6ms +2024-10-09T03:32:22.239689Z INFO fork_choice_control::block_processor: Validating block with slot: 8317 +2024-10-09T03:32:22.241064Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xfc04b6eb46070b04195dba6193e4c053ede5677815f173ef4ed210b7496839f0, slot: 8317 +2024-10-09T03:32:22.263008Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8317 +2024-10-09T03:32:22.263078Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=154.6ms, avg=11.5ms, median=3.3ms +2024-10-09T03:32:22.263092Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8317 +2024-10-09T03:32:22.281028Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=3.2ms, median=1.6ms +2024-10-09T03:32:22.281376Z INFO fork_choice_control::block_processor: Validating block with slot: 8318 +2024-10-09T03:32:22.282638Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6447052d054cfeb75b6141f456c55261027b6a70c872d8c8e638457d49697424, slot: 8318 +2024-10-09T03:32:22.303504Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8318 +2024-10-09T03:32:22.303569Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=154.6ms, avg=11.6ms, median=3.4ms +2024-10-09T03:32:22.303578Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8318 +2024-10-09T03:32:22.321994Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=3.3ms, median=1.6ms +2024-10-09T03:32:22.322294Z INFO fork_choice_control::block_processor: Validating block with slot: 8319 +2024-10-09T03:32:22.325237Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6d4acb61c969d5061e9008e57744ca5cdf901049c3a16d48cb909316bc677736, slot: 8319 +2024-10-09T03:32:22.357069Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8319 +2024-10-09T03:32:22.357135Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=154.6ms, avg=11.8ms, median=3.4ms +2024-10-09T03:32:22.357146Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8319 +2024-10-09T03:32:22.376333Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=3.5ms, median=1.6ms +2024-10-09T03:32:22.376780Z INFO fork_choice_control::block_processor: Validating block with slot: 8320 +2024-10-09T03:32:22.378511Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xd9547cb2c36d39c070f098eb3fa2f08c7dbc0fe3d2f58877445106a790b8a09f, slot: 8320 +2024-10-09T03:32:22.488983Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8320 +2024-10-09T03:32:22.489067Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=154.6ms, avg=12.8ms, median=3.4ms +2024-10-09T03:32:22.489078Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8320 +2024-10-09T03:32:22.500866Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=4.1ms, median=1.6ms +2024-10-09T03:32:22.501023Z INFO fork_choice_control::mutator: unloading old beacon states (head slot: 8320) +2024-10-09T03:32:22.501232Z INFO fork_choice_control::block_processor: Validating block with slot: 8321 +2024-10-09T03:32:22.502220Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x171e824e00e80025e433fb60e4cf7a3a6f09dfba4a06dd67e960275f9c02991b, slot: 8321 +2024-10-09T03:32:22.584427Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8321 +2024-10-09T03:32:22.584492Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=154.6ms, avg=13.6ms, median=3.4ms +2024-10-09T03:32:22.584502Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8321 +2024-10-09T03:32:22.596214Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=4.4ms, median=1.7ms +2024-10-09T03:32:22.596511Z INFO fork_choice_control::block_processor: Validating block with slot: 8322 +2024-10-09T03:32:22.598478Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x436b80612b6ba17cd2d9e9bbbb3f286cc125eee202b83124b034a34d2c402a36, slot: 8322 +2024-10-09T03:32:22.617092Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8322 +2024-10-09T03:32:22.617163Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=154.6ms, avg=13.6ms, median=3.5ms +2024-10-09T03:32:22.617172Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8322 +2024-10-09T03:32:22.629362Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=4.6ms, median=1.7ms +2024-10-09T03:32:22.629631Z INFO fork_choice_control::block_processor: Validating block with slot: 8323 +2024-10-09T03:32:22.630617Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x2024f55ba6b0be96356c0b24ca89b99fb7b38d8ea91fe495553e8015f3921d9c, slot: 8323 +2024-10-09T03:32:22.647151Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8323 +2024-10-09T03:32:22.647227Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=154.6ms, avg=13.6ms, median=3.5ms +2024-10-09T03:32:22.647237Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8323 +2024-10-09T03:32:22.659284Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=4.6ms, median=1.7ms +2024-10-09T03:32:22.659544Z INFO fork_choice_control::block_processor: Validating block with slot: 8324 +2024-10-09T03:32:22.662086Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x3a6e5021919d5bac077d520cf4f54687e9a4d12b9c4c8a30aa97fd02a693e357, slot: 8324 +2024-10-09T03:32:22.687637Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8324 +2024-10-09T03:32:22.687709Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=154.6ms, avg=13.8ms, median=3.5ms +2024-10-09T03:32:22.687719Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8324 +2024-10-09T03:32:22.701111Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=4.8ms, median=1.8ms +2024-10-09T03:32:22.701361Z INFO fork_choice_control::block_processor: Validating block with slot: 8325 +2024-10-09T03:32:22.704040Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdf1ef993bf009d521db87a423b0704d49d7449101fdc842bc98eab8a777e98b4, slot: 8325 +2024-10-09T03:32:22.732378Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8325 +2024-10-09T03:32:22.732462Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=154.6ms, avg=13.9ms, median=3.5ms +2024-10-09T03:32:22.732473Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8325 +2024-10-09T03:32:22.747718Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.0ms, median=1.9ms +2024-10-09T03:32:22.748091Z INFO fork_choice_control::block_processor: Validating block with slot: 8326 +2024-10-09T03:32:22.749069Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xf879b4795ebb05586d4d4f33a5413cebbabf508cdd9fdd0301eea367d27ce50c, slot: 8326 +2024-10-09T03:32:22.765809Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8326 +2024-10-09T03:32:22.765884Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=154.6ms, avg=13.9ms, median=3.6ms +2024-10-09T03:32:22.765894Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8326 +2024-10-09T03:32:22.779390Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.1ms, median=1.9ms +2024-10-09T03:32:22.779677Z INFO fork_choice_control::block_processor: Validating block with slot: 8327 +2024-10-09T03:32:22.780955Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1fd3e3bf006f16b5c20f53cb9783d94aa7ba09b1fef72b33cd78e4ca48c0a2e2, slot: 8327 +2024-10-09T03:32:22.801124Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8327 +2024-10-09T03:32:22.801202Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=154.6ms, avg=12.5ms, median=3.6ms +2024-10-09T03:32:22.801213Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8327 +2024-10-09T03:32:22.821110Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.2ms, median=1.9ms +2024-10-09T03:32:22.823118Z INFO fork_choice_control::block_processor: Validating block with slot: 8328 +2024-10-09T03:32:22.824125Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa5c7316e1cdedabf6b68958382f70761f9ce0138c5d2d5096b4457b9fc4fa796, slot: 8328 +2024-10-09T03:32:22.849729Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8328 +2024-10-09T03:32:22.849813Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=154.6ms, avg=12.6ms, median=3.6ms +2024-10-09T03:32:22.849824Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8328 +2024-10-09T03:32:22.874977Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.4ms, median=1.9ms +2024-10-09T03:32:22.875239Z INFO fork_choice_control::block_processor: Validating block with slot: 8329 +2024-10-09T03:32:22.877139Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x477dfd0201e8aa4f2d19e3487ed5bd5bd9aae4e6b99ec2d356512eb0380b12ed, slot: 8329 +2024-10-09T03:32:22.896695Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8329 +2024-10-09T03:32:22.896777Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=154.6ms, avg=12.6ms, median=3.6ms +2024-10-09T03:32:22.896787Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8329 +2024-10-09T03:32:22.910297Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.5ms, median=1.9ms +2024-10-09T03:32:22.910708Z INFO fork_choice_control::block_processor: Validating block with slot: 8330 +2024-10-09T03:32:22.911809Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x5daacb17305e0f55ae79a06caa135a2f121a0e2c66b5e5035c540e79572d5abc, slot: 8330 +2024-10-09T03:32:22.924262Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8330 +2024-10-09T03:32:22.924324Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=154.6ms, avg=12.6ms, median=3.6ms +2024-10-09T03:32:22.924334Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8330 +2024-10-09T03:32:22.937957Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.6ms, median=1.9ms +2024-10-09T03:32:22.938242Z INFO fork_choice_control::block_processor: Validating block with slot: 8332 +2024-10-09T03:32:22.940198Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x8e5b636cd62705afe05fcbbec09f58ac71753b28b3538d369803c31a8ecfd9ce, slot: 8332 +2024-10-09T03:32:22.965766Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8332 +2024-10-09T03:32:22.965828Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=154.6ms, avg=12.7ms, median=3.6ms +2024-10-09T03:32:22.965837Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8332 +2024-10-09T03:32:22.980067Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.7ms, median=1.9ms +2024-10-09T03:32:22.980344Z INFO fork_choice_control::block_processor: Validating block with slot: 8333 +2024-10-09T03:32:22.981583Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x33cc748c41bca67bf5fa71364da531da2632b724ce7b7ef6016175ed9b7a947d, slot: 8333 +2024-10-09T03:32:22.995770Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8333 +2024-10-09T03:32:22.995842Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=154.6ms, avg=12.7ms, median=3.6ms +2024-10-09T03:32:22.995855Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8333 +2024-10-09T03:32:23.011726Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.8ms, median=2.0ms +2024-10-09T03:32:23.012122Z INFO fork_choice_control::block_processor: Validating block with slot: 8334 +2024-10-09T03:32:23.013703Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xa7cb87338ba28e7311b8feb589ea87e96c834a50b41a7961ffb698c6e8e050b8, slot: 8334 +2024-10-09T03:32:23.029466Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8334 +2024-10-09T03:32:23.029539Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=154.6ms, avg=12.7ms, median=3.7ms +2024-10-09T03:32:23.029550Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8334 +2024-10-09T03:32:23.044556Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.9ms, median=2.2ms +2024-10-09T03:32:23.044839Z INFO fork_choice_control::block_processor: Validating block with slot: 8335 +2024-10-09T03:32:23.046059Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x1e9bcf0e5a711e0a0b6f4024b844036a7a89575579cbdb590fb52570633d4e9a, slot: 8335 +2024-10-09T03:32:23.059083Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8335 +2024-10-09T03:32:23.059154Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=154.6ms, avg=12.7ms, median=3.8ms +2024-10-09T03:32:23.059165Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8335 +2024-10-09T03:32:23.073825Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=6.0ms, median=2.2ms +2024-10-09T03:32:23.074062Z INFO fork_choice_control::block_processor: Validating block with slot: 8336 +2024-10-09T03:32:23.075040Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0xdd68ed82872a63c0e1669d0b6ef8950dfe8a1fed5943bba6124eedec56206314, slot: 8336 +2024-10-09T03:32:23.088137Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8336 +2024-10-09T03:32:23.088203Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=154.6ms, avg=12.6ms, median=3.8ms +2024-10-09T03:32:23.088213Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8336 +2024-10-09T03:32:23.103105Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=6.1ms, median=2.3ms +2024-10-09T03:32:23.103371Z INFO fork_choice_control::block_processor: Validating block with slot: 8337 +2024-10-09T03:32:23.104346Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x580fd05bd5d619f0cf2bd8a67ca76e91985193ea1a24ca47f5c34f1a0d5eeb2a, slot: 8337 +2024-10-09T03:32:23.117689Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8337 +2024-10-09T03:32:23.117753Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=154.6ms, avg=12.6ms, median=3.9ms +2024-10-09T03:32:23.117763Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8337 +2024-10-09T03:32:23.132904Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=6.2ms, median=2.3ms +2024-10-09T03:32:23.133151Z INFO fork_choice_control::block_processor: Validating block with slot: 8338 +2024-10-09T03:32:23.136139Z INFO fork_choice_control::block_processor: Performing state transition for block with root: 0x6ce7e72ba53f27e70c755fb8aab4696c5ec7f9e6192c5bd6d1a15f7cafd86590, slot: 8338 +2024-10-09T03:32:23.167163Z INFO fork_choice_control::block_processor: State transition completed for block with slot: 8338 +2024-10-09T03:32:23.167233Z TRACE fork_choice_control::block_processor: perform_state_transition timing: min=2.4ms, max=154.6ms, avg=12.7ms, median=3.9ms +2024-10-09T03:32:23.167243Z INFO fork_choice_control::block_processor: Block validation completed for slot: 8338 +2024-10-09T03:32:23.183756Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=6.4ms, median=2.5ms +2024-10-09T03:32:23.285259Z INFO fork_choice_control::block_processor: Validating block with slot: 8723 +2024-10-09T03:32:23.289438Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=6.4ms, median=2.6ms +2024-10-09T03:32:23.365903Z INFO fork_choice_control::block_processor: Validating block with slot: 8724 +2024-10-09T03:32:23.366002Z INFO fork_choice_control::block_processor: Validating block with slot: 8725 +2024-10-09T03:32:23.366060Z INFO fork_choice_control::block_processor: Validating block with slot: 8726 +2024-10-09T03:32:23.366138Z INFO fork_choice_control::block_processor: Validating block with slot: 8727 +2024-10-09T03:32:23.366772Z INFO fork_choice_control::block_processor: Validating block with slot: 8728 +2024-10-09T03:32:23.367587Z INFO fork_choice_control::block_processor: Validating block with slot: 8729 +2024-10-09T03:32:23.367596Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=6.3ms, median=2.6ms +2024-10-09T03:32:23.368962Z INFO fork_choice_control::block_processor: Validating block with slot: 8730 +2024-10-09T03:32:23.369727Z INFO fork_choice_control::block_processor: Validating block with slot: 8731 +2024-10-09T03:32:23.369956Z INFO fork_choice_control::block_processor: Validating block with slot: 8732 +2024-10-09T03:32:23.370498Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=6.3ms, median=2.6ms +2024-10-09T03:32:23.370529Z INFO fork_choice_control::block_processor: Validating block with slot: 8733 +2024-10-09T03:32:23.371021Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=6.3ms, median=2.6ms +2024-10-09T03:32:23.371145Z INFO fork_choice_control::block_processor: Validating block with slot: 8734 +2024-10-09T03:32:23.371744Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=6.3ms, median=2.6ms +2024-10-09T03:32:23.371791Z INFO fork_choice_control::block_processor: Validating block with slot: 8735 +2024-10-09T03:32:23.371910Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=6.3ms, median=2.6ms +2024-10-09T03:32:23.371923Z INFO fork_choice_control::block_processor: Validating block with slot: 8736 +2024-10-09T03:32:23.372887Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=6.2ms, median=2.6ms +2024-10-09T03:32:23.372897Z INFO fork_choice_control::block_processor: Validating block with slot: 8737 +2024-10-09T03:32:23.374250Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=6.2ms, median=2.9ms +2024-10-09T03:32:23.374344Z INFO fork_choice_control::block_processor: Validating block with slot: 8738 +2024-10-09T03:32:23.374357Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=6.2ms, median=3.0ms +2024-10-09T03:32:23.374370Z INFO fork_choice_control::block_processor: Validating block with slot: 8739 +2024-10-09T03:32:23.374575Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=6.2ms, median=3.1ms +2024-10-09T03:32:23.374698Z INFO fork_choice_control::block_processor: Validating block with slot: 8740 +2024-10-09T03:32:23.375470Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=6.2ms, median=3.1ms +2024-10-09T03:32:23.375482Z INFO fork_choice_control::block_processor: Validating block with slot: 8741 +2024-10-09T03:32:23.375938Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=6.1ms, median=3.1ms +2024-10-09T03:32:23.376083Z INFO fork_choice_control::block_processor: Validating block with slot: 8742 +2024-10-09T03:32:23.376449Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=6.1ms, median=3.1ms +2024-10-09T03:32:23.376459Z INFO fork_choice_control::block_processor: Validating block with slot: 8743 +2024-10-09T03:32:23.376733Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=6.1ms, median=3.2ms +2024-10-09T03:32:23.376796Z INFO fork_choice_control::block_processor: Validating block with slot: 8744 +2024-10-09T03:32:23.377558Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=6.1ms, median=3.2ms +2024-10-09T03:32:23.377575Z INFO fork_choice_control::block_processor: Validating block with slot: 8745 +2024-10-09T03:32:23.377707Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=6.1ms, median=3.2ms +2024-10-09T03:32:23.377721Z INFO fork_choice_control::block_processor: Validating block with slot: 8746 +2024-10-09T03:32:23.378879Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=6.1ms, median=3.2ms +2024-10-09T03:32:23.378898Z INFO fork_choice_control::block_processor: Validating block with slot: 8747 +2024-10-09T03:32:23.379651Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=6.1ms, median=3.2ms +2024-10-09T03:32:23.379670Z INFO fork_choice_control::block_processor: Validating block with slot: 8748 +2024-10-09T03:32:23.379861Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=6.0ms, median=3.2ms +2024-10-09T03:32:23.379873Z INFO fork_choice_control::block_processor: Validating block with slot: 8749 +2024-10-09T03:32:23.380446Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=6.0ms, median=3.3ms +2024-10-09T03:32:23.380495Z INFO fork_choice_control::block_processor: Validating block with slot: 8750 +2024-10-09T03:32:23.380639Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=6.0ms, median=3.3ms +2024-10-09T03:32:23.380652Z INFO fork_choice_control::block_processor: Validating block with slot: 8751 +2024-10-09T03:32:23.382715Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=6.0ms, median=3.3ms +2024-10-09T03:32:23.382810Z INFO fork_choice_control::block_processor: Validating block with slot: 8753 +2024-10-09T03:32:23.383943Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=6.0ms, median=3.3ms +2024-10-09T03:32:23.383956Z INFO fork_choice_control::block_processor: Validating block with slot: 8754 +2024-10-09T03:32:23.384410Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.9ms, median=3.3ms +2024-10-09T03:32:23.384661Z INFO fork_choice_control::block_processor: Validating block with slot: 8755 +2024-10-09T03:32:23.384728Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.9ms, median=3.6ms +2024-10-09T03:32:23.385556Z INFO fork_choice_control::block_processor: Validating block with slot: 8756 +2024-10-09T03:32:23.386149Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.9ms, median=3.7ms +2024-10-09T03:32:23.386231Z INFO fork_choice_control::block_processor: Validating block with slot: 8757 +2024-10-09T03:32:23.386592Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.9ms, median=3.7ms +2024-10-09T03:32:23.386643Z INFO fork_choice_control::block_processor: Validating block with slot: 8758 +2024-10-09T03:32:23.387331Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.9ms, median=3.7ms +2024-10-09T03:32:23.387348Z INFO fork_choice_control::block_processor: Validating block with slot: 8759 +2024-10-09T03:32:23.387546Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.9ms, median=3.7ms +2024-10-09T03:32:23.387559Z INFO fork_choice_control::block_processor: Validating block with slot: 8760 +2024-10-09T03:32:23.388079Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.9ms, median=3.7ms +2024-10-09T03:32:23.388149Z INFO fork_choice_control::block_processor: Validating block with slot: 8761 +2024-10-09T03:32:23.388273Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.8ms, median=3.7ms +2024-10-09T03:32:23.388311Z INFO fork_choice_control::block_processor: Validating block with slot: 8762 +2024-10-09T03:32:23.388446Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.8ms, median=3.7ms +2024-10-09T03:32:23.388456Z INFO fork_choice_control::block_processor: Validating block with slot: 8763 +2024-10-09T03:32:23.389837Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.8ms, median=3.7ms +2024-10-09T03:32:23.389884Z INFO fork_choice_control::block_processor: Validating block with slot: 8764 +2024-10-09T03:32:23.390101Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.8ms, median=3.7ms +2024-10-09T03:32:23.390114Z INFO fork_choice_control::block_processor: Validating block with slot: 8765 +2024-10-09T03:32:23.390727Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.8ms, median=3.7ms +2024-10-09T03:32:23.390780Z INFO fork_choice_control::block_processor: Validating block with slot: 8766 +2024-10-09T03:32:23.391628Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.7ms, median=3.7ms +2024-10-09T03:32:23.392010Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.7ms, median=3.7ms +2024-10-09T03:32:23.392116Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.7ms, median=3.7ms +2024-10-09T03:32:23.392198Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.7ms, median=3.7ms +2024-10-09T03:32:23.392244Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.7ms, median=3.7ms +2024-10-09T03:32:23.393994Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.6ms, median=3.7ms +2024-10-09T03:32:23.395002Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.6ms, median=3.8ms +2024-10-09T03:32:23.398555Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.6ms, median=4.0ms +2024-10-09T03:32:23.416829Z INFO fork_choice_control::block_processor: Validating block with slot: 8767 +2024-10-09T03:32:23.416876Z INFO fork_choice_control::block_processor: Validating block with slot: 8769 +2024-10-09T03:32:23.416906Z INFO fork_choice_control::block_processor: Validating block with slot: 8771 +2024-10-09T03:32:23.416924Z INFO fork_choice_control::block_processor: Validating block with slot: 8772 +2024-10-09T03:32:23.416938Z INFO fork_choice_control::block_processor: Validating block with slot: 8773 +2024-10-09T03:32:23.418168Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.6ms, median=4.0ms +2024-10-09T03:32:23.418189Z INFO fork_choice_control::block_processor: Validating block with slot: 8774 +2024-10-09T03:32:23.419601Z INFO fork_choice_control::block_processor: Validating block with slot: 8775 +2024-10-09T03:32:23.419703Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.6ms, median=4.0ms +2024-10-09T03:32:23.419717Z INFO fork_choice_control::block_processor: Validating block with slot: 8776 +2024-10-09T03:32:23.420635Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.6ms, median=4.0ms +2024-10-09T03:32:23.420647Z INFO fork_choice_control::block_processor: Validating block with slot: 8777 +2024-10-09T03:32:23.420819Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.6ms, median=4.0ms +2024-10-09T03:32:23.420829Z INFO fork_choice_control::block_processor: Validating block with slot: 8778 +2024-10-09T03:32:23.421482Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.6ms, median=4.0ms +2024-10-09T03:32:23.422355Z INFO fork_choice_control::block_processor: Validating block with slot: 8779 +2024-10-09T03:32:23.422897Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.5ms, median=4.0ms +2024-10-09T03:32:23.423010Z INFO fork_choice_control::block_processor: Validating block with slot: 8780 +2024-10-09T03:32:23.423137Z INFO fork_choice_control::block_processor: Validating block with slot: 8768 +2024-10-09T03:32:23.423713Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.5ms, median=4.1ms +2024-10-09T03:32:23.423790Z INFO fork_choice_control::block_processor: Validating block with slot: 8770 +2024-10-09T03:32:23.423800Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.5ms, median=4.1ms +2024-10-09T03:32:23.423844Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.5ms, median=4.1ms +2024-10-09T03:32:23.424327Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.5ms, median=4.1ms +2024-10-09T03:32:23.424417Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.5ms, median=4.1ms +2024-10-09T03:32:23.425040Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.5ms, median=4.1ms +2024-10-09T03:32:23.425163Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.5ms, median=4.2ms +2024-10-09T03:32:23.426094Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.5ms, median=4.3ms +2024-10-09T03:32:23.430952Z INFO fork_choice_control::block_processor: Validating block with slot: 8782 +2024-10-09T03:32:23.430980Z INFO fork_choice_control::block_processor: Validating block with slot: 8781 +2024-10-09T03:32:23.431018Z INFO fork_choice_control::block_processor: Validating block with slot: 8783 +2024-10-09T03:32:23.431024Z INFO fork_choice_control::block_processor: Validating block with slot: 8784 +2024-10-09T03:32:23.431182Z INFO fork_choice_control::block_processor: Validating block with slot: 8785 +2024-10-09T03:32:23.431397Z INFO fork_choice_control::block_processor: Validating block with slot: 8786 +2024-10-09T03:32:23.432099Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.5ms, median=4.3ms +2024-10-09T03:32:23.432636Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.4ms, median=4.3ms +2024-10-09T03:32:23.433038Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.4ms, median=4.2ms +2024-10-09T03:32:23.433794Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.4ms, median=4.2ms +2024-10-09T03:32:23.434666Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.4ms, median=4.2ms +2024-10-09T03:32:23.434744Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.4ms, median=4.1ms +2024-10-09T03:32:24.841042Z INFO fork_choice_control::block_processor: Validating block with slot: 8982 +2024-10-09T03:32:24.841045Z INFO fork_choice_control::block_processor: Validating block with slot: 8980 +2024-10-09T03:32:24.841063Z INFO fork_choice_control::block_processor: Validating block with slot: 8979 +2024-10-09T03:32:24.841113Z INFO fork_choice_control::block_processor: Validating block with slot: 8984 +2024-10-09T03:32:24.841155Z INFO fork_choice_control::block_processor: Validating block with slot: 8985 +2024-10-09T03:32:24.841239Z INFO fork_choice_control::block_processor: Validating block with slot: 8986 +2024-10-09T03:32:24.841234Z INFO fork_choice_control::block_processor: Validating block with slot: 8983 +2024-10-09T03:32:24.842320Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.3ms, median=4.1ms +2024-10-09T03:32:24.842341Z INFO fork_choice_control::block_processor: Validating block with slot: 8987 +2024-10-09T03:32:24.842505Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.3ms, median=4.0ms +2024-10-09T03:32:24.843176Z INFO fork_choice_control::block_processor: Validating block with slot: 8988 +2024-10-09T03:32:24.843509Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.3ms, median=4.0ms +2024-10-09T03:32:24.843531Z INFO fork_choice_control::block_processor: Validating block with slot: 8989 +2024-10-09T03:32:24.843594Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.2ms, median=4.0ms +2024-10-09T03:32:24.843608Z INFO fork_choice_control::block_processor: Validating block with slot: 8990 +2024-10-09T03:32:24.843660Z INFO fork_choice_control::block_processor: Validating block with slot: 8981 +2024-10-09T03:32:24.843887Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.2ms, median=3.8ms +2024-10-09T03:32:24.843934Z INFO fork_choice_control::block_processor: Validating block with slot: 8991 +2024-10-09T03:32:24.844566Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.2ms, median=3.8ms +2024-10-09T03:32:24.844616Z INFO fork_choice_control::block_processor: Validating block with slot: 8992 +2024-10-09T03:32:24.844707Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=5.2ms, median=3.8ms +2024-10-09T03:32:24.844722Z INFO fork_choice_control::block_processor: Validating block with slot: 8993 +2024-10-09T03:32:24.846032Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=4.6ms, median=3.8ms +2024-10-09T03:32:24.846137Z INFO fork_choice_control::block_processor: Validating block with slot: 8994 +2024-10-09T03:32:24.846517Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=4.5ms, median=3.8ms +2024-10-09T03:32:24.846538Z INFO fork_choice_control::block_processor: Validating block with slot: 8995 +2024-10-09T03:32:24.846921Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=4.4ms, median=3.7ms +2024-10-09T03:32:24.846989Z INFO fork_choice_control::block_processor: Validating block with slot: 8996 +2024-10-09T03:32:24.847655Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=4.2ms, median=3.7ms +2024-10-09T03:32:24.847668Z INFO fork_choice_control::block_processor: Validating block with slot: 8997 +2024-10-09T03:32:24.847769Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=4.1ms, median=3.7ms +2024-10-09T03:32:24.847782Z INFO fork_choice_control::block_processor: Validating block with slot: 8998 +2024-10-09T03:32:24.848479Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=4.0ms, median=3.7ms +2024-10-09T03:32:24.848552Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=3.8ms, median=3.7ms +2024-10-09T03:32:24.848563Z INFO fork_choice_control::block_processor: Validating block with slot: 8999 +2024-10-09T03:32:24.848600Z INFO fork_choice_control::block_processor: Validating block with slot: 9000 +2024-10-09T03:32:24.849035Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=3.7ms, median=3.6ms +2024-10-09T03:32:24.849045Z INFO fork_choice_control::block_processor: Validating block with slot: 9001 +2024-10-09T03:32:24.850086Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=3.6ms, median=3.5ms +2024-10-09T03:32:24.850124Z INFO fork_choice_control::block_processor: Validating block with slot: 9002 +2024-10-09T03:32:24.850860Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=3.5ms, median=3.5ms +2024-10-09T03:32:24.850875Z INFO fork_choice_control::block_processor: Validating block with slot: 9003 +2024-10-09T03:32:24.851520Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=3.3ms, median=3.5ms +2024-10-09T03:32:24.851551Z INFO fork_choice_control::block_processor: Validating block with slot: 9004 +2024-10-09T03:32:24.853075Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=3.2ms, median=3.5ms +2024-10-09T03:32:24.853104Z INFO fork_choice_control::block_processor: Validating block with slot: 9005 +2024-10-09T03:32:24.853645Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=2.8ms, median=3.5ms +2024-10-09T03:32:24.853662Z INFO fork_choice_control::block_processor: Validating block with slot: 9006 +2024-10-09T03:32:24.853705Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=2.5ms, median=3.5ms +2024-10-09T03:32:24.853719Z INFO fork_choice_control::block_processor: Validating block with slot: 9007 +2024-10-09T03:32:24.854094Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=2.4ms, median=3.4ms +2024-10-09T03:32:24.854107Z INFO fork_choice_control::block_processor: Validating block with slot: 9008 +2024-10-09T03:32:24.854205Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=2.3ms, median=3.3ms +2024-10-09T03:32:24.854219Z INFO fork_choice_control::block_processor: Validating block with slot: 9009 +2024-10-09T03:32:24.854776Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=2.2ms, median=3.3ms +2024-10-09T03:32:24.854788Z INFO fork_choice_control::block_processor: Validating block with slot: 9010 +2024-10-09T03:32:24.855894Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=2.1ms, median=3.3ms +2024-10-09T03:32:24.855920Z INFO fork_choice_control::block_processor: Validating block with slot: 9011 +2024-10-09T03:32:24.856063Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=2.0ms, median=3.2ms +2024-10-09T03:32:24.856075Z INFO fork_choice_control::block_processor: Validating block with slot: 9012 +2024-10-09T03:32:24.856576Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=1.8ms, median=2.9ms +2024-10-09T03:32:24.856591Z INFO fork_choice_control::block_processor: Validating block with slot: 9013 +2024-10-09T03:32:24.856992Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=1.7ms, median=2.8ms +2024-10-09T03:32:24.857008Z INFO fork_choice_control::block_processor: Validating block with slot: 9014 +2024-10-09T03:32:24.857568Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=1.6ms, median=2.8ms +2024-10-09T03:32:24.857580Z INFO fork_choice_control::block_processor: Validating block with slot: 9015 +2024-10-09T03:32:24.858557Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=1.5ms, median=2.6ms +2024-10-09T03:32:24.858569Z INFO fork_choice_control::block_processor: Validating block with slot: 9016 +2024-10-09T03:32:24.858758Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=1.4ms, median=2.6ms +2024-10-09T03:32:24.858769Z INFO fork_choice_control::block_processor: Validating block with slot: 9017 +2024-10-09T03:32:24.859097Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=1.3ms, median=2.6ms +2024-10-09T03:32:24.859109Z INFO fork_choice_control::block_processor: Validating block with slot: 9018 +2024-10-09T03:32:24.859888Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=1.2ms, median=2.5ms +2024-10-09T03:32:24.859898Z INFO fork_choice_control::block_processor: Validating block with slot: 9019 +2024-10-09T03:32:24.862178Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=1.1ms, median=2.4ms +2024-10-09T03:32:24.862298Z INFO fork_choice_control::block_processor: Validating block with slot: 9020 +2024-10-09T03:32:24.862598Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=1.1ms, median=2.4ms +2024-10-09T03:32:24.862637Z INFO fork_choice_control::block_processor: Validating block with slot: 9021 +2024-10-09T03:32:24.862898Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=1.0ms, median=2.4ms +2024-10-09T03:32:24.862974Z INFO fork_choice_control::block_processor: Validating block with slot: 9022 +2024-10-09T03:32:24.863459Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=0.8ms, median=2.4ms +2024-10-09T03:32:24.863577Z INFO fork_choice_control::block_processor: Validating block with slot: 9023 +2024-10-09T03:32:24.863915Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=0.8ms, median=2.4ms +2024-10-09T03:32:24.863955Z INFO fork_choice_control::block_processor: Validating block with slot: 9024 +2024-10-09T03:32:24.864091Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=0.8ms, median=2.4ms +2024-10-09T03:32:24.864114Z INFO fork_choice_control::block_processor: Validating block with slot: 9025 +2024-10-09T03:32:24.864544Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=0.8ms, median=2.4ms +2024-10-09T03:32:24.864558Z INFO fork_choice_control::block_processor: Validating block with slot: 9026 +2024-10-09T03:32:24.866032Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=0.8ms, median=2.4ms +2024-10-09T03:32:24.866055Z INFO fork_choice_control::block_processor: Validating block with slot: 9027 +2024-10-09T03:32:24.866333Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=0.8ms, median=2.4ms +2024-10-09T03:32:24.866346Z INFO fork_choice_control::block_processor: Validating block with slot: 9028 +2024-10-09T03:32:24.866944Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=0.8ms, median=2.4ms +2024-10-09T03:32:24.867001Z INFO fork_choice_control::block_processor: Validating block with slot: 9029 +2024-10-09T03:32:24.869013Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=0.8ms, median=2.4ms +2024-10-09T03:32:24.869187Z INFO fork_choice_control::block_processor: Validating block with slot: 9030 +2024-10-09T03:32:24.869830Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=0.8ms, median=2.4ms +2024-10-09T03:32:24.869906Z INFO fork_choice_control::block_processor: Validating block with slot: 9031 +2024-10-09T03:32:24.870146Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=0.8ms, median=2.4ms +2024-10-09T03:32:24.870164Z INFO fork_choice_control::block_processor: Validating block with slot: 9032 +2024-10-09T03:32:24.871015Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=0.8ms, median=2.3ms +2024-10-09T03:32:24.871035Z INFO fork_choice_control::block_processor: Validating block with slot: 9033 +2024-10-09T03:32:24.871197Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=0.8ms, median=2.3ms +2024-10-09T03:32:24.871260Z INFO fork_choice_control::block_processor: Validating block with slot: 9034 +2024-10-09T03:32:24.871312Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=0.8ms, median=2.3ms +2024-10-09T03:32:24.871332Z INFO fork_choice_control::block_processor: Validating block with slot: 9035 +2024-10-09T03:32:24.871545Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=0.8ms, median=2.4ms +2024-10-09T03:32:24.871579Z INFO fork_choice_control::block_processor: Validating block with slot: 9036 +2024-10-09T03:32:24.871957Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=0.8ms, median=2.3ms +2024-10-09T03:32:24.872144Z INFO fork_choice_control::block_processor: Validating block with slot: 9037 +2024-10-09T03:32:24.872337Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=0.8ms, median=2.3ms +2024-10-09T03:32:24.872350Z INFO fork_choice_control::block_processor: Validating block with slot: 9038 +2024-10-09T03:32:24.872779Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=0.8ms, median=2.4ms +2024-10-09T03:32:24.872818Z INFO fork_choice_control::block_processor: Validating block with slot: 9039 +2024-10-09T03:32:24.875155Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=0.8ms, median=2.4ms +2024-10-09T03:32:24.875199Z INFO fork_choice_control::block_processor: Validating block with slot: 9040 +2024-10-09T03:32:24.875445Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=0.8ms, median=2.4ms +2024-10-09T03:32:24.875495Z INFO fork_choice_control::block_processor: Validating block with slot: 9041 +2024-10-09T03:32:24.876085Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=0.8ms, median=2.4ms +2024-10-09T03:32:24.876318Z INFO fork_choice_control::block_processor: Validating block with slot: 9042 +2024-10-09T03:32:24.876491Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=0.8ms, median=2.3ms +2024-10-09T03:32:24.877029Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=0.8ms, median=2.4ms +2024-10-09T03:32:24.877442Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=0.8ms, median=2.4ms +2024-10-09T03:32:24.877726Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=0.8ms, median=2.4ms +2024-10-09T03:32:24.877963Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=0.8ms, median=2.4ms +2024-10-09T03:32:24.878179Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=0.8ms, median=2.4ms +2024-10-09T03:32:24.878459Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=0.8ms, median=2.4ms +2024-10-09T03:32:24.878556Z TRACE fork_choice_control::block_processor: validate_block timing: min=0.9ms, max=172.8ms, avg=0.8ms, median=2.4ms +2024-10-09T03:32:26.092643Z INFO runtime::runtime: saving current chain before exit… +2024-10-09T03:32:26.271203Z INFO fork_choice_control::storage: saving checkpoint block & state in slot 8256 +2024-10-09T03:32:26.443025Z INFO fork_choice_control::mutator: chain saved (finalized blocks: 1, unfinalized blocks: 80) diff --git a/predefined_chains/.DS_Store b/predefined_chains/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..f7b1e001574f9f56705c9aac1140cb3ff883cc8e GIT binary patch literal 6148 zcmeHK%}T>S5S}qbie7s3m{;f<#1io+v=@)sR`k%2Viixq-o@8a@a#kQ7=H6p+cW`h zB05uczuo!S*?gfpSt8=m{d`C?Afi5+Aj_abMBQoHb7wKKu5m}J#r1G9tE*+lLcdWZ zd*7!^TH$v^yZawMobTGJx-6%QdJ292>EreE`RwJm?KA(@XL+;5(>P%X%CLu9nl%|b zc-&aFbH8VA>)ak!)tjtsYa^e&Z%G*v3bz=^q+K9}ENo!N3;-az5l} zf`wx;)T0BPUIBnTs8ukQyM)B#j)h|~gayJD3bau6D+c?gDO)(~h5IK%3n$jhSjRK3 zFE6awq0iNwxG;=97zhTM3}iMPNc}&-U#9bt-wcUaFc1vke6iDNeavKg1(NdVmh>{`~AdV$cByto)?}`q@A-Dl|K!S>^a0A|a zWNaBrR0u^g((GIB%aKNB9t*TtQ6(bfkCbSz!8>3Fi&^_jE1RUr3ecoXedxagIzI#hGRXN zUusw>YB&YEd<4rJ?1mB~JNA#_P9atF(HU?C+6)Z!G2#Ay(SQGM2lnLOJmls{5d06nz_W*bji2C~ z-8Cj{wSpibGcfx$voo2UmypQYvP8*XKAK6ydnt5W$bASn}yup;!rZ~qH#;kdaOI%~z%->mV^RMsg z>9N|^mpSVD{cg;LI;0jAWk4BF27bZ-d$ve>&!LXWfHI&AR1C=XA)*S#9!rPz)4{ud-$-s`g45j~{e186K2I-YDpbY#g223j%Bz>0Td+SX}7!XoQ%B`p)BXh1|MRIs;)W{Zelv?V>Wh?CKQbVDw@(FjZB8qy?cZWP98b$)sgq9DU2#R3=aWS_fj?cJd|bX< Date: Sat, 12 Oct 2024 01:49:59 +0100 Subject: [PATCH 31/31] Update block_processor with fmt implementation for TimingMetrics --- fork_choice_control/src/block_processor.rs | 115 ++++++++++++++------- 1 file changed, 80 insertions(+), 35 deletions(-) diff --git a/fork_choice_control/src/block_processor.rs b/fork_choice_control/src/block_processor.rs index 5ccac073..81feb394 100644 --- a/fork_choice_control/src/block_processor.rs +++ b/fork_choice_control/src/block_processor.rs @@ -4,6 +4,7 @@ use std::sync::Arc; use std::collections::{VecDeque, HashMap}; +use std::fmt; use std::sync::Mutex; use std::time::{Duration, Instant}; use anyhow::Result; @@ -35,41 +36,98 @@ use types::{ traits::{BeaconBlock as _, BeaconState as _, SignedBeaconBlock as _}, }; -#[derive(Default)] + pub struct TimingMetrics { pub times: VecDeque, - pub min: Duration, - pub max: Duration, pub total: Duration, - pub count: usize, + pub max_size: usize, +} + +impl Default for TimingMetrics { + fn default() -> Self { + Self::new(100) // Default max_size of 100 + } } impl TimingMetrics { - fn update(&mut self, duration: Duration) { - self.times.push_back(duration); - if self.times.len() > 100 { + pub fn new(max_size: usize) -> Self { + Self { + times: VecDeque::with_capacity(max_size), + total: Duration::default(), + max_size, + } + } + + pub fn update(&mut self, duration: Duration) { + if self.times.len() >= self.max_size { if let Some(old) = self.times.pop_front() { self.total -= old; } } + self.times.push_back(duration); self.total += duration; - self.count += 1; - self.min = if self.count == 1 { duration } else { self.min.min(duration) }; - self.max = self.max.max(duration); } - fn average(&self) -> Duration { - if self.count > 0 { - self.total / self.count as u32 - } else { - Duration::default() - } + pub fn min(&self) -> Option { + self.times.iter().min().copied() + } + + pub fn max(&self) -> Option { + self.times.iter().max().copied() } - fn median(&self) -> Duration { - let mut sorted = self.times.clone().into_iter().collect::>(); + pub fn average(&self) -> Option { + (!self.times.is_empty()).then(|| self.total / self.times.len() as u32) + } + + pub fn median(&self) -> Option { + let len = self.times.len(); + if len == 0 { + return None; + } + let mut sorted: Vec<_> = self.times.iter().collect(); sorted.sort(); - sorted.get(sorted.len() / 2).cloned().unwrap_or_default() + let mid_idx = len / 2; + Some((*sorted[mid_idx] + *sorted[len - 1 - mid_idx]) / 2) + } + + pub fn count(&self) -> usize { + self.times.len() + } + + pub fn last(&self) -> Option { + self.times.back().copied() + } + + pub fn total(&self) -> Duration { + self.total + } + + pub fn times(&self) -> &VecDeque { + &self.times + } + + fn to_milliseconds(duration: Duration) -> f64 { + duration.as_secs_f64() * 1000.0 + } +} + +impl fmt::Display for TimingMetrics { + fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { + if self.times.is_empty() { + write!(f, "Timing metrics are empty.") + } else { + let min_ms = self.min().map(Self::to_milliseconds).unwrap_or(0.0); + let max_ms = self.max().map(Self::to_milliseconds).unwrap_or(0.0); + let avg_ms = self.average().map(Self::to_milliseconds).unwrap_or(0.0); + let median_ms = self.median().map(Self::to_milliseconds).unwrap_or(0.0); + + write!( + f, + "Min: {:.1}ms, Max: {:.1}ms, Avg: {:.1}ms, Median: {:.1}ms", + min_ms, max_ms, avg_ms, median_ms + ) + } } } @@ -83,22 +141,9 @@ pub struct BlockProcessor { impl BlockProcessor

{ fn update_metrics(&self, name: &str, duration: Duration) { let mut metrics = self.metrics.lock().unwrap(); - metrics.entry(name.to_string()).or_default().update(duration); - let entry = metrics.get(name).unwrap(); - - let min_ms = entry.min.as_secs_f64() * 1000.0; - let max_ms = entry.max.as_secs_f64() * 1000.0; - let avg_ms = entry.average().as_secs_f64() * 1000.0; - let median_ms = entry.median().as_secs_f64() * 1000.0; - - trace!( - "{} timing: min={:.1}ms, max={:.1}ms, avg={:.1}ms, median={:.1}ms", - name, - min_ms, - max_ms, - avg_ms, - median_ms - ); + let entry = metrics.entry(name.to_string()).or_insert_with(|| TimingMetrics::new(100)); + entry.update(duration); + trace!("{} timing: {}", name, entry); } pub fn process_untrusted_block_with_report( &self,