Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: remaining fetcher hints #250

Closed
wants to merge 7 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix merge errors
zobront committed Jun 14, 2024
commit a8b0a353da5e6656cab23a0ab8e2ce7137a84be2
5 changes: 0 additions & 5 deletions bin/host/src/fetcher/mod.rs
Original file line number Diff line number Diff line change
@@ -3,13 +3,10 @@
use crate::{kv::KeyValueStore, util};
use alloy_consensus::{Header, TxEnvelope};
use alloy_consensus::{Header, TxEnvelope};
use alloy_eips::eip2718::Encodable2718;
use alloy_primitives::{address, keccak256, Address, Bytes, B256};
use alloy_primitives::{address, keccak256, Address, Bytes, B256};
use alloy_provider::{Provider, ReqwestProvider};
use alloy_rlp::Decodable;
use alloy_rlp::Decodable;
use alloy_rpc_types::{Block, BlockTransactions};
use anyhow::{anyhow, Result};
use kona_preimage::{PreimageKey, PreimageKeyType};
@@ -36,8 +33,6 @@ where
l2_provider: ReqwestProvider,
/// L2 head
l2_head: B256,
/// L2 head
l2_head: B256,
/// The last hint that was received. [None] if no hint has been received yet.
last_hint: Option<String>,
}