diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 000000000..088047458 Binary files /dev/null and b/.DS_Store differ diff --git a/beacon_node/beacon_chain/src/beacon_chain.rs b/beacon_node/beacon_chain/src/beacon_chain.rs index 37d6df979..dd2be88b0 100644 --- a/beacon_node/beacon_chain/src/beacon_chain.rs +++ b/beacon_node/beacon_chain/src/beacon_chain.rs @@ -2945,9 +2945,11 @@ impl BeaconChain { ops.push(StoreOp::PutState(block.state_root(), &state)); if let Some(blobs) = blobs? { - //FIXME(sean) using this for debugging for now - info!(self.log, "Writing blobs to store"; "block_root" => ?block_root); - ops.push(StoreOp::PutBlobs(block_root, 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); + ops.push(StoreOp::PutBlobs(block_root, blobs)); + } }; let txn_lock = self.store.hot_db.begin_rw_transaction();