Skip to content

Commit

Permalink
Fix compile errors
Browse files Browse the repository at this point in the history
  • Loading branch information
paulhauner committed Mar 31, 2021
1 parent 3643ba5 commit 469f5a8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use crate::sync::manager::SyncMessage;
use crate::sync::{BatchProcessResult, ChainId};
use beacon_chain::{BeaconChainTypes, BlockError, ChainSegmentResult};
use eth2_libp2p::PeerId;
use slog::{crit, debug, error, trace, warn};
use slog::{crit, debug, error, info, trace, warn};
use types::{Epoch, Hash256, SignedBeaconBlock};

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

0 comments on commit 469f5a8

Please sign in to comment.