Skip to content

Commit 469f5a8

Browse files
committed
Fix compile errors
1 parent 3643ba5 commit 469f5a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

beacon_node/network/src/beacon_processor/worker/sync_methods.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use crate::sync::manager::SyncMessage;
66
use crate::sync::{BatchProcessResult, ChainId};
77
use beacon_chain::{BeaconChainTypes, BlockError, ChainSegmentResult};
88
use eth2_libp2p::PeerId;
9-
use slog::{crit, debug, error, trace, warn};
9+
use slog::{crit, debug, error, info, trace, warn};
1010
use types::{Epoch, Hash256, SignedBeaconBlock};
1111

1212
/// Id associated to a block processing request, either a batch or a single block.
@@ -36,7 +36,7 @@ impl<T: BeaconChainTypes> Worker<T> {
3636
if let Ok(root) = &block_result {
3737
info!(
3838
self.log,
39-
"New RPC block received",
39+
"New RPC block received";
4040
"slot" => slot,
4141
"hash" => %root
4242
);

0 commit comments

Comments
 (0)