Skip to content

Commit 9a57e37

Browse files
committed
Un-comment noisy info
1 parent 098a584 commit 9a57e37

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

cmd/ethereum_rust/ethereum_rust.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -126,10 +126,10 @@ async fn main() {
126126
let size = blocks.len();
127127
for block in &blocks {
128128
let hash = block.header.compute_block_hash();
129-
// info!(
130-
// "Adding block {} with hash {:#x}.",
131-
// block.header.number, hash
132-
// );
129+
info!(
130+
"Adding block {} with hash {:#x}.",
131+
block.header.number, hash
132+
);
133133
let result = add_block(block, &store);
134134
if let Some(error) = result.err() {
135135
warn!(

0 commit comments

Comments
 (0)