File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,3 +16,11 @@ targets.json
1616.idea /
1717logs
1818.vscode /
19+
20+ # Nix
21+ .direnv /
22+ .devenv /
23+ devenv. *
24+ devenv.lock
25+ .devenv.flake.nix
26+ .envrc
Original file line number Diff line number Diff line change @@ -59,7 +59,8 @@ async fn test_cfg_file_update() -> Result<()> {
5959 * or anything close to it */
6060 extra_validation_enabled : false ,
6161 rpc_url : None ,
62- ssv_api_url : Url :: parse ( "http://example.com" ) . unwrap ( ) ,
62+ ssv_node_api_url : Url :: parse ( "http://example.com" ) . unwrap ( ) ,
63+ ssv_public_api_url : Url :: parse ( "http://example.com" ) . unwrap ( ) ,
6364 http_timeout_seconds : 10 ,
6465 register_validator_retry_limit : 3 ,
6566 validator_registration_batch_size : None ,
Original file line number Diff line number Diff line change @@ -345,7 +345,7 @@ async fn test_ssv_multi_with_node() -> Result<()> {
345345 config. registry_muxes = Some ( registry_muxes) ;
346346
347347 // Run PBS service
348- let state = PbsState :: new ( config) ;
348+ let state = PbsState :: new ( config, PathBuf :: new ( ) ) ;
349349 let pbs_server = tokio:: spawn ( PbsService :: run :: < ( ) , DefaultBuilderApi > ( state) ) ;
350350 info ! ( "Started PBS server with pubkey {pubkey}" ) ;
351351
@@ -441,7 +441,7 @@ async fn test_ssv_multi_with_public() -> Result<()> {
441441 config. registry_muxes = Some ( registry_muxes) ;
442442
443443 // Run PBS service
444- let state = PbsState :: new ( config) ;
444+ let state = PbsState :: new ( config, PathBuf :: new ( ) ) ;
445445 let pbs_server = tokio:: spawn ( PbsService :: run :: < ( ) , DefaultBuilderApi > ( state) ) ;
446446 info ! ( "Started PBS server with pubkey {pubkey}" ) ;
447447
You can’t perform that action at this time.
0 commit comments