Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Compantion PR for 'Make network_config_path an Option' (#5661) #1005

Closed
wants to merge 2 commits into from
Closed
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
4 changes: 2 additions & 2 deletions network/test/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ pub trait TestNetFactory: Sized {
"test-node",
"test-client",
Default::default(),
&std::env::current_dir().expect("current directory must exist"),
None,
);
network_config.listen_addresses = vec![listen_addr.clone()];
network_config.transport = TransportConfig::MemoryOnly;
Expand Down Expand Up @@ -649,7 +649,7 @@ pub trait TestNetFactory: Sized {
"test-node",
"test-client",
Default::default(),
&std::env::current_dir().expect("current directory must exist"),
None,
);
network_config.listen_addresses = vec![listen_addr.clone()];
network_config.transport = TransportConfig::MemoryOnly;
Expand Down