File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
crates/rpc/rpc-eth-api/src/helpers Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 11//! Loads chain configuration.
22
3- use alloy_consensus:: { BlockHeader , Header } ;
3+ use alloy_consensus:: BlockHeader ;
44use alloy_eips:: {
55 eip7840:: BlobParams ,
66 eip7910:: { EthConfig , EthForkConfig , SystemContract } ,
@@ -155,9 +155,9 @@ where
155155impl < Provider , Evm > EthConfigApiServer for EthConfigHandler < Provider , Evm >
156156where
157157 Provider : ChainSpecProvider < ChainSpec : Hardforks + EthereumHardforks >
158- + BlockReaderIdExt < Header = Header >
158+ + BlockReaderIdExt < Header : HeaderMut >
159159 + ' static ,
160- Evm : ConfigureEvm < Primitives : NodePrimitives < BlockHeader = Header > > + ' static ,
160+ Evm : ConfigureEvm < Primitives : NodePrimitives < BlockHeader = Provider :: Header > > + ' static ,
161161{
162162 fn config ( & self ) -> RpcResult < EthConfig > {
163163 Ok ( self . config ( ) . map_err ( EthApiError :: from) ?)
You can’t perform that action at this time.
0 commit comments