diff options
| author | Pieter Wuille <[email protected]> | 2018-07-30 00:25:25 -0700 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2018-07-30 18:01:20 -0700 |
| commit | 247d5740d29752c35861136a2fc561831c7e9832 (patch) | |
| tree | d44aaba21af59601a568e103575e87eb27a3649e /src/interfaces/node.cpp | |
| parent | Report when unknown config file options are ignored (diff) | |
| download | discoin-247d5740d29752c35861136a2fc561831c7e9832.tar.xz discoin-247d5740d29752c35861136a2fc561831c7e9832.zip | |
Ignore unknown config file options for now
Diffstat (limited to 'src/interfaces/node.cpp')
| -rw-r--r-- | src/interfaces/node.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/node.cpp b/src/interfaces/node.cpp index db371d104..106dd38f6 100644 --- a/src/interfaces/node.cpp +++ b/src/interfaces/node.cpp @@ -53,7 +53,7 @@ class NodeImpl : public Node { return gArgs.ParseParameters(argc, argv, error); } - bool readConfigFiles(std::string& error) override { return gArgs.ReadConfigFiles(error); } + bool readConfigFiles(std::string& error) override { return gArgs.ReadConfigFiles(error, true); } bool softSetArg(const std::string& arg, const std::string& value) override { return gArgs.SoftSetArg(arg, value); } bool softSetBoolArg(const std::string& arg, bool value) override { return gArgs.SoftSetBoolArg(arg, value); } void selectParams(const std::string& network) override { SelectParams(network); } |