Skip to content

Commit

Permalink
fixup! Improve use of whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
emhane committed Feb 7, 2023
1 parent 4e3bba5 commit e83410b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion beacon_node/beacon_chain/src/beacon_chain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3035,7 +3035,10 @@ impl<T: BeaconChainTypes> BeaconChain<T> {
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));
}
}
Expand Down

0 comments on commit e83410b

Please sign in to comment.