File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 1- use std:: { sync:: Arc , time:: Duration , u64} ;
1+ use std:: {
2+ net:: { Ipv4Addr , SocketAddr } ,
3+ sync:: Arc ,
4+ time:: Duration ,
5+ u64,
6+ } ;
27
38use alloy:: primitives:: U256 ;
49use cb_common:: {
@@ -19,6 +24,7 @@ use tracing::info;
1924
2025fn get_pbs_static_config ( port : u16 ) -> PbsConfig {
2126 PbsConfig {
27+ host : Ipv4Addr :: UNSPECIFIED ,
2228 port,
2329 wait_all_registrations : true ,
2430 relay_check : true ,
@@ -35,6 +41,7 @@ fn get_pbs_static_config(port: u16) -> PbsConfig {
3541fn to_pbs_config ( chain : Chain , pbs_config : PbsConfig , relays : Vec < RelayClient > ) -> PbsModuleConfig {
3642 PbsModuleConfig {
3743 chain,
44+ endpoint : SocketAddr :: new ( pbs_config. host . into ( ) , pbs_config. port ) ,
3845 pbs_config : Arc :: new ( pbs_config) ,
3946 signer_client : None ,
4047 event_publisher : None ,
You can’t perform that action at this time.
0 commit comments