fixup! Improve use of whitespace

This commit is contained in:
Emilia Hane 2023-02-07 11:34:25 +01:00
parent ac4b5b580c
commit bc468b4ce5
No known key found for this signature in database
GPG Key ID: E73394F9C09206FA

View File

@ -3033,7 +3033,10 @@ impl<T: BeaconChainTypes> BeaconChain<T> {
if let Some(blobs) = blobs { if let Some(blobs) = blobs {
if blobs.blobs.len() > 0 { if blobs.blobs.len() > 0 {
//FIXME(sean) using this for debugging for now //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)); ops.push(StoreOp::PutBlobs(block_root, blobs));
} }
} }