Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,11 @@ targets.json
.idea/
logs
.vscode/

# Nix
.direnv/
.devenv/
devenv.*
devenv.lock
.devenv.flake.nix
.envrc
3 changes: 2 additions & 1 deletion tests/tests/pbs_cfg_file_update.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ async fn test_cfg_file_update() -> Result<()> {
* or anything close to it */
extra_validation_enabled: false,
rpc_url: None,
ssv_api_url: Url::parse("http://example.com").unwrap(),
ssv_node_api_url: Url::parse("http://example.com").unwrap(),
ssv_public_api_url: Url::parse("http://example.com").unwrap(),
http_timeout_seconds: 10,
register_validator_retry_limit: 3,
validator_registration_batch_size: None,
Expand Down
4 changes: 2 additions & 2 deletions tests/tests/pbs_mux.rs
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ async fn test_ssv_multi_with_node() -> Result<()> {
config.registry_muxes = Some(registry_muxes);

// Run PBS service
let state = PbsState::new(config);
let state = PbsState::new(config, PathBuf::new());
let pbs_server = tokio::spawn(PbsService::run::<(), DefaultBuilderApi>(state));
info!("Started PBS server with pubkey {pubkey}");

Expand Down Expand Up @@ -441,7 +441,7 @@ async fn test_ssv_multi_with_public() -> Result<()> {
config.registry_muxes = Some(registry_muxes);

// Run PBS service
let state = PbsState::new(config);
let state = PbsState::new(config, PathBuf::new());
let pbs_server = tokio::spawn(PbsService::run::<(), DefaultBuilderApi>(state));
info!("Started PBS server with pubkey {pubkey}");

Expand Down