Skip to content

Commit

Permalink
chore(core): fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
petarvujovic98 committed Aug 13, 2024
1 parent 6080fd3 commit aef4c81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
5 changes: 2 additions & 3 deletions core/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use crate::{
interfaces::{ProofRequest, RaikoError, RaikoResult},
preflight::{hekla, ontake},
preflight::preflight,
provider::BlockDataProvider,
};
use alloy_primitives::Address;
Expand All @@ -17,7 +17,6 @@ use raiko_lib::{
input::{GuestInput, GuestOutput, TaikoProverData},
prover::{IdStore, IdWrite},
};
use reth_primitives::revm_primitives::SpecId;
use reth_primitives::Header;
use serde_json::Value;
use std::{collections::HashMap, hint::black_box};
Expand Down Expand Up @@ -70,7 +69,7 @@ impl Raiko {
//TODO: read fork from config
let preflight_data = self.get_preflight_data();
info!("Generating input for HEKLA fork");
hekla::preflight(provider, preflight_data)
preflight(provider, preflight_data)
.await
.map_err(Into::<RaikoError>::into)
}
Expand Down
1 change: 0 additions & 1 deletion core/src/preflight.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
use crate::{
interfaces::{RaikoError, RaikoResult},
preflight::{block_time_to_block_slot, get_blob_data, get_headers},
provider::{db::ProviderDb, rpc::RpcBlockDataProvider, BlockDataProvider},
require,
};
Expand Down

0 comments on commit aef4c81

Please sign in to comment.