cargo fix and some test fixes

This commit is contained in:
realbigsean
2022-04-05 17:02:54 -04:00
parent fe6fc55449
commit 7520651515
12 changed files with 33 additions and 25 deletions

View File

@@ -9,7 +9,7 @@ pub use types::{
Address, EthSpec, ExecutionBlockHash, ExecutionPayload, ExecutionPayloadHeader, FixedVector,
Hash256, Uint256, VariableList,
};
use types::{Blob, KZGCommitment};
use types::{KZGCommitment};
pub mod auth;
pub mod http;

View File

@@ -890,12 +890,12 @@ impl<T: EthSpec> ExecutionLayer<T> {
pub async fn get_blob<T: EthSpec>(
&self,
parent_hash: Hash256,
timestamp: u64,
random: Hash256,
finalized_block_hash: Hash256,
proposer_index: u64,
versioned_hash: Hash256,
_parent_hash: Hash256,
_timestamp: u64,
_random: Hash256,
_finalized_block_hash: Hash256,
_proposer_index: u64,
_versioned_hash: Hash256,
) -> Result<BlobDetailsV1, Error> {
todo!()
}