Skip to content

Commit 6606ba7

Browse files
authored
Merge pull request #123 from nymtech/feature/persistence-typo-fix
all: fixing mis-spelling
2 parents 88eef54 + e600dc7 commit 6606ba7

File tree

15 files changed

+9
-9
lines changed

15 files changed

+9
-9
lines changed

mixnode/src/commands/init.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use crate::commands::override_config;
2-
use crate::config::persistance::pathfinder::MixNodePathfinder;
2+
use crate::config::persistence::pathfinder::MixNodePathfinder;
33
use clap::{App, Arg, ArgMatches};
44
use config::NymConfig;
55
use crypto::encryption;

mixnode/src/config/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use std::path::PathBuf;
77
use std::str::FromStr;
88
use std::time;
99

10-
pub mod persistance;
10+
pub mod persistence;
1111
mod template;
1212

1313
// 'MIXNODE'
File renamed without changes.

mixnode/src/node/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use crate::config::persistance::pathfinder::MixNodePathfinder;
1+
use crate::config::persistence::pathfinder::MixNodePathfinder;
22
use crate::config::Config;
33
use crate::node::packet_processing::PacketProcessor;
44
use crypto::encryption;

nym-client/src/client/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use crate::client::mix_traffic::MixTrafficController;
22
use crate::client::received_buffer::ReceivedMessagesBuffer;
33
use crate::client::topology_control::TopologyInnerRef;
4-
use crate::config::persistance::pathfinder::ClientPathfinder;
4+
use crate::config::persistence::pathfinder::ClientPathfinder;
55
use crate::config::{Config, SocketType};
66
use crate::sockets::tcp;
77
use crate::sockets::ws;

nym-client/src/commands/init.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use crate::built_info;
22
use crate::commands::override_config;
3-
use crate::config::persistance::pathfinder::ClientPathfinder;
3+
use crate::config::persistence::pathfinder::ClientPathfinder;
44
use clap::{App, Arg, ArgMatches};
55
use config::NymConfig;
66
use crypto::identity::MixIdentityKeyPair;

nym-client/src/config/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use serde::{Deserialize, Deserializer, Serialize};
44
use std::path::PathBuf;
55
use std::time;
66

7-
pub mod persistance;
7+
pub mod persistence;
88
mod template;
99

1010
// 'CLIENT'

sfw-provider/src/commands/init.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use crate::commands::override_config;
2-
use crate::config::persistance::pathfinder::ProviderPathfinder;
2+
use crate::config::persistence::pathfinder::ProviderPathfinder;
33
use clap::{App, Arg, ArgMatches};
44
use config::NymConfig;
55
use crypto::encryption;

sfw-provider/src/config/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use std::path::PathBuf;
77
use std::str::FromStr;
88
use std::time;
99

10-
pub mod persistance;
10+
pub mod persistence;
1111
mod template;
1212

1313
// 'PROVIDER'

sfw-provider/src/provider/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use crate::config::persistance::pathfinder::ProviderPathfinder;
1+
use crate::config::persistence::pathfinder::ProviderPathfinder;
22
use crate::config::Config;
33
use crate::provider::client_handling::{ClientProcessingData, ClientRequestProcessor};
44
use crate::provider::mix_handling::{MixPacketProcessor, MixProcessingData};

0 commit comments

Comments
 (0)