From e1d0724abf1789849fe22ecb0a6f641f2b3487f7 Mon Sep 17 00:00:00 2001 From: Pawan Dhananjay Date: Mon, 17 Jul 2023 13:29:12 -0700 Subject: [PATCH] Fix more beta compiler warnings --- beacon_node/execution_layer/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beacon_node/execution_layer/src/lib.rs b/beacon_node/execution_layer/src/lib.rs index 2a1f31917..3c754a76c 100644 --- a/beacon_node/execution_layer/src/lib.rs +++ b/beacon_node/execution_layer/src/lib.rs @@ -48,8 +48,8 @@ use types::{ use types::{ BlindedPayload, BlockType, ChainSpec, Epoch, ExecutionPayloadCapella, ExecutionPayloadMerge, }; -use types::{KzgProofs, Withdrawals}; -use types::{ProposerPreparationData, PublicKeyBytes, Signature, Slot, Transaction, Uint256}; +use types::{KzgProofs}; +use types::{ProposerPreparationData, PublicKeyBytes, Signature, Slot, Transaction}; mod block_hash; mod engine_api;