Skip to content

Commit b42c911

Browse files
committed
Fix imports
1 parent 0da4d9f commit b42c911

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

beacon_node/src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ use std::str::FromStr;
3030
use std::time::Duration;
3131
use tracing::{error, info, warn};
3232
use types::graffiti::GraffitiString;
33-
use types::{Checkpoint, Epoch, EthSpec, ExecutionProofId, Hash256, PublicKeyBytes};
33+
use types::{Checkpoint, Epoch, EthSpec, ExecutionProofId, Hash256};
3434
use zkvm_execution_layer::ZKVMExecutionLayerConfig;
3535

3636
const PURGE_DB_CONFIRMATION: &str = "confirm";

consensus/types/src/execution_proof.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
use crate::{ExecutionBlockHash, Hash256, Slot, VariableList};
1+
use crate::{ExecutionBlockHash, Hash256, Slot};
2+
use ssz_types::VariableList;
23
use serde::{Deserialize, Serialize};
34
use ssz::Encode;
45
use ssz_derive::{Decode, Encode as DeriveEncode};

0 commit comments

Comments
 (0)