Skip to content

Commit 2bb94c8

Browse files
committed
Fix compilation errors in tracing import PR
1 parent 0b5283e commit 2bb94c8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

beacon_node/lighthouse_network/src/types/globals.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use network_utils::enr_ext::EnrExt;
99
use parking_lot::RwLock;
1010
use std::collections::HashSet;
1111
use std::sync::Arc;
12-
use tracing::error;
12+
use tracing::{debug, error};
1313
use types::data_column_custody_group::{compute_subnets_from_custody_group, get_custody_groups};
1414
use types::{ChainSpec, ColumnIndex, DataColumnSubnetId, EthSpec};
1515

beacon_node/lighthouse_network/tests/rpc_tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use std::sync::Arc;
1313
use std::time::{Duration, Instant};
1414
use tokio::runtime::Runtime;
1515
use tokio::time::sleep;
16-
use tracing::{Instrument, debug, error, info_span, warn};
16+
use tracing::{Instrument, debug, error, info, info_span, warn};
1717
use types::{
1818
BeaconBlock, BeaconBlockAltair, BeaconBlockBase, BeaconBlockBellatrix, BeaconBlockHeader,
1919
BlobSidecar, ChainSpec, DataColumnSidecar, DataColumnsByRootIdentifier, EmptyBlock, Epoch,

beacon_node/network/src/sync/range_sync/chain.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ use std::collections::{BTreeMap, HashSet, btree_map::Entry};
1818
use std::hash::{Hash, Hasher};
1919
use std::marker::PhantomData;
2020
use strum::IntoStaticStr;
21-
use tracing::{Span, debug, instrument, warn};
21+
use tracing::{Span, debug, error, instrument, warn};
2222
use types::{ColumnIndex, Epoch, EthSpec, Hash256, Slot};
2323

2424
/// Blocks are downloaded in batches from peers. This constant specifies how many epochs worth of

0 commit comments

Comments
 (0)