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)); } }