aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2018-07-30 00:25:25 -0700
committerPieter Wuille <pieter.wuille@gmail.com>2018-07-30 18:01:20 -0700
commit247d5740d29752c35861136a2fc561831c7e9832 (patch)
treed44aaba21af59601a568e103575e87eb27a3649e /src/interfaces
parent04ce0d88ca146962311743812a18819ae55fc9ae (diff)
downloadbitcoin-247d5740d29752c35861136a2fc561831c7e9832.tar.xz
Ignore unknown config file options for now
Diffstat (limited to 'src/interfaces')
-rw-r--r--src/interfaces/node.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/node.cpp b/src/interfaces/node.cpp
index db371d104e..106dd38f60 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); }