From bc468b4ce5e7f6a52e6a5dd61918c39f59ece81b Mon Sep 17 00:00:00 2001 From: Emilia Hane Date: Tue, 7 Feb 2023 11:34:25 +0100 Subject: [PATCH] fixup! Improve use of whitespace --- beacon_node/beacon_chain/src/beacon_chain.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/beacon_node/beacon_chain/src/beacon_chain.rs b/beacon_node/beacon_chain/src/beacon_chain.rs index 8603f6c2d..6757d1f9a 100644 --- a/beacon_node/beacon_chain/src/beacon_chain.rs +++ b/beacon_node/beacon_chain/src/beacon_chain.rs @@ -3033,7 +3033,10 @@ impl BeaconChain { if let Some(blobs) = blobs { if blobs.blobs.len() > 0 { //FIXME(sean) using this for debugging for now - info!(self.log, "Writing blobs to store"; "block_root" => ?block_root); + info!( + self.log, "Writing blobs to store"; + "block_root" => ?block_root + ); ops.push(StoreOp::PutBlobs(block_root, blobs)); } }