From 3ab0f46077db6ea6c9424366273a45299401f70d Mon Sep 17 00:00:00 2001 From: realbigsean Date: Mon, 19 Dec 2022 12:27:31 -0500 Subject: [PATCH] Update beacon_node/http_api/src/publish_blocks.rs Co-authored-by: Divma <26765164+divagant-martian@users.noreply.github.com> --- beacon_node/http_api/src/publish_blocks.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon_node/http_api/src/publish_blocks.rs b/beacon_node/http_api/src/publish_blocks.rs index c2b30d95f8..085f5036f4 100644 --- a/beacon_node/http_api/src/publish_blocks.rs +++ b/beacon_node/http_api/src/publish_blocks.rs @@ -32,7 +32,7 @@ pub async fn publish_block( let block_root = block_root.unwrap_or_else(|| block.canonical_root()); // Send the block, regardless of whether or not it is valid. The API - // specification is very clear that this isa the desired behaviour. + // specification is very clear that this is the desired behaviour. let wrapped_block = if matches!(block.as_ref(), &SignedBeaconBlock::Eip4844(_)) { if let Some(sidecar) = chain.blob_cache.pop(&block_root) { let block_and_blobs = SignedBeaconBlockAndBlobsSidecar {