From 8bb61430847a5380cb42ba9db47c9c70e78207bd Mon Sep 17 00:00:00 2001 From: Derek Sorken Date: Thu, 12 Mar 2026 00:11:40 -0600 Subject: [PATCH] fixed missing data root log warn --- lean_client/fork_choice/src/handlers.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lean_client/fork_choice/src/handlers.rs b/lean_client/fork_choice/src/handlers.rs index 39e8126..b9d3649 100644 --- a/lean_client/fork_choice/src/handlers.rs +++ b/lean_client/fork_choice/src/handlers.rs @@ -515,6 +515,9 @@ fn process_block_internal( store .gossip_signatures .insert(proposer_sig_key, signed_block.signature.proposer_signature); + store + .attestation_data_by_root + .insert(proposer_data_root, proposer_attestation.data.clone()); // Process proposer attestation as if received via gossip (is_from_block=false) // This ensures it goes to "new" attestations and doesn't immediately affect fork choice