File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
beacon_node/lighthouse_network/src/rpc Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ use futures::prelude::{AsyncRead, AsyncWrite};
55use futures:: { FutureExt , StreamExt } ;
66use libp2p:: core:: { InboundUpgrade , UpgradeInfo } ;
77use ssz:: Encode ;
8+ use tracing:: debug;
89use ssz_types:: VariableList ;
910use std:: io;
1011use std:: marker:: PhantomData ;
@@ -416,11 +417,15 @@ impl SupportedProtocol {
416417 ] ) ;
417418 }
418419 if fork_context. spec . is_zkvm_enabled ( ) {
420+ debug ! ( "[Ethproofs] Adding ExecutionProofsByRootV1 to supported protocols" ) ;
419421 supported. push ( ProtocolId :: new (
420422 SupportedProtocol :: ExecutionProofsByRootV1 ,
421423 Encoding :: SSZSnappy ,
422424 ) ) ;
425+ } else {
426+ debug ! ( "[Ethproofs] NOT adding ExecutionProofsByRootV1 - zkvm_enabled = false" ) ;
423427 }
428+ debug ! ( "[Ethproofs] Total supported protocols: {}" , supported. len( ) ) ;
424429 supported
425430 }
426431}
You can’t perform that action at this time.
0 commit comments