@@ -22,7 +22,8 @@ use super::{
2222} ;
2323use crate :: {
2424 config:: {
25- DIRK_CA_CERT_ENV , DIRK_CERT_ENV , DIRK_DIR_SECRETS_ENV , DIRK_KEY_ENV , SIGNER_IMAGE_DEFAULT ,
25+ COMMIT_BOOST_IMAGE_DEFAULT , DIRK_CA_CERT_ENV , DIRK_CERT_ENV , DIRK_DIR_SECRETS_ENV ,
26+ DIRK_KEY_ENV ,
2627 } ,
2728 signer:: { ProxyStore , SignerLoader } ,
2829 types:: { Chain , ModuleId } ,
@@ -164,7 +165,7 @@ impl SignerConfig {
164165}
165166
166167fn default_signer_image ( ) -> String {
167- SIGNER_IMAGE_DEFAULT . to_string ( )
168+ COMMIT_BOOST_IMAGE_DEFAULT . to_string ( )
168169}
169170
170171fn default_tls_mode ( ) -> TlsMode {
@@ -424,7 +425,10 @@ mod tests {
424425 use alloy:: primitives:: { Uint , b256} ;
425426
426427 use super :: * ;
427- use crate :: config:: { LogsSettings , ModuleKind , PbsConfig , StaticModuleConfig , StaticPbsConfig } ;
428+ use crate :: config:: {
429+ COMMIT_BOOST_IMAGE_DEFAULT , LogsSettings , ModuleKind , PbsConfig , StaticModuleConfig ,
430+ StaticPbsConfig ,
431+ } ;
428432
429433 // Wrapper needed because TOML requires a top-level struct (can't serialize
430434 // a bare enum).
@@ -437,7 +441,7 @@ mod tests {
437441 SignerConfig {
438442 host : Ipv4Addr :: LOCALHOST ,
439443 port : 20000 ,
440- docker_image : SIGNER_IMAGE_DEFAULT . to_string ( ) ,
444+ docker_image : COMMIT_BOOST_IMAGE_DEFAULT . to_string ( ) ,
441445 jwt_auth_fail_limit : 3 ,
442446 jwt_auth_fail_timeout_seconds : 300 ,
443447 tls_mode,
@@ -851,7 +855,7 @@ mod tests {
851855 cfg. signer = Some ( SignerConfig {
852856 host : Ipv4Addr :: new ( 127 , 0 , 0 , 1 ) ,
853857 port : 20000 ,
854- docker_image : SIGNER_IMAGE_DEFAULT . to_string ( ) ,
858+ docker_image : COMMIT_BOOST_IMAGE_DEFAULT . to_string ( ) ,
855859 jwt_auth_fail_limit : 3 ,
856860 jwt_auth_fail_timeout_seconds : 300 ,
857861 tls_mode : TlsMode :: Insecure ,
0 commit comments