@@ -5,6 +5,7 @@ use crate::host::single::local_kv::LocalKeyValueStore;
55use crate :: host:: single:: trace:: { encode_to_bytes, TracingKeyValueStore } ;
66use alloy_primitives:: B256 ;
77use anyhow:: Result ;
8+ use kona_client:: fpvm_evm:: FpvmOpEvmFactory ;
89use kona_genesis:: RollupConfig ;
910use kona_host:: single:: { SingleChainHintHandler , SingleChainHost } ;
1011use kona_host:: { MemoryKeyValueStore , OnlineHostBackend , PreimageServer , SplitKeyValueStore } ;
@@ -13,7 +14,6 @@ use kona_preimage::{
1314} ;
1415use kona_proof:: HintType ;
1516use std:: sync:: Arc ;
16- use kona_client:: fpvm_evm:: FpvmOpEvmFactory ;
1717use tokio:: sync:: RwLock ;
1818use tokio:: task;
1919
@@ -83,7 +83,10 @@ impl DerivationRequest {
8383 let client_task = task:: spawn ( Self :: run_client_native (
8484 HintWriter :: new ( hint. client . clone ( ) ) ,
8585 OracleReader :: new ( preimage. client . clone ( ) ) ,
86- FpvmOpEvmFactory :: new ( HintWriter :: new ( hint. client ) , OracleReader :: new ( preimage. client ) ) ,
86+ FpvmOpEvmFactory :: new (
87+ HintWriter :: new ( hint. client ) ,
88+ OracleReader :: new ( preimage. client ) ,
89+ ) ,
8790 ) ) ;
8891
8992 let ( _, client_result) = tokio:: try_join!( server_task, client_task) ?;
0 commit comments