mirror of
https://github.com/everoddandeven/monerod-gui.git
synced 2025-01-03 09:29:36 +00:00
FIx enable-dns-blocklist daemon settings
This commit is contained in:
parent
17a812a589
commit
b57dfd1639
1 changed files with 1 additions and 1 deletions
|
@ -256,7 +256,7 @@ export class DaemonSettings {
|
||||||
if (this.banList != '') options.push(`--ban-list`, this.banList);
|
if (this.banList != '') options.push(`--ban-list`, this.banList);
|
||||||
if (this.hideMyPort) options.push(`--hide-my-port`);
|
if (this.hideMyPort) options.push(`--hide-my-port`);
|
||||||
if (this.noSync) options.push(`--no-sync`);
|
if (this.noSync) options.push(`--no-sync`);
|
||||||
if (this.enableDnsBlocklist) options.push(`--enable-dns-block-list`);
|
if (this.enableDnsBlocklist) options.push(`--enable-dns-blocklist`);
|
||||||
if (this.noIgd) options.push(`--no-igd`);
|
if (this.noIgd) options.push(`--no-igd`);
|
||||||
if (this.outPeers >= 0) options.push(`--out-peers`, `${this.outPeers}`);
|
if (this.outPeers >= 0) options.push(`--out-peers`, `${this.outPeers}`);
|
||||||
if (this.inPeers >= 0) options.push(`--in-peers`, `${this.inPeers}`);
|
if (this.inPeers >= 0) options.push(`--in-peers`, `${this.inPeers}`);
|
||||||
|
|
Loading…
Reference in a new issue