We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06329ec commit b3584acCopy full SHA for b3584ac
beacon_node/beacon_chain/src/fetch_blobs.rs
@@ -163,6 +163,20 @@ pub async fn fetch_and_process_engine_blobs<T: BeaconChainTypes>(
163
return Ok(None);
164
}
165
166
+ if chain
167
+ .canonical_head
168
+ .fork_choice_read_lock()
169
+ .contains_block(&block_root)
170
+ {
171
+ // Avoid computing columns if block has already been imported.
172
+ debug!(
173
+ log,
174
+ "Ignoring EL blobs response";
175
+ "info" => "block has already been imported",
176
+ );
177
+ return Ok(None);
178
+ }
179
+
180
let data_columns_receiver = spawn_compute_and_publish_data_columns_task(
181
&chain,
182
block.clone(),
0 commit comments