We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a4896c commit 1a37129Copy full SHA for 1a37129
chain/ethereum/src/ethereum_adapter.rs
@@ -1722,7 +1722,14 @@ impl EthereumAdapterTrait for EthereumAdapter {
1722
.filter(|&number| !blocks.iter().any(|block| block.number() == number))
1723
.collect();
1724
1725
- debug!(logger, "Loading {} block(s)", missing_blocks.len());
+ if !missing_blocks.is_empty() {
1726
+ debug!(
1727
+ logger,
1728
+ "Loading {} block(s) not in the block cache",
1729
+ missing_blocks.len()
1730
+ );
1731
+ }
1732
+
1733
Box::new(
1734
self.load_blocks_by_numbers_rpc(logger.clone(), missing_blocks)
1735
.collect()
0 commit comments