Removing network=disable from config files (#4715)

This commit is contained in:
Tomasz Drwięga 2017-03-02 12:23:54 +01:00 committed by Arkadiy Paronyan
parent d436f62eb8
commit 36468f3fc7
3 changed files with 0 additions and 4 deletions

View File

@ -27,7 +27,6 @@ interface = "127.0.0.1"
path = "$HOME/.parity/signer"
[network]
disable = false
port = 30303
min_peers = 25
max_peers = 50

View File

@ -12,7 +12,6 @@ password = ["passwdfile path"]
disable = true
[network]
disable = false
warp = false
discovery = true
nat = "any"

View File

@ -388,7 +388,6 @@ struct Ui {
#[derive(Default, Debug, PartialEq, RustcDecodable)]
struct Network {
disable: Option<bool>,
warp: Option<bool>,
port: Option<u16>,
min_peers: Option<u16>,
@ -838,7 +837,6 @@ mod tests {
path: None,
}),
network: Some(Network {
disable: Some(false),
warp: Some(false),
port: None,
min_peers: Some(10),